* {
    font-family: "Inter", Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

section {
    padding: 80px 20px;
    min-height: 100%;
    width: 80%;
    margin: auto;
    scroll-margin-top: 100px;
}

.section-title {
    color:rgb(29, 34, 40);
    text-align: center;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.section-description {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgb(29, 34, 40);
    margin-bottom: 40px;
}




/* Change this */
header {
    background: white;
    width: 100%; /* Ensure it spans full width */
    max-width: 100%; /* Remove any 1200px limit if you have it here */
    padding: 15px 40px; /* Add padding to sides */
    position: fixed; /* Optional: Keep it fixed at top */
    top: 0;
    left: 0;
    z-index: 100;
}

/* Ensure the nav content stays centered */
nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- VARIABLES --- */
:root {
    --primary-color: #1d2228;   /* Dark Blue */
    --accent-color: #ffe664;    /* Yellow */
    --bg-color: #ffffff;
    --text-color: #333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- RESET & BASE --- */


/* --- HEADER STYLES --- */
.site-header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky; /* Sticks to top on scroll */
    top: 0;
    z-index: 1000; /* Ensures it stays above other content */
    padding: 0 20px;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px; /* Fixed height for consistency */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* Logo Styling */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Controls logo size */
    width: auto;
}

/* Navigation List */
.nav-links {
    display: flex;
    gap: 30px; /* Space between items */
    list-style: none;
    align-items: center;
}

/* Link Styling */
.nav-links li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

/* The "Underline" Hover Effect */
.nav-links li a:not(.btn-cta)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links li a:not(.btn-cta):hover::after {
    width: 100%;
}

/* CTA Button Style (The Contact Link) */
.btn-cta {
    background-color: var(--primary-color);
    color: #fff !important; /* Force white text */
    padding: 10px 24px;
    border-radius: 50px;
    transition: transform 0.2s ease, background-color 0.2s;
}

.btn-cta:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- MOBILE MENU (HAMBURGER) --- */
.hamburger {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* --- RESPONSIVE DESIGN (Mobile) --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Show burger on mobile */
    }

    .nav-links {
        position: absolute;
        top: 80px; /* Push it below the header height */
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column; /* Stack items vertical */
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        
        /* Animation states */
        transform: translateY(-150%); /* Start hidden above */
        transition: transform 0.4s ease;
        z-index: -1; /* Behind header until active */
    }

    /* Class added by JS to show menu */
    .nav-links.active {
        transform: translateY(0);
        z-index: 999;
    }
}






















h1 {
    font-weight: 600;
    font-style: normal;   
    color: rgb(29, 34, 40);
}

h2 {
    font-weight: 600;
    font-style: normal;
    font-size: 60px;
}

h3 {
    font-weight: 600;
    font-style: normal;
}

p {
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;

}

/*Cards*/

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.card {
    display: flex;
    flex:1;
    flex-direction: column;
    width: 325px;
    background-color: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 10px solid #eaeaea;
    margin: 20px;
    padding: 0.5rem;
}

.card img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border: 6px solid #abd2d2;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: block;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1rem;
}

.testimonials-section h4 {
    font-size: 18px;
    font-weight: 600px;
    line-height: 32px;
    position: relative;
    margin-top: auto;
    color: #005a5a;
}

.card-content p {
    font-size: 16px;
    color: rgb(29, 34, 40);
    line-height: 1.6;
    margin-bottom: 16px;
}

.name .role {
    color: #ff8901;
}

.card-content h3 {    
    text-transform: capitalize;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
    font-weight: 300px;
    color: rgb(29, 34, 40);
}

/*Card Content Buttons*/

.card-content .btn {
    display: block;
    justify-content: center;
    padding: 8px 16px;
    margin-top: 16px;
    color: #fff;
}

/*Header*/

.logo {
    margin: 0;
    display: flex;
}

.logo img {
    height: 54px;
    width: auto;
}


/*Hero Section*/
/* 1. Base Setup & Background */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center; 
}

/* 2. Typography */

.hero-content h1{
    color:rgb(29, 34, 40);
    text-align: left;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 90%;
}

/* 3. Buttons (Pill Shape) */

.hero-content .buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: left;
}

/* 5. The Image Collage Logic */
.hero-visuals {
    position: relative;
    height: 500px; /* Reserve height for images */
}

