:root {
    --primary-bg-color: #0F0F2D; /* Deep Indigo */
    --secondary-bg-color: #1A1A3A; /* Slightly lighter indigo */
    --accent-blue: #00BFFF; /* Electric Blue */
    --accent-green: #00FF7F; /* Vibrant Green */
    --text-light: #E0E0E0;
    --text-white: #FFFFFF;
    --text-muted: #B0B0B0;
    --card-bg: rgba(26, 26, 58, 0.8); /* Slightly transparent secondary bg */
    --shadow-color: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg-color);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Ensure standard text color is visible */
p, li, a, span, div {
    color: var(--text-light); /* Default text color */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 700;
}
.h4, h4 {
    font-size: 18px;
}
.fixed-top {
    z-index: 1030;
}

.navbar-brand {
    color: var(--text-white) !important;
}

.nav-link {
    color: var(--text-light) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-blue) !important;
}

/* Custom Buttons */
.custom-btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--text-white);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-btn-primary:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Sections General Styling */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(15, 15, 45, 0.7), rgba(15, 15, 45, 0.7)), url('graphics/graphics/football-strike-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Adjust for fixed header */
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px var(--shadow-color);
}

.hero-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.25rem;
}

/* About Section */
#about {
    background-color: var(--secondary-bg-color);
}

#about img {
    border: 3px solid var(--accent-blue);
    box-shadow: 0 10px 20px var(--shadow-color);
}

/* Features Section */
.feature-section {
    background-image: linear-gradient(rgba(15, 15, 45, 0.85), rgba(15, 15, 45, 0.85)), url('graphics/graphics/football-strike-features-bg.jpg');
    background-size: cover;
    background-position: center;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-blue);
    box-shadow: 0 8px 16px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--shadow-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-green);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--primary-bg-color);
}

.gallery-section img {
    border: 2px solid var(--accent-green);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.03);
}

/* Reviews Section */
.review-section {
    background-image: linear-gradient(rgba(26, 26, 58, 0.85), rgba(26, 26, 58, 0.85)), url('graphics/graphics/football-strike-reviews-bg.jpg');
    background-size: cover;
    background-position: center;
}

.review-card {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-blue);
    box-shadow: 0 8px 16px var(--shadow-color);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--accent-green);
}

.text-warning {
    color: #FFC107 !important; /* Standard Bootstrap warning color for stars */
}

/* Statistics Section */
.stats-section {
    background-color: var(--secondary-bg-color);
}

.stat-item {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-green);
    box-shadow: 0 8px 16px var(--shadow-color);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--accent-blue);
}

.stat-item h3 {
    color: var(--text-white);
}

.stat-item p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    background-image: linear-gradient(rgba(15, 15, 45, 0.85), rgba(15, 15, 45, 0.85)), url('graphics/graphics/football-strike-contact-bg.jpg');
    background-size: cover;
    background-position: center;
}

.contact-info {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-blue);
    box-shadow: 0 8px 16px var(--shadow-color);
}

.contact-icon {
    color: var(--accent-green);
    font-size: 1.5rem;
    vertical-align: middle;
}

.contact-info a {
    color: var(--accent-blue) !important;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-green) !important;
}

/* Footer */
footer {
    background-color: var(--primary-bg-color) !important;
    border-top: 1px solid var(--secondary-bg-color);
}

footer .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .custom-btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.5rem !important;
    }

    .nav-link {
        padding: 0.5rem 0.8rem;
    }

    .navbar-collapse {
        justify-content: center;
    }

    .feature-icon, .stat-icon {
        font-size: 2.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }
}
/* Parent container for specific content styling */
.complianceVaultNode {
    padding-top: 80px; /* Top padding for the content area */
    padding-bottom: 80px; /* Bottom padding for the content area */
    padding-left: 20px; /* Left padding for the content area */
    padding-right: 20px; /* Right padding for the content area */
    /* For better control on large screens, you might want to add a max-width and auto margins: */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles within .complianceVaultNode */
.complianceVaultNode h1 {
    font-size: 2.5rem; /* Prominent, but not as large as hero H1 */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 0; /* Remove default top margin for the first element in a section */
    margin-bottom: 1rem; /* Space below the heading */
    color: var(--text-white); /* Consistent heading color from theme */
}

/* Heading 2 styles within .complianceVaultNode */
.complianceVaultNode h2 {
    font-size: 2rem; /* Smaller than H1 */
    line-height: 1.25;
    margin-top: 1.5rem; /* Space above the heading, if not the very first element */
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

/* Heading 3 styles within .complianceVaultNode */
.complianceVaultNode h3 {
    font-size: 1.75rem; /* Smaller than H2 */
    line-height: 1.3;
    margin-top: 1.25rem;
    margin-bottom: 0.7rem;
    color: var(--text-white);
}

/* Heading 4 styles within .complianceVaultNode */
.complianceVaultNode h4 {
    font-size: 1.5rem; /* Smaller than H3 */
    line-height: 1.35;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: var(--text-white);
}

/* Heading 5 styles within .complianceVaultNode */
.complianceVaultNode h5 {
    font-size: 1.25rem; /* Smallest heading */
    line-height: 1.4;
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

/* Paragraph styles within .complianceVaultNode */
.complianceVaultNode p {
    font-size: 1rem; /* Base paragraph font size */
    line-height: 1.7; /* Good readability for body text */
    margin-bottom: 1rem; /* Space below each paragraph */
    color: var(--text-light); /* Consistent body text color from theme */
}

/* Unordered list styles within .complianceVaultNode */
.complianceVaultNode ul {
    list-style: disc; /* Standard bullet points */
    padding-left: 25px; /* Indent for bullet points */
    margin-bottom: 1rem; /* Space below the list */
    color: var(--text-light); /* Ensure list items inherit base text color */
}

/* List item styles within .complianceVaultNode */
.complianceVaultNode li {
    font-size: 1rem; /* Consistent with paragraph text */
    line-height: 1.6; /* Good readability for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    color: var(--text-light); /* Consistent list item color */
}
footer .text-white-50 {
    color: #FFFFFF !important;
}
footer .text-white-50 {
    color: #FFFFFF !important;
}
.font-new .mb-1 {
    font-size: 18px;
}
header .d-flex {
    flex-wrap: wrap;
    justify-content: center!important;
    align-items: center!important;

}
nav .nav{
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
}
.text-muted {
    color: #FFFFFF !important;
}