/* =======================================
   LOGO ADJUSTMENTS
======================================= */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--smooth-transition);
}

.logo-text {
    display: flex;
    align-items: center;
    /* Increased font size for JJvaSolution text */
    font-size: 28px; 
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-icon {
    /* Fixed size so it doesn't overpower the text */
    width: 45px; 
    height: 45px;
    object-fit: contain;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

/* THE CLICK EFFECT you requested */
.logo-link:active {
    transform: scale(0.96);
    filter: drop-shadow(0 0 5px rgba(255, 199, 44, 0.5));
}

.logo-link:active .logo-icon {
    transform: rotate(-8deg);
}
/* Container for the logo link */
.logo-link {
    display: inline-block;
    transition: var(--smooth-transition);
    cursor: pointer;
    border-radius: 50px; /* Ensures the glow follows the shape */
}

/* 1. Subtle Hover Effect (Preparation) */
.logo-link:hover {
    transform: translateY(-1px);
}

/* 2. THE CLICK EFFECT (Scale down and Glow) */
.logo-link:active {
    transform: scale(0.95); /* Shrinks slightly when clicked */
    filter: drop-shadow(0 0 8px rgba(255, 199, 44, 0.6)); /* Subtle Golden Glow */
}

/* Optional: Add a slight rotation or bounce to the Icon specifically */
.logo-link:active .logo-icon {
    transform: rotate(-5deg);
    transition: transform 0.1s ease;
}

/* Ensure the text doesn't turn blue/purple as a link */
.logo-link {
    color: inherit;
    text-decoration: none;
}

/* Responsiveness for smaller screens */
@media (max-width: 600px) {
    .logo-text {
        font-size: 22px;
    }
    .logo-icon {
        width: 35px;
        height: 35px;
    }
}
/* Home Page Logo */
#home .logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    z-index: 2; /* Ensure above background */
}

/* Circular Logo */
#home .logo-text .site-logo {
    width: 100px;          /* Adjust size */
    height: 100px;         /* Keep it square for circle */
    object-fit: cover;     /* Crop if image is not square */
    border-radius: 50%;    /* Make it circular */
    border: 3px solid var(--accent-color); /* Optional: colored border */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Optional: shadow */
    transition: transform 0.3s ease;
}

#home .logo-text .logo-name {
    font-size: 36px;
    font-weight: 800;
    color: var(--white); /* White text */
    transition: transform 0.3s ease;
}

/* Hover effect */
#home .logo-text:hover .site-logo,
#home .logo-text:hover .logo-name {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    #home .logo-text {
        flex-direction: column;
        gap: 10px;
    }
    #home .logo-text .site-logo { width: 80px; height: 80px; }
    #home .logo-text .logo-name { font-size: 28px; }
}

@media (max-width: 480px) {
    #home .logo-text .site-logo { width: 60px; height: 60px; }
    #home .logo-text .logo-name { font-size: 22px; }
}

    /* =======================================
       1. GLOBAL RESET & VARIABLES
       ======================================= */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif;
    }

    :root {
        --bg-light: #F8F8FF;
        --bg-dark: #142540;
        --primary-color: #0A2A5E; /* Navy Blue */
        --accent-color: #FFC72C; /* Gold/Yellow */
        --card-light: #E8F0FF;
        --white: #ffffff;
        --text-dark: #222222;
        --text-grey: #666666; 
        --border-light: #E0E0E0;
        --smooth-transition: all 0.3s ease-out;
        /* Variable for the dark partner section background (based on 'Tebra Blue') */
        --partner-bg: #111A4F; 
    }

    body {
        background-color: var(--bg-light);
        color: var(--primary-color);
        overflow-x: hidden;
        scroll-behavior: smooth;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    
    /* General Section Header Styling */
    section > h4 { /* The sub-heading (e.g., "Our Services") */
        font-size: 1.2rem; font-weight: 600; color: var(--accent-color); 
        margin-bottom: 5px; text-transform: uppercase;
    }
    
    section > h2 { /* The main heading (e.g., "Commitment To Excellence") */
        font-size: 3rem; font-weight: 800; color: var(--primary-color); 
        margin-bottom: 20px;
    }

    /* =======================================
       2. KEYFRAMES & ANIMATION
       ======================================= */
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
    @keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

    .fade-in-on-scroll {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 1s ease 0.2s forwards; 
    }

   /* =======================================
   3. NAVIGATION & BUTTONS (HORIZONTAL ROW)
======================================= */
.navbar {
    display: flex;
    justify-content: space-between; /* Logo left, links + buttons right */
    align-items: center;
    padding: 20px 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Nav links in a row */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    position: relative;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--smooth-transition);
}

