/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0A0A0A; /* Very dark grey/black */
    color: #E0E0E0; /* Light grey for main text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF; /* White for headings */
}

.text-neon-green {
    color: #39FF14 !important; /* Bright neon green */
}

.bg-neon-green {
    background-color: #39FF14 !important;
}

.bg-neon-green-light {
    background-color: rgba(57, 255, 20, 0.2) !important; /* Lighter neon green for subtle accents */
}

.bg-dark {
    background-color: #0A0A0A !important;
}

.bg-dark-alt {
    background-color: #1A1A1A !important; /* Slightly lighter dark for contrast */
}

.bg-block-dark {
    background-color: #121212 !important;
}

.bg-block-dark-light {
    background-color: #222222 !important;
}

.bg-dark-transparent {
    background-color: rgba(10, 10, 10, 0.9) !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

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

.max-w-800 {
    max-width: 800px;
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none !important; /* Remove underline */
    padding: 0.75rem 1.5rem;
}

.btn-neon-green {
    background-color: #39FF14;
    color: #0A0A0A;
    border: 2px solid #39FF14;
}

.btn-neon-green:hover {
    background-color: #22AA0F;
    color: #0A0A0A;
    border-color: #22AA0F;
}

.btn-neon-green-outline {
    background-color: transparent;
    color: #39FF14;
    border: 2px solid #39FF14;
}

.btn-neon-green-outline:hover {
    background-color: #39FF14;
    color: #0A0A0A;
    border-color: #39FF14;
}

.btn-dark-outline {
    background-color: transparent;
    color: #0A0A0A;
    border: 2px solid #0A0A0A;
}

.btn-dark-outline:hover {
    background-color: #0A0A0A;
    color: #39FF14;
    border-color: #0A0A0A;
}

.btn-secondary-outline {
    background-color: transparent;
    color: #E0E0E0;
    border: 2px solid #E0E0E0;
}

.btn-secondary-outline:hover {
    background-color: #E0E0E0;
    color: #0A0A0A;
    border-color: #E0E0E0;
}

/* Form Controls */
.form-control-dark, .form-select.form-control-dark {
    background-color: #1A1A1A;
    border: 1px solid #333;
    color: #E0E0E0;
}

.form-control-dark::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.form-control-dark:focus, .form-select.form-control-dark:focus {
    background-color: #1A1A1A;
    color: #E0E0E0;
    border-color: #39FF14;
    box-shadow: 0 0 0 0.25rem rgba(57, 255, 20, 0.25);
}

.form-control-dark:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    border-top: 2px solid #39FF14;
}

/* Header & Navigation */
.header {
    z-index: 1030;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
}

.logo {
    height: 40px;
    width: auto;
}

.nav-link {
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link:hover {
    color: #39FF14 !important;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px; /* Adjust for fixed header */
    padding-bottom: 100px;
}

.hero-background-img {
    filter: brightness(0.4);
}

.hero-background-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.3) 100%);
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.subheading-block {
    border-left: 5px solid #39FF14;
    padding-left: 1.5rem !important;
}

/* About Us - Faces & Voices */
.team-card {
    border: 1px solid #333;
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid #39FF14;
}

blockquote {
    font-style: italic;
    color: #E0E0E0;
    border-left: 3px solid #39FF14;
    padding-left: 1rem;
}

/* Our Services - Stepped Process */
.service-step {
    padding-top: 30px;
    padding-bottom: 30px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -25px; /* Position between columns */
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background-color: #39FF14;
}

.step-arrow::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #39FF14;
}

@media (max-width: 767.98px) {
    .service-step {
        padding-bottom: 0;
        padding-top: 50px;
    }
    .service-step:not(:last-child) {
        margin-bottom: 50px;
    }
    .step-arrow {
        width: 2px;
        height: 50px;
        top: auto;
        bottom: -25px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .step-arrow::after {
        top: auto;
        bottom: 0;
        left: -5px;
        right: auto;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid #39FF14;
    }
    .hero-section h1{
        font-size: 2.02rem;
    }
}

/* Key Features */
.feature-list li i {
    line-height: 1;
}

/* Project Gallery */
.gallery-card {
    height: 300px; /* Fixed height for consistent grid */
    border: 1px solid #333;
}

.gallery-card img {
    transition: none; /* No animation */
}

.gallery-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    display: none; /* Hidden by default */
    transition: none; /* No animation */
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    display: flex; /* Instant show */
}