.image-wrapper {
    position: absolute;
    border-radius: 24px; /* Rounded corners for images */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Back Image (Woman) positioning */
.back-img {
    width: 300px;
    height: 400px;
    top: 40px;
    left: 0;
    z-index: 1;
}

/* Front Image (Man) positioning */
.front-img {
    width: 300px;
    height: 400px;
    top: -40px; /* Moves it up */
    right: 0; /* Moves it right */
    z-index: 2;
    border: 8px solid #fff; /* White border separates it from the back image */
}




/*SECTION CARDS STYLING*/

/*About Section*/

.about .card {
    flex: 1    
}

.about h3 {
    color: #ff8901;
}

/*Why Us Section*/

.why-us-section .card {
    flex: 1;
}


/*services section*/

.services-section .card-content {
    text-align: left;
}

.services-section .btn {
    position: relative;
    margin-top: auto;
    background-color: #ff8901;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
}

.services-section .btn:hover {
    background-color: #4e8b8b;
}

/*Why Us Section*/

.why-us-section .card {
    flex-basis: 32%;
}


/*Buttons*/

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.buttons .btn {
    padding: 16px 32px;
    font-size: 14px;
    border-radius: 32px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: #ff8901;
    transition: background-color 0.3s;
}

.buttons .btn:hover {
    background-color: #005a5a;
    /*letter-spacing: 8px;*/
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.buttons .btn-secondary {
    border: 2px solid #005a5a;
    background-color: #f4f4f4;
    color: #000;
}

.buttons .btn-secondary:hover {
    background-color: #005a5a;
    color: #f4f4f4;
    letter-spacing: ;
}

/*Testimonials*/

.testimonials-section {
    padding: 80px 20px;
}


/* CTA SECTION */

.cta-section {
    padding: 80px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    border: #4e8b8b  dashed;
    border-width: 4px 0px 4px 0px;
}

.wrapper {
    width: 80%;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.wrapper h2 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 50px;    
}

.wrapper p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    color: rgb(29, 34, 40);
}

/* FAQs CSS SECTION */

.faq-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.faq-accordion details {
    border: 10px solid #eaeaea;
    border-radius: 4px;
    padding: 1rem;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.faq-accordion summary {
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    font-weight: bold;
    color: #555;
    list-style:none;
    position: relative;
    line-height: 1.6;
}

.faq-accordion summary:hover {
    color: #005a5a;
}

.faq-accordion p {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
    color: #333;
    line-height: 1.6;
}


/* END OF FAQs CSS SECTION */


/* FOOTER CSS SECTION */

footer {
    width: 100%;
    background-color: rgba(0, 90, 90, 0.79);
    color: abd2d2;
    padding: 0;
    text-align: center;
}

.mainfooter {
    display: inline-grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 28px auto;
    padding: 20px 20px;
    font-size: 14px;
    text-align: left;
    color: #abd2d2;
}

.mainfooter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mainfooter li {
    margin-bottom: 10px;
}

.mainfooter a {
    color: #abd2d2;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mainfooter h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ff8901;
}

.mainfooter a:hover {
    color: #fff;

}

#footer-socials p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #abd2d2;
}

#footer-socials a {
    display: inline-block;
    font-size: 18px;
    margin: 0 15px 0 0;
    transition: opacity 0.3s;
}

#footer-bottom {
    background-color: #004c4c;
    color: #abd2d2;
    text-align: center;
    padding: 1rem;
    font-size: 12px;
}

/* END FOOTER CSS SECTION */

/* ...existing code... */

/* Mobile styles (up to 768px) */
@media (max-width: 768px) {
    body {
        padding: 0 10px;
        /* Add padding for small screens */
    }

    section {
        padding: 30px 0;
        /* Reduce section padding */
    }

    section h2 {
        font-size: 36px;
        /* Smaller heading */
        margin-bottom: 30px;
    }

    .mainfooter {
        grid-template-columns: 1fr;
        /* Stack footer columns vertically */
        gap: 15px;
        padding: 0 10px;
    }

    .faq-accordion {
        grid-template-columns: 1fr;
        /* Single column for FAQs */
        gap: 15px;
    }

    #footer-socials i {
        font-size: 30px;
        /* Smaller social icons */
    }

    #footer-socials a {
        margin: 0 8px 0 0;
        /* Reduce gap */
    }

    .mainfooter h3 {
        font-size: 16px;
        /* Smaller subheadings */
    }

    .mainfooter a {
        font-size: 13px;
        /* Smaller link text */
    }
}