.nav-item:hover {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    width: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--smooth-transition);
    border-top: 3px solid var(--accent-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu li a:hover {
    background-color: var(--card-light);
    padding-left: 30px;
}

/* Buttons in the row */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--smooth-transition);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-solid {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(10,42,94,0.3);
    transition: var(--smooth-transition);
}

.btn-solid:hover {
    background-color: #1a4286;
    transform: translateY(-2px);
}

/* =======================================
   RESPONSIVE ADJUSTMENTS FOR NAVBAR ROW
======================================= */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 40px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 15px;
        display: none; /* hide links initially on mobile */
    }

    .nav-links.active {
        display: flex; /* show links when hamburger clicked */
    }

    .nav-buttons {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn-outline,
    .btn-solid {
        width: auto;
        padding: 10px 20px;
    }
}

    /* =======================================
       4. SECTIONS (HOME, ABOUT, FEATURES, SERVICES)
       ======================================= */
    section { padding: 100px 80px; min-height: 100vh; }

    /* --- HOME --- */
    #home {
        padding-top: 150px; display: flex; flex-direction: column; justify-content: center;
        align-items: center; text-align: center; position: relative;
        background: url('images/background.jpg') center/cover no-repeat;
    }

    #home::after {
        content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background-color: rgba(10, 42, 94, 0.7); 
        backdrop-filter: blur(8px);
        z-index: 0;
    }

    #home > * { position: relative; z-index: 1; }
    #home h1 { font-size: 4.5rem; font-weight: 800; color: var(--white); margin-bottom: 15px; opacity: 0; animation: fadeInUp 1s ease 0.3s forwards; }
    #home p { font-size: 1.6rem; font-weight: 500; color: var(--white); opacity: 0; animation: fadeInUp 1s ease 0.6s forwards; margin-bottom: 30px; }
    
    .hipaa-badge {
        display: flex; align-items: center; gap: 10px;
        padding: 10px 25px; border-radius: 50px;
        background-color: var(--white); border: 2px solid var(--accent-color);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        font-size: 1.1rem; font-weight: 700; color: var(--primary-color);
        opacity: 0; transform: translateY(10px);
        animation: fadeInUp 1s ease 0.9s forwards;
    }

    /* --- ABOUT --- */
    #about { display: flex; gap: 80px; align-items: flex-start; flex-wrap: wrap; }
    
    #about h4 { margin-top: 0; width: 100%; text-align: center; } 
    #about h2 { width: 100%; text-align: center; } 
    
    .about-image-container { flex: 1; min-width: 300px; opacity: 0; animation: slideInLeft 1s ease forwards; }
    .about-image-container img { width: 100%; border-radius: 12px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

    .about-content { flex: 1.2; min-width: 300px; opacity: 0; animation: slideInRight 1s ease forwards; padding-top: 50px; }
    .about-content h2 { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 25px; text-align: left; }
    .intro-text { font-size: 1.1rem; line-height: 1.7; color: var(--text-dark); margin-bottom: 40px; }

    .value-mission-block {
        background: var(--white); padding: 30px; border-radius: 15px;
        margin-bottom: 30px; box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border-left: 5px solid var(--accent-color);
    }
    .value-mission-block h3 { font-size: 1.3rem; font-weight: 700; color: var(--primary-color); margin-bottom: 10px; }

    /* --- FEATURES --- */
    #features { background-color: var(--bg-dark); color: var(--white); text-align: center; padding-top: 80px; }
    #features h4 { color: var(--accent-color); margin-bottom: 5px; }
    #features h2 { color: var(--white); margin-bottom: 60px; }
    
    .feature-grid {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 50px 30px; max-width: 1300px; margin: 0 auto;
    }
    .feature-item { padding: 20px; border-radius: 10px; opacity: 0; transition: var(--smooth-transition); }
    .feature-item:hover { background-color: #1a3355; transform: translateY(-5px); }
    .feature-item lord-icon { color: var(--accent-color); }
    .feature-item h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; color: var(--white); }
    .feature-item p { font-size: 1rem; color: #b0b0b0; line-height: 1.6; max-width: 300px; margin: 0 auto; }

    /* --- SERVICES (Glassmorphism Style) --- */
    #services { text-align: center; padding-top: 150px; } 
    #services > p { max-width: 800px; margin: 0 auto 70px; color: var(--text-grey); font-size: 1.1rem; line-height: 1.6; }
    
    .service-cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .service-card {
        padding: 40px 30px; border-radius: 20px;
        text-align: center; min-height: 450px;
        display: flex; flex-direction: column; justify-content: space-between;
        transition: var(--smooth-transition);
        /* Glass effect */
        background: rgba(232, 240, 255, 0.5);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.3);
        box-shadow: 0 5px 20px rgba(10,42,94,0.08);
    }

    .service-card:hover {
        background: var(--primary-color); 
        color: var(--white);
        transform: translateY(-8px); 
        box-shadow: 0 15px 40px rgba(10,42,94,0.4);
    }

    .card-icon { 
        font-size: 55px; margin-bottom: 25px; display: inline-block; 
        color: var(--primary-color); transition: var(--smooth-transition); 
    }
    .service-card:hover .card-icon { color: var(--accent-color); }

    .service-card h3 { 
        font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; 
        color: var(--primary-color); transition: var(--smooth-transition); 
    }
    .service-card:hover h3 { color: var(--white); }

    .card-description { 
        font-size: 1rem; line-height: 1.6; 
        color: var(--text-dark); transition: var(--smooth-transition); 
    }
    .service-card:hover .card-description { color: var(--white); }

    .btn-learn-more {
        border: 2px solid var(--primary-color); padding: 12px 30px; border-radius: 50px;
        font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: var(--smooth-transition);
        color: var(--primary-color); text-decoration: none; margin-top: 30px;
    }
    .service-card:hover .btn-learn-more {
        background-color: var(--white); color: var(--primary-color);
        border-color: var(--accent-color); box-shadow: 0 4px 15px rgba(255,199,44,0.3);
    }

    /* =======================================
       5. PARTNERS / INTEGRATION SECTION (NEW)
       ======================================= */
    #partners {
        background-color: var(--partner-bg); /* Deep Blue Background */
        padding: 80px 80px;
        text-align: center;
        min-height: auto;
    }
    
    #partners h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 60px;
    }

    .partner-logo-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px; /* Space between logos */
        max-width: 1400px;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    
    .partner-logo-item {
        max-width: 180px; 
        height: auto;
        opacity: 0.8;
        transition: opacity 0.3s ease-out;
        /* Filter to ensure dark/colored logos appear white on the dark blue background */
        filter: brightness(0) invert(1); 
    }
    
    .partner-logo-item:hover {
        opacity: 1;
    }

    .partner-logo-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* =======================================
       6. CTA / CONTACT BANNER (NEW)
       ======================================= */
    #contact-cta {
        background-color: var(--card-light); 
        padding: 100px 80px;
        min-height: auto;
    }
    
    .contact-card-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 50px;
        align-items: flex-start;
        background: var(--white);
        border-radius: 15px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        overflow: hidden;
    }

    /* --- Left Content Area --- */
    .contact-content-left {
        flex: 1.5;
        padding: 50px;
    }

    .contact-content-left h4 {
        color: var(--accent-color);
        margin-bottom: 5px;
    }
    
    .contact-content-left h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .contact-content-left p {
        font-size: 1.1rem;
        color: var(--text-grey);
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .detail-item {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .detail-icon {
        font-size: 1.5rem;
        color: var(--accent-color);
    }
    
    /* --- Right Form Area --- */
    .contact-form-right {
        flex: 1;
        background-color: var(--primary-color); 
        padding: 50px;
        color: var(--white);
        min-width: 350px;
    }

    .contact-form-right h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: var(--white);
    }

    .contact-form-right form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-right input,
    .contact-form-right select {
        padding: 15px;
        border-radius: 8px;
        border: none;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--text-dark);
    }

    .contact-form-right select {
        appearance: none;
        cursor: pointer;
    }

    .contact-form-right .btn-solid {
        background-color: var(--accent-color);
        color: var(--primary-color);
        margin-top: 10px;
        padding: 15px;
        font-weight: 700;
    }

    /* =======================================
       7. TESTIMONIALS SECTION (NEW)
       ======================================= */
    #testimonials {
        text-align: center;
        padding: 80px 60px; 
        background-color: var(--white); 
        overflow: hidden; 
        min-height: auto;
    }

    #testimonials h2 { 
        color: var(--primary-color);
        margin-bottom: 40px;
    }

    .testimonial-intro {
        max-width: 700px;
        margin: 0 auto 40px;
        color: var(--text-grey);
        font-size: 1rem;
    }

    /* --- Slider Container --- */
    .slider-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        padding: 10px 0;
    }

    /* --- Track --- */
    .testimonial-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    /* --- Testimonial Card Style --- */
    .testimonial-card {
        min-width: calc(33.333% - 20px); 
        flex-shrink: 0;
        background: var(--white);
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 10px;
        min-height: 230px;
        max-height: 230px;
        box-shadow: 0 6px 20px rgba(14, 13, 13, 0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        border-top: 3px solid var(--accent-color); /* Highlight with Accent Color */
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(10,42,94,0.1);
    }

    /* --- Stars --- */
    .stars {
        color: var(--accent-color);
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    /* --- Quote Text --- */
    .quote,
    .testimonial-card p {
        font-size: 0.95rem;
        color: var(--text-dark);
        margin: 0 auto;
        line-height: 1.4;
        flex-grow: 1;
        display: flex;
        align-items: center;
        /* Ensure text stays centered vertically */
        text-align: center; 
    }

    /* --- Name --- */
    .testimonial-card h4 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-top: 15px;
        color: var(--primary-color);
    }

    /* --- Dots --- */
    .slider-dots {
        text-align: center;
        margin-top: 15px;
    }

    .dot {
        height: 8px;
        width: 8px;
        margin: 0 4px;
        background-color: var(--border-light);
        border-radius: 50%;
        display: inline-block;
        transition: 0.3s ease;
        cursor: pointer;
    }

    .dot.active {
        background-color: var(--primary-color);
        width: 20px;
        border-radius: 5px;
    }


    /* =======================================
       8. RESPONSIVE ADJUSTMENTS
       ======================================= */
    @media (max-width: 1200px) {
        .feature-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
        .navbar { padding: 20px 40px; }
        section { padding: 80px 40px; }
        #home h1 { font-size: 3.5rem; }
        .nav-links { gap: 20px; }
        #partners { padding: 60px 40px; }
        .partner-logo-grid { gap: 30px; }
        .partner-logo-item { max-width: 150px; }
        
        /* CTA */
        .contact-card-container { flex-direction: column; gap: 0; }
        .contact-content-left { padding: 40px; }
        .contact-form-right { padding: 40px; min-width: 100%; }

        /* Testimonials */
        .testimonial-card { min-width: calc(50% - 20px); min-height: 210px; max-height: 210px; }
    }
    @media (max-width: 768px) {
        .navbar { flex-direction: column; align-items: flex-start; padding: 20px; }
        .nav-links { display: none; } 
        .btn-outline { display: none; } 
        
        #home h1 { font-size: 3rem; }
        #home p { font-size: 1.3rem; }
        
        #about { gap: 40px; }
        .about-content h2 { font-size: 2rem; }
        
        .feature-grid { grid-template-columns: repeat(2, 1fr); }
        
        #services h2 { font-size: 2.5rem; }
        .floating-buttons { bottom: 20px; right: 20px; }

        .partner-logo-grid { justify-content: space-around; }
        .partner-logo-item { max-width: 120px; }
    }
    @media (max-width: 650px) {
        /* Testimonials */
        .testimonial-card {
            min-width: calc(100% - 30px);
            margin: 0 15px;
            min-height: 200px;
            max-height: 200px;
        }

        #testimonials {
            padding: 40px 20px;
        }

        .contact-content-left h2 { font-size: 2rem; }
        .contact-form-right h3 { font-size: 1.5rem; }

        section { padding: 60px 20px; }
    }