/* Our Impact Statistics */
.impact-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.impact-background-img {
    filter: brightness(0.3);
}

.impact-background-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: 0;
}

/* FAQ Wizard */
.faq-wizard-container {
    max-width: 700px;
    border: 1px solid #333;
}

.accordion-button {
    border-radius: 0.3rem !important;
}

.accordion-button:not(.collapsed) {
    color: #39FF14 !important;
    background-color: #222222 !important;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #39FF14;
    box-shadow: 0 0 0 0.25rem rgba(57, 255, 20, 0.25);
}

.accordion-item {
    border-radius: 0.3rem;
}

/* Booking Form (Interactive Map Adaptation) */
.booking-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.booking-background-img {
    filter: brightness(0.3);
}

.booking-background-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: 0;
}

.booking-form-card {
    border: 1px solid #333;
}

/* Testimonials - Before & After */
.testimonial-card {
    border: 1px solid #333;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #39FF14;
}

.before-after-block {
    border: 1px solid #333;
}

/* Sticky Call to Action */
.sticky-cta {
    z-index: 1020;
    border-top: 2px solid #0A0A0A;
}

/* Minimal Footer */
.footer-logo {
    height: 35px;
    width: auto;
}

.footer ul li a:hover {
    color: #39FF14 !important;
}

/* Utility classes for responsive grid alignment */
@media (min-width: 992px) {
    .row.g-4 > div:nth-child(3n+1) { clear: both; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .row.g-4 > div:nth-child(2n+1) { clear: both; }
}

/* Ensure card heights are equal in rows */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.g-4 > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.row.g-4 > [class*="col-"] > div {
    flex-grow: 1;
}
/* New styles for .complianceCoreSlot and its children */

.complianceCoreSlot {
    /* Padding for the main content area, providing space from the edges */
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* Maximum width to keep content readable and centered on large screens */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.complianceCoreSlot h1 {
    /* Heading 1 styles: moderately sized for general content */
    font-size: 2.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #FFFFFF; /* Ensure white color for headings */
}

.complianceCoreSlot h2 {
    /* Heading 2 styles */
    font-size: 1.8rem;
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    line-height: 1.3;
    color: #FFFFFF; /* Ensure white color for headings */
}

.complianceCoreSlot h3 {
    /* Heading 3 styles */
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: #FFFFFF; /* Ensure white color for headings */
}

.complianceCoreSlot h4 {
    /* Heading 4 styles */
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
    color: #FFFFFF; /* Ensure white color for headings */
}

.complianceCoreSlot h5 {
    /* Heading 5 styles */
    font-size: 1rem; /* Base font size, often used for sub-titles or small headers */
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #FFFFFF; /* Ensure white color for headings */
}

.complianceCoreSlot p {
    /* Paragraph styles for standard text blocks */
    font-size: 1rem; /* Base font size for readability */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    color: #E0E0E0; /* Light grey for paragraph text */
}

.complianceCoreSlot ul {
    /* Unordered list styles */
    list-style: disc; /* Default disc bullet points */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Spacing after the entire list */
    color: #E0E0E0; /* Light grey for list text */
}

.complianceCoreSlot ol {
    /* Ordered list styles */
    list-style: decimal; /* Default numbered list */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Spacing after the entire list */
    color: #E0E0E0; /* Light grey for list text */
}

.complianceCoreSlot ul li,
.complianceCoreSlot ol li {
    /* Styles for individual list items in both unordered and ordered lists */
    font-size: 1rem; /* Base font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    color: #E0E0E0; /* Light grey for list item text */
}
.subheading-block .text-dark{
       
    color: rgb(215 224 233) !important;
}
.footer{
    padding-bottom: 150px !important;
}
.list-unstyled{
    flex-wrap: wrap;
}
.lead{
        font-size: 1.05rem;
}