/* Tablet styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .mainfooter {
        grid-template-columns: 1fr 1fr;
        /* Two columns on tablet */
        gap: 18px;
    }

    .faq-accordion {
        grid-template-columns: 1fr 1fr;
        /* Two columns for FAQs */
        gap: 18px;
    }

    section h2 {
        font-size: 48px;
        /* Medium heading */
    }

    #footer-socials i {
        font-size: 35px;
        /* Medium icons */
    }
}

/* Desktop styles (1025px+) - already set, no changes needed */


/* Desktop styles (1025px+) - already set, no changes needed */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    /* Use your brand colors */
    background-color: #ff8901; 
    color: #1d2228;
    
    border-radius: 50%; /* Makes it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999; /* Ensures it stays on top of everything */
    
    /* Animation States (Hidden by default) */
    opacity: 0;
    pointer-events: none; /* Prevents clicking when hidden */
    transform: translateY(20px); /* Starts slightly lower */
    transition: all 0.3s ease;
}

/* State when visible */
.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover Effect */
.scroll-top:hover {
    transform: translateY(-5px); /* Moves up slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #ffa238; /* Slightly darker yellow on hover */
}


/*Contact section*/
/* 1. Base Setup & Background */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center; 
}

/* 2. Typography */

.contact-content h2{
    color:rgb(29, 34, 40);
    text-align: left;
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    max-width: 90%;
}

.email-link {
    color: rgb(29, 34, 40); /* Stays dark */
    text-decoration: none; /* Remove default ugly underline */
    position: relative; /* Needed to anchor the underline */
    display: inline-block; /* Ensures the line respects the text width */
}

    /* The Line Itself */
.email-link::after {
    content: '';
    position: absolute;
    width: 0%; /* Start with no width (invisible) */
    height: 2px; /* Make it "thin" */
    bottom: 0;
    left: 0;
    background-color: #ffa238; /* Your specific orange color */
    transition: width 0.3s ease-in-out; /* The smooth "ease in" animation */
}

/* Hover State */
.email-link:hover::after {
    width: 80%; /* Expands to full width */
}



/* =========================================
   RESPONSIVE MEDIA QUERIES
   Add this to the bottom of styles.css
   ========================================= */

/* --- Tablet & Small Desktop (Max width 1024px) --- */
@media (max-width: 1024px) {
    section {
        width: 90%; /* Use more screen width */
    }

    /* Hero: Adjust text size and spacing */
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-visuals {
        height: 400px;
    }

    .back-img, .front-img {
        width: 250px;
        height: 350px;
    }
}

/* --- Mobile Devices (Max width 768px) --- */
@media (max-width: 768px) {
    
    /* Global Typography Fixes */
    h1, .hero-content h1 { font-size: 36px; text-align: center; }
    h2, .section-title, .contact-content h2 { font-size: 32px; text-align: center; }
    p, .section-description { font-size: 16px; }
    
    /* Layout Resets */
    section {
        padding: 40px 15px;
        width: 95%;
    }

    /* --- HERO SECTION MOBILE --- */
    .hero-container {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 40px;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px auto; /* Center paragraph */
    }

    .hero-content .buttons {
        justify-content: center; /* Center buttons */
        flex-direction: column; /* Stack buttons on very small screens */
        gap: 15px;
    }

    .hero-content .buttons .btn {
        width: 100%; /* Full width buttons */
        text-align: center;
    }

    /* Hero Images: Simplify for mobile to prevent overlap */
    .hero-visuals {
        height: 350px;
        display: flex;
        justify-content: center;
    }

    .back-img {
        display: none; /* Hide background image on mobile for clarity */
    }

    .front-img {
        position: relative; /* Remove absolute positioning */
        top: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    /* --- CARDS (Services, Why Us, Testimonials) --- */
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card, .why-us-section .card {
        width: 100%; /* Full width */
        max-width: 100%;
        margin: 10px 0;
        flex: auto; /* Reset flex grow */
    }
    
    /* --- CTA SECTIONS --- */
    .cta-section {
        border-width: 2px 0; /* Thinner borders */
        padding: 40px 15px;
    }
    
    .wrapper h2 {
        font-size: 28px;
    }
    
    .wrapper .buttons {
        flex-direction: column;
        align-items: center;
    }

    /* --- CONTACT SECTION --- */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .contact-content h2 {
        font-size: 24px; /* Smaller font to fit email */
        word-break: break-all; /* Ensure long email doesn't overflow */
    }
    
    .contact-content p {
        margin: 0 auto 30px auto;
    }

    /* --- FOOTER --- */
    .mainfooter {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mainfooter div {
        text-align: center; /* Force center alignment */
    }
}