/* ======================================= */
/* 1. HERO QUOTE SECTION WITH IMAGE AND OVERLAY */
/* ======================================= */

#hero-quote {
    /* Set the height and positioning for the content */
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Increased height for visual impact */
    position: relative;
    overflow: hidden;
    text-align: left; /* Aligns text left as seen in the image */
    
    /* Text color for readability over the dark image */
    color: var(--white, #ffffff); 
    
    /* --- FADEY BACKGROUND EFFECT --- */
    
    /* 1. The 'fadey' green-to-transparent overlay (adjust colors as needed) */
    background-image: linear-gradient(
        to right,
        rgba(0, 51, 51, 0.95) 0%, /* Dark Green/Teal, nearly opaque on the left */
        rgba(0, 51, 51, 0.4) 40%, /* Less opaque toward the center */
        transparent 100% /* Transparent on the right side where the face is clearest */
    ), 
    /* 2. The actual background image */
    url('images/hero-background.png'); /* UPDATE THIS PATH to your image */

    background-size: cover;
    background-position: center right; /* Focuses the image to the right */
    background-repeat: no-repeat;
}

/* Ensure content is positioned correctly on top of the background */
.hero-content {
    z-index: 10; /* Ensures content is above the background and gradient */
    width: 100%;
    max-width: 1200px; /* Constrains the content width */
    padding: 0 5%; 
    box-sizing: border-box;
}

/* Content alignment adjustments for the image layout */
#hero-quote h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 500px; /* Constrain headline width */
}

#hero-quote p {
    font-size: 18px;
    max-width: 450px; /* Constrain paragraph width */
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button (as seen in the image, it's dark and white text) */
.btn-get-started {
    background-color: var(--primary-color, #0A2A5E); /* Dark background */
    color: var(--white, #ffffff);
    /* ... rest of the button styles ... */
    border: 2px solid var(--white, #ffffff); /* Optional: A subtle white border */
    background-color: rgba(0, 0, 0, 0.4); /* Make it slightly transparent dark */
    padding: 15px 35px; /* Bigger button */
}

.btn-get-started:hover {
    background-color: var(--primary-color, #0A2A5E); /* Solid dark on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsiveness for Hero */
@media (max-width: 768px) {
    #hero-quote {
        /* Adjust gradient for smaller screens to ensure text is always readable */
        background-image: linear-gradient(
            to bottom,
            rgba(0, 51, 51, 0.9) 0%, 
            rgba(0, 51, 51, 0.7) 100%
        ), 
        url('images/hero-background.png');
        background-position:  center;
        text-align: center;
        min-height: 400px;
    }
    .hero-content {
        text-align: center;
    }
    #hero-quote h1, #hero-quote p {
        max-width: 100%;
    }
}

/* ======================================= */
/* 2. CONTACT FORM SECTION (Get A Custom Quote) */
/* ======================================= */
/* ======================================= */
/* 2. CONTACT FORM SECTION - GLASS MORPHISM & ANIMATIONS */
/* ======================================= */

#contact-form-section {
    /* Set a visually interesting background to see the glass effect */
    /* This background should be slightly different from the form's white background */
    background: linear-gradient(135deg, var(--light-grey, #f8f8f8), #e0e0e0);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    text-align: center;
}

#contact-form-section h2 {
    font-size: clamp(32px, 4vw, 42px); /* Slightly larger header */
    color: var(--primary-color, #0A2A5E);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

#contact-form-section > p {
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    color: var(--dark-grey, #333333); /* Use dark grey for better readability */
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    
    /* --- THE GLASS MORPHISM EFFECT --- */
    background: rgba(255, 255, 255, 0.75); /* Semi-transparent white background */
    backdrop-filter: blur(10px); /* The "frosted glass" effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border for definition */
    border-radius: 16px; /* Slightly more rounded corners for modern look */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15); /* Stronger, more elegant shadow */
    
    padding: 40px;
    text-align: left;
    transition: transform 0.5s ease-in-out;
}

/* Optional: Slight scaling on hover for elegance */
.form-container:hover {
    transform: scale(1.01);
}

/* Two-column layout for inputs */
.form-group-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px; /* Slightly larger label */
    font-weight: 700; /* Bolder label */
    margin-bottom: 8px;
    color: var(--primary-color, #0A2A5E);
    transition: color 0.3s;
}

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%; 
    padding: 14px 12px; /* Slightly more padding */
    /* Remove default border and use a softer one */
    border: 1px solid rgba(0, 0, 0, 0.1); 
    background-color: rgba(255, 255, 255, 0.9); /* Slightly visible background */
    border-radius: 8px; 
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

/* ANIMATION: Glowing Focus Effect */
.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    border-color: var(--secondary-color, #FFC72C);
    box-shadow: 0 0 10px 0 rgba(255, 199, 44, 0.6); /* More pronounced glowing shadow */
    background-color: var(--white, #ffffff); /* Solid white on focus */
    outline: none;
}

/* ANIMATION: Highlight label on input focus */
.form-container input:focus + label, 
.form-container select:focus + label, 
.form-container textarea:focus + label {
    color: var(--secondary-color, #FFC72C);
}


.form-container textarea {
    resize: vertical;
    min-height: 150px; /* Slightly taller textarea */
}

/* The Submit Button (Elevated Look) */
.form-submit-btn {
    width: 100%;
    margin-top: 35px;
    
    background-color: var(--primary-color, #0A2A5E);
    color: var(--white, #ffffff);
    text-transform: uppercase;
    letter-spacing: 2px; /* Increased letter spacing */
    padding: 15px 28px; /* Larger padding */
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(10, 42, 94, 0.3); /* Initial shadow for lift */
}

.form-submit-btn:hover {
    background-color: var(--secondary-color, #FFC72C); /* Switch to secondary color on hover */
    color: var(--primary-color, #0A2A5E); /* Dark text on bright button */
    transform: translateY(-3px); /* Stronger lift animation */
    box-shadow: 0 8px 20px rgba(255, 199, 44, 0.6); /* Glowing hover shadow */
}

/* Form Responsiveness (Kept consistent) */
@media (max-width: 650px) {
    .form-group-row {
        flex-direction: column;
        gap: 0;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-container {
        padding: 30px 20px; /* Reduced padding on small screens */
    }
}


/* ======================================= */
/* 3. FLOATING BUTTONS */
/* ======================================= */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Applying standard button styles (assuming .btn-solid is defined in your main file) */
.floating-buttons .btn-solid {
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 150px; 
    text-align: center;
    transition: transform 0.3s;
}

.floating-buttons .btn-solid:nth-child(1) {
    /* What We Offer */
    background-color: var(--primary-color, #0A2A5E);
    color: var(--white, #ffffff);
}

.floating-buttons .btn-solid:nth-child(2) {
    /* Get A Quote */
    background-color: var(--secondary-color, #FFC72C);
    color: var(--primary-color, #0A2A5E);
    box-shadow: 0 5px 15px rgba(255, 199, 44, 0.4);
}

.floating-buttons .btn-solid:hover {
    transform: scale(1.05);
}

/* Mobile Adjustments for Floating Buttons */
@media (max-width: 450px) {
    .floating-buttons .btn-solid:nth-child(1) {
        display: none; /* Hide 'What We Offer' on smaller screens */
    }
    .floating-buttons {
        gap: 0;
    }
}
/* ======================================= */
/* FOOTER STYLES */
/* ======================================= */

#footer {
    background-color: var(--primary-color, #0A2A5E);
    color: var(--white, #ffffff);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color, #FFC72C);
}

/* About Column Styling */
.footer-about {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}

.footer-logo .symbol {
    color: var(--secondary-color, #FFC72C);
    margin-right: 5px;
    font-size: 30px;
}

.footer-about p {
    font-size: 14px;
    opacity: 0.8;
}

/* Link Columns Styling */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white, #ffffff);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color, #FFC72C);
}

/* Contact/Working Hours Column Styling */
.footer-contact .time {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color, #FFC72C);
}

.btn-footer-contact {
    display: inline-block;
    background-color: var(--white, #ffffff);
    color: var(--primary-color, #0A2A5E);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-footer-contact:hover {
    background-color: #eee;
    transform: translateY(-1px);
}

/* --- SOCIAL ICONS (Fully Working) --- */
/* =======================================
   SOCIAL ICONS STYLE
======================================= */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color); /* Navy Blue */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Perfect Circle */
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--smooth-transition);
    border: 2px solid transparent;
}

/* Gold Glow Hover Effect */
.social-icon:hover {
    background-color: var(--accent-color); /* Turns Gold */
    color: var(--primary-color); /* Text turns Navy */
    transform: translateY(-5px); /* Pops up */
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 199, 44, 0.4);
}

/* Specifically for the WhatsApp icon - unique green on hover if you prefer */
.social-icon .fa-whatsapp:hover {
    color: #25D366; 
}
/* Footer Bottom (Copyright) */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p, .footer-bottom .website-link {
    margin: 0;
}

.footer-bottom .website-link {
    color: var(--white, #ffffff);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom .website-link:hover {
    opacity: 1;
}

/* Footer Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        justify-content: flex-start;
    }

    .footer-col {
        min-width: 45%;
        margin-right: 10px;
    }
    
    .footer-about {
        min-width: 100%;
    }

    .footer-contact {
        /* Ensure contact section stays readable */
        min-width: 45%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-col {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-col h3 {
        text-align: center;
    }

    .footer-links ul {
        display: none; /* Hide link lists on very small screens to save space */
    }

    .social-links {
        justify-content: center;
        display: flex;
    }
}

