    @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

    /*body*/

    /* Global reset and base styles */
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
    font-family: "Oswald";
    margin: 0;
    padding: 0;
    text-align: center; /* Center default text */
    color: #222;
    
    }

    a, p, h3,h2,h1,h4
    {
    text-decoration: none;
    font-family: "Oswald";
    }


    /* --- NAVBAR --- */
    /* --- NAVBAR --- */
    #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 15px; /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2d662d;
    backdrop-filter: blur(0px);
    transition: 0.35s ease;
    z-index: 999;
    border-bottom: 1px solid transparent;
    height: 80px;
    box-sizing: border-box;
    }

    #navbar.scrolled {
    background: rgba(44, 240, 86, 0.315);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(231, 255, 200, 0.2);
    padding: 15px 25px;
    }

    #navbar #logo {
    margin-right: 20px;
    width: 47px;
    height: auto;
    transition: 0.4s;
    flex-shrink: 0; /* Prevent logo from shrinking */
    }

    /* Navbar Right Side */
    #navbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0; /* Prevent entire navbar from shrinking */
    }

    /* All navbar links (NOT including the green box buttons) */
    #navbar-right > a:not(.button-group a) {
    color: #ffffff;
    text-align: center;
    padding: 28px 30px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
    white-space: nowrap; /* Prevent text wrapping */
        box-sizing: border-box; /* Include padding in width calculation */
    display: inline-block; /* Ensures consistent sizing */
    }

    #navbar-right > a:hover {
    background-color: #51cc41be;
    color: black;
    /* Remove any transform or margin changes */
    }

    #navbar-right > a.active {
    background-color: #7ff550;
    color: #064c10;
    font-weight: 700;
    }

    #navbar-right > a:not(.button-group a):hover {
    background-color: #51cc41be;
    color: black;
    }

    /* Green button container (Contact Us + Careers) */
    .button-group {
    display: flex;
    flex-direction: column;
    background-color: #90ee90;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 0;
    min-width: 120px; /* Fixed width to prevent shifting */
    flex-shrink: 0; /* Prevent shrinking */
    }

    .button-group a {
    color: #064c10;
    text-align: center;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: block;
    white-space: nowrap; /* Prevent text wrapping */
    border: none;
    box-sizing: border-box; /* Include padding in width calculation */
    }

    .button-group a:hover {
    background-color: #7ff550;
    }

    /* Active state for buttons in green box */
    .button-group a.active {
    background-color: #64d664;
    font-weight: 700;
    border-left: 4px solid #064c10;
    }

    /* Dropdown styles remain the same */
    .dropdown {
    position: relative;
    display: inline-block;
    }

    .dropbtn {
    color: #ffffff;
    text-decoration: none;
    padding: 28px 30px;
    font-size: 15px;
    cursor: pointer;
    background: none;
    border: none;
    transition: background-color 0.3s;
    white-space: nowrap;
    box-sizing: border-box; /* Include padding in width calculation */
    display: inline-block; /* Ensures consistent sizing */
    height: 100%; 
    }

    .dropbtn:hover {
    background-color: #51cc41be;
    color: black;
    }

    .dropbtn::after {
    content: " ▼";
    font-size: 12px;
    margin-left: 5px;
    }

    .dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #3cb431;
    min-width: 100px;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin: 0;
    }

    .dropdown-content a {
    color: white;
    padding: 12px 30px;
    display: block;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.3s;
    }

    .dropdown-content a:hover {
    background-color: #2a8d24;
    }

    .dropdown:hover .dropdown-content {
    display: block;
    }

    .dropdown-content a.active {
    background-color: #45c03f;
    color: white !important;
    font-weight: 600;
    position: relative;
    }

    .dropdown-content a.active::before {
    content: '●';
    margin-right: 8px;
    color: #7ff550;
    }

    .dropdown-content a.active:hover {
    background-color: #5ada51;
    }

    /* ---- HAMBURGER BUTTON ---- */
    #hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        margin-left: auto;
    }

    #hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: #ffffff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Animate to X when open */
    #hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    #hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
        #navbar {
            padding: 0 15px !important;
            flex-direction: row;
            flex-wrap: wrap;
            height: 60px;
            align-items: center;
            position: fixed;
        }

        #navbar #logo {
            width: 38px;
        }

        #hamburger {
            display: flex;
        }

        #navbar-right {
            display: none;
            flex-direction: column;
            width: 100%;
            margin-left: 0;
            background: #2d662d;
            max-height: calc(100vh - 60px);
            overflow-y: auto;
        }

        #navbar-right.open {
            display: flex;
        }

        #navbar-right > a,
        .dropbtn {
            width: 100%;
            text-align: left;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            box-sizing: border-box;
        }

        .dropdown {
            width: 100%;
        }

        .dropdown-content {
            position: relative;
            width: 100%;
            border-radius: 0;
            box-shadow: none;
            background: #245224;
        }

        .dropdown-content a {
            padding-left: 35px;
        }

        /* Always show dropdown content on mobile when parent is hovered/focused */
        .dropdown:hover .dropdown-content,
        .dropdown.active .dropdown-content {
            display: block;
        }
    }


    .dropdown-content a.active {
        background-color: #45c03f;
        color: white !important;
        font-weight: 600;
        position: relative;
    }

    /* Optional: Add indicator */
    .dropdown-content a.active::before {
        content: '●';
        margin-right: 8px;
        color: #7ff550;
    }

    /* Hover effect for active item */
    .dropdown-content a.active:hover {
        background-color: #5ada51;
    }

    /* --- PAGE CONTENT LAYOUT --- */
    .page-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 90vh;
    align-items: stretch;
    box-sizing: border-box;
    padding-top: 50px;
    background-image: url("bg-velazco.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    }

    .left-half,
    .right-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    }

    .left-half {
    background: #3cb43131;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    text-align: center;
    }

    .right-half {
    background: rgba(62, 104, 66, 0.45);
    backdrop-filter: blur(5px);
    padding: 2rem;
    min-height: 25vh;
    }

    .left-half img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-top: 100px;
    }

    .home-divider {
        width: 250px;
        height: 4px;
        background: linear-gradient(90deg, #4ade80, #22c55e);
        margin: 0 px auto 25px;
        border-radius: 2px;
        }

    @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .left-half, .right-half {
    animation: fadeIn 1.2s ease-out forwards;
    }

    .right-half {
    animation-delay: 0.2s;
    }

    #unique-heading2 {
    font-size: 50px;
    margin-top: 50px;
    color: #092e05;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: 'Oswald';
    }

     #unique-heading2  span {
        background: linear-gradient(135deg, #24b157 0%, #3ecc72 50%, #a0eebc 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        }

    #unique-subheading2{
        color: #29d829;
                font-size: 20px;
                margin-bottom: 20px;
                text-align: center;
                font-weight: 100;
    }

    @media (max-width: 768px) {
    .page-content {
        flex-direction: column;
        padding-top: 80px;
    }
    }
    /*about section*/
    .about-section {
        padding: 80px 30px;
        background-color: #046a0ba4;
        box-shadow: inset 0 0 0 1000px rgba(21, 49, 22, 0.575);
        background-image: url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1600");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 100vh;
        padding-bottom: 100px;
        position: relative;
        overflow: hidden;
        }

        .about-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(127, 245, 80, 0.1) 0%, transparent 70%);
        animation: float 15s ease-in-out infinite;
        }

        .about-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        animation: float 12s ease-in-out infinite reverse;
        }

        @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .about-container {
        max-width: 1200px;
        margin: auto;
        text-align: center;
        padding: 30px 0;
        position: relative;
        z-index: 1;
        }

        .about-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #4ade80;
        margin-bottom: 20px;
        font-weight: 600;
        backdrop-filter: blur(10px);
        }

        .about-container h2 {
        font-size: clamp(36px, 5vw, 56px);
        margin-bottom: 10px;
        color: #ffffff;
        font-family: "Oswald", sans-serif;
        font-weight: 700;
        line-height: 1.1;
        }

        .about-container h2 span {
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #86efac 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        }

        .about-divider {
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #4ade80, #22c55e);
        margin: 20px auto 25px;
        border-radius: 2px;
        }

        .about-container > p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
        font-family: sans-serif;
        }

        .about-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
        }

        .about-grid > a {
        text-decoration: none;
        }

        .about-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 30px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        height: 100%;
        }

        .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
        }

        .about-card:hover::before {
        left: 100%;
        }

        .about-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        background: rgba(74, 222, 128, 0.15);
        border-color: rgba(74, 222, 128, 0.3);
        }

        .about-card .icon-wrapper {
        width: 60px;
        height: 60px;
        background: rgba(74, 222, 128, 0.15);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin: 0 auto 15px;
        transition: all 0.4s ease;
        }

        .about-card:hover .icon-wrapper {
        background: rgba(74, 222, 128, 0.25);
        transform: scale(1.1) rotate(5deg);
        }

        .about-card h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 600;
        transition: color 0.3s ease;
        }

        .about-card:hover h3 {
        color: #4ade80;
        }

        .about-card p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        line-height: 1.6;
        font-family: 'Oswald';
        }

        .about-card:hover p {
        color: rgba(255, 255, 255, 0.9);
        }

        .about-btn {
        padding: 16px 40px;
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        color: white;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        margin-top: 20px;
        box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
        font-family: "Oswald", sans-serif;
        letter-spacing: 1px;
        }

        .about-btn:hover {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
        }

        .about-btn:hover .btn-arrow {
        transform: translateX(5px);
        }

        .btn-arrow {
        transition: transform 0.3s ease;
        }

        /* Mobile layout */
        @media (max-width: 1024px) {
        .about-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        }

        @media (max-width: 768px) {
        .about-grid {
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-section {
            padding: 60px 20px 80px;
        }

        .about-card {
            padding: 25px 15px;
        }
        }

        @media (max-width: 500px) {
        .about-grid {
            grid-template-columns: 1fr;
        }
        }


    
    /*about section-upper part*/
    .single-hero {
        justify-content: center;
        background-color: #0f7e2b;
        min-height: 70px;
        margin: 0 auto;
    }



    /* Expand the left panel to full width */
    .single-hero .hero-left {
        width: 100%;
        height: auto;
        max-width: 700px;
        margin  : 0px auto;
        text-align: center;
    
        padding-block: 50px;
    
    }

    .single-hero h1 span {
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #86efac 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        }

        .single-hero h1{
            color:#cbfcbd;
            font-size: 45px;
            margin:0;
        }


        .single-hero p{
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.2;
        font-family: sans-serif;
        }
        


        .singlehero-divider {
        width: 350px;
        height: 4px;
        background: linear-gradient(90deg, #4ade80, #22c55e);
        margin: 10px auto 20px;
        border-radius: 1px;
        }

    .hero-logo {

        max-width: 120px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 45px;
        color: #093a06;
        margin-bottom: 10px;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        font-family: 'Oswald';
    }

    .hero h2 {
        font-size: 45px;
        color: #093a06;
        font-family: 'Oswald';
    }

    .hero p {
        font-size: 18px;
        color: #0e3905;
        margin-left: auto;
        margin-right: auto;
        font-family: 'Oswald';
    }

    .hero-btn {
        margin-left: auto;
        margin-right: auto;
        padding: 14px 28px;
        background: #3cb431;
        color: white;
        font-size: 16px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
    }

    .hero-btn:hover {
        background: #2a8d24;
    }

    .hero-btn.secondary {
        background: #ffffff;
        color: #0d4508;
        border: 2px solid #2a8d24;
    }

    .hero-btn.secondary:hover {
        background: #d8ffd4;
    }

    /* MOBILE */
    @media(max-width: 768px) {
        .hero {
        flex-direction: column;
        }

        .hero-left, .hero-right {
        width: 100%;
        padding: 2rem;
        }

        .hero-left h1 {
        font-size: 45px;
        }


    }


    .hero-features {
                position: block;
                bottom: 0;
                left: 50%;
                transform: translateX(-100%);
                display: flex;
                row-gap: 40px;
                column-gap:20px;    
                z-index: 10;
                animation: fadeInUp 1s ease-out 0.6s both;
                margin-top: 30px;
            }

            .hero-feature-item {
                display: flex;
                align-items: center;
                gap: 10px;
                color: #52a341;
                font-size: 1rem;
            }

            .hero-feature-item span {
                font-size: 1.5rem;
            }

    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: 0.8s ease-out;
    }

    /* visible state when scrolled */
    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    @keyframes slideDown {
        from {
        opacity: 1;
        transform: translateY(0px);
        }
        to {
        opacity: 0;
        transform: translateY(20px);
        }
    }


    /* Stagger delays (same timing pattern as hero) */
    .reveal.delay-1 { animation-delay: 0.05s; }
    .reveal.delay-2 { animation-delay: 0.20s; }
    .reveal.delay-3 { animation-delay: 0.40s; }
    .reveal.delay-4 { animation-delay: 0.55s; }

    @keyframes slideUp {
        0% {
        opacity: 0;
        transform: translateY(18px);
        }
        100% {
        opacity: 1;
        transform: translateY(0);
        }
    }

    /*patient guide banner home*/
    .patient-guide-section {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                padding:60px 20px;
                position: relative;
                overflow: hidden;
            }

            .patient-guide-section::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -10%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle, rgba(187, 255, 0, 0.1) 0%, transparent 70%);
                border-radius: 50%;
            }

            .patient-guide-section::after {
                content: '';
                position: absolute;
                bottom: -30%;
                right: -10%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
                border-radius: 50%;
            }

            .guide-container {
                max-width: 1200px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
                display: flex;
                align-items: center;
                gap: 60px;
            }

            .guide-content {
                flex: 1;
                text-align: left;
            }

            .guide-title {
                font-size: 48px;
                font-weight: 700;
                color: white;
                margin-bottom: 30px;
                line-height: 1.3;
            }

            .guide-description {
                font-size: 18px;
                color: rgba(255, 255, 255, 0.95);
                line-height: 1.8;
            }

            .guide-buttons {
                display: flex;
                flex-direction: column;
                gap: 20px;
                min-width: 220px;
            }

            .btn {
                padding: 15px 40px;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 700;
                font-size: 16px;
                transition: all 0.3s ease;
                border: none;
                cursor: pointer;
                display: inline-block;
                text-align: center;
            }

            .btn-primary {
                background-color: #107a15;
                color: white;
                box-shadow: 0 4px 15px rgba(46, 224, 30, 0.4);
            }

            .btn-primary:hover {
                background-color: #2cd81d;
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(82, 255, 2, 0.5);
            }

            .btn-secondary {
                background-color: rgba(255, 255, 255, 0.2);
                color: white;
                border: 2px solid white;
                backdrop-filter: blur(10px);
            }

            .btn-secondary:hover {
                background-color: white;
                color: #107a15;
                transform: translateY(-3px);
            }

        @media (max-width: 768px) {
                .guide-container {
                    flex-direction: column;
                    gap: 40px;
                }

                .guide-content {
                    text-align: center;
                }

                .guide-title {
                    font-size: 32px;
                }

                .guide-description {
                    font-size: 16px;
                }

                .guide-buttons {
                    width: 100%;
                    align-items: center;
                }

                .btn {
                    width: 100%;
                    max-width: 300px;
                }

                .hero-features {
                    flex-direction: column;
                    gap: 15px;
                    bottom: 20px;
                }   
            } 

    /*facilities section home*/
    .facilities-section {
                background-color: #e5f7dd;
                padding: 30px 20px 30px 20px;
                transition: opacity .8s ease, transform 1s ease;
                font-family: "Oswald";
                margin-bottom: 0; 
                
            }

    .facilities-section.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .facilities-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 50px 20px;
            }

    .facilities-header-section {
                margin-bottom: 40px;
                text-align: center;
                
            }

    .facilities-header-subtitle {
                font-size: 18px;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: #2d2d2d;
                margin-bottom: 15px;
                font-weight: 600;
                text-align: left;
                font-family: "Oswald";
            }

    .facilities-header-title {
                font-size: 56px;
                font-weight: 700;
                margin-bottom: 20px;
                text-align: center;
                font-family: "Oswald";
            }

            .facilities-header-title .our {
                color: #2d5016;
            }

            .facilities-header-title .facilities {
                color: #7ff550;
            }

            .facilities-divider {
                width: 200px;
                height: 3px;
                background-color: #55b469;
                margin: 0 auto;
            
            }

            .facilities-top-bar {
                display: flex;
                justify-content: flex-end;
                margin-bottom: 40px;
                
            }

            .view-all-btn {
                color: #2d5016; 
                text-decoration: none;
                font-size: 24px;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 8px;
                transition: all 0.3s ease;
                margin-right: 10px;
            }

            .view-all-btn:hover {
                color: #7ff550;
                transform: translateX(5px);
            }

            .facilities-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                margin-bottom: 40px;
            }

            .facility-card {
                position: relative;
                overflow: hidden;
                border-radius: 15px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
                transition: all 0.4s ease;
                cursor: pointer;
                background: white;
                height: 350px;
                display: flex;
                flex-direction: column;
            }

            .facility-card:hover {
                transform: translateY(-15px);
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            }

            .facilities-image-container {
                position: relative;
                overflow: hidden;
                height: 100%;
                flex: 1;
            }

            .facility-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.6s ease;
            }

            .facility-card:hover .facility-image {
                transform: scale(1.2);
            }

            .image-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.8) 100%);
                opacity: 0;
                transition: opacity 0.4s ease;
            }

            .facility-card:hover .image-overlay {
                opacity: 1;
            }

            .hover-icon {
                position: absolute;
                top: 25%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0);
                font-size: 34px;
                color: white;
                transition: all 0.4s ease;
                z-index: 2;
            }

            .facility-card:hover .hover-icon {
                transform: translate(-50%, -50%) scale(1);
            }

            .facilities-card-content {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 30px;
                background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
                color: white;
                transform: translateY(60%);
                transition: all 0.4s ease;
            }

            .facility-card:hover .facilities-card-content {
                transform: translateY(0);
                background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
            }

            .facility-label {
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                color: #7ff550;
                margin-bottom: 10px;
                font-weight: 700;
                transition: all 0.3s ease;
            }

            .facility-title {
                font-size: 26px;
                font-weight: 700;
                color: white;
                margin-bottom: 10px;
                transition: all 0.3s ease;
            }

            .facility-card:hover .facility-title {
                color: #7ff550;
            }

            .facility-description {
                font-size: 15px;
                color: rgba(255, 255, 255, 0.9);
                line-height: 1.6;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all 0.4s ease;
            }

            .facility-card:hover .facility-description {
                max-height: 150px;
                opacity: 1;
                margin-top: 12px;
            }

            .learn-more {
                display: inline-block;
                margin-top: 0;
                color: #7ff550;
                font-weight: 600;
                text-decoration: none;
                font-size: 15px;
                opacity: 0;
                transform: translateY(-10px);
                transition: all 0.4s ease;
                border-bottom: 2px solid transparent;
            }

            .learn-more2 {
                display: inline-block;
                margin-top: 0;
                color: #7ff550;
                font-weight: 600;
                text-decoration: none;
                font-size: 50px;
                opacity: 0;
                transform: translateY(-10px);
                transition: all 0.4s ease;
                border-bottom: 2px solid transparent;
            }

            .facility-card:hover .learn-more {
                opacity: 1;
                transform: translateY(0);
                margin-top: 15px;
            }

            .learn-more:hover {
                border-bottom-color: #7ff550;
            }

            /* Shimmer effect */
            .shimmer {
                position: absolute;
                top: 0;
                left: -100%;
                width: 50%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transition: left 0.6s;
            }

            .facility-card:hover .shimmer {
                left: 100%;
            }

            @media (max-width: 1024px) {
                .facilities-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 768px) {
                .facilities-grid {
                    grid-template-columns: 1fr;
                }

                .facilities-header-title {
                    font-size: 36px;
                }

                .facility-card {
                    height: 400px;
                }
            }
    
    .home-news-section {
                background: #e5f7dd;
                padding:  30px ;
                position: relative;
                overflow: hidden;
                display: flex;
                margin-top: 0;

            }

            .home-news-section::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -10%;
                width: 500px;
                height: 100px;
                background: radial-gradient(circle, rgba(127, 245, 80, 0.1) 0%, transparent 70%);
                border-radius: 50%;
            }

            .home-news-section::after {
                content: '';
                position: absolute;
                bottom: -30%;
                left: -10%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(41, 131, 23, 0.1) 0%, transparent 70%);
                border-radius: 50%;
            }

            .home-news-container {
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
                z-index: 1;

            }

            .home-news-header {
                text-align: center;
                margin-bottom: 60px;
            }

            .home-news-badge {
                display: inline-block;
                background: linear-gradient(135deg, #298317 0%, #4a7c2c 100%);
                color: white;
                padding: 8px 24px;
                border-radius: 50px;
                font-size: 12px;
                font-weight: 700;
                letter-spacing: 2px;
                text-transform: uppercase;
                margin-bottom: 20px;
                box-shadow: 0 4px 15px rgba(41, 131, 23, 0.3);
            }

            .home-news-title {
                font-size: 48px;
                font-weight: 800;
                color: #1a1a1a;
                margin-bottom: 15px;
            }

            .home-news-subtitle {
                font-size: 18px;
                color: #666;
                max-width: 600px;
                margin: 0 auto;
            }

            .home-news-grid {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 30px;
                margin-bottom: 40px;
                  background: #e5f7dd;
            }

            /* Featured News Card */
            .home-featured-card {
                position: relative;
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                transition: all 0.4s ease;
                cursor: pointer;
                height: 500px;
            }

            .home-featured-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            }

            .home-featured-image {
                width: 100%;
                height: 60%;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .home-featured-card:hover .featured-image {
                transform: scale(1.1);
            }

            .home-featured-content {
                padding: 30px;
                height: 40%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .home-news-category {
                display: inline-block;
                background: #7ff550;
                color: #1a1a1a;
                padding: 6px 16px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 700;
                text-transform: uppercase;
                margin-bottom: 12px;
            }

            .home-news-date {
                color: #999;
                font-size: 14px;
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 12px;
            }

            .home-featured-title {
                font-size: 28px;
                font-weight: 700;
                color: #1a1a1a;
                margin-bottom: 12px;
                line-height: 1.3;
                transition: color 0.3s ease;
            }

            .home-featured-card:hover .featured-title {
                color: #298317;
            }

            .home-featured-excerpt {
                font-size: 15px;
                color: #666;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .home-read-more {
                color: #298317;
                font-weight: 600;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                transition: all 0.3s ease;
            }

            .home-read-more:hover {
                gap: 12px;
                color: #4a7c2c;
            }

            /* Side News Cards */
            .home-side-news {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .home-news-card {
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
                cursor: pointer;
                display: flex;
                height: 160px;
            }

            .home-news-card:hover {
                transform: translateX(10px);
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            }

            .home-news-card-image {
                width: 40%;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .home-news-card:hover .news-card-image {
                transform: scale(1.15);
            }

            .home-news-card-content {
                padding: 20px;
                width: 60%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .home-news-card-title {
                font-size: 16px;
                font-weight: 700;
                color: #1a1a1a;
                margin-bottom: 8px;
                line-height: 1.4;
                transition: color 0.3s ease;
            }

            .home-news-card:hover .home-news-card-title {
                color: #298317;
            }

            .home-news-card-date {
                color: #999;
                font-size: 13px;
            }

            /* Latest Updates Section */
            .home-latest-updates {
                margin-top: 40px;
            }

            .home-updates-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 30px;
            }

            .home-updates-title {
                font-size: 32px;
                font-weight: 700;
                color: #1a1a1a;
            }

            .home-view-all-btn {
                background: linear-gradient(135deg, #298317 0%, #4a7c2c 100%);
                color: white;
                padding: 12px 30px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 14px;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(41, 131, 23, 0.3);
                margin-bottom: 120px;
            }

            .home-view-all-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(41, 131, 23, 0.4);
            }

            .home-updates-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }

            .home-update-card {
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.4s ease;
                cursor: pointer;
            }

            .home-update-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .home-update-card-image {
                width: 100%;
                height: 180px;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .home-update-card:hover .update-card-image {
                transform: scale(1.1);
            }

            .home-update-card-content {
                padding: 20px;
            }

            .home-update-card-date {
                color: #999;
                font-size: 12px;
                margin-bottom: 8px;
            }

            .home-update-card-title {
                font-size: 16px;
                font-weight: 700;
                color: #1a1a1a;
                line-height: 1.4;
                transition: color 0.3s ease;
            }

            .home-update-card:hover .update-card-title {
                color: #298317;
            }

            @media (max-width: 1024px) {
                .home-news-grid {
                    grid-template-columns: 1fr;
                }

                .home-updates-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 768px) {
                .home-news-title {
                    font-size: 36px;
                }

                .home-updates-grid {
                    grid-template-columns: 1fr;
                }

                .home-news-card {
                    flex-direction: column;
                    height: auto;
                }

                .home-news-card-image {
                    width: 100%;
                    height: 150px;
                }

                .home-news-card-content {
                    width: 100%;
                }

                .home-updates-header {
                    flex-direction: column;
                    gap: 20px;
                    text-align: center;
                }
            }

    .emergency-banner {
        background: linear-gradient(rgba(3, 104, 28, 0.5)), url('ambulance.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 40px 20px;
        position: relative;
    }
    .emergency-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 0, 0.50);
    z-index: 0;
    }

            .emergency-container {
                max-width: 1400px;
                margin: 0 auto;
            }

            .emergency-content {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 40px;
            }

            .emergency-left {
                flex: 1;
            }

            .emergency-label {
                font-size: 13px;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: #7ff550;
                margin-bottom: 12px;
                font-weight: 600;
            }

            .emergency-title {
                font-size: 36px;
                font-weight: 700;
                color: white;
                margin-bottom: 8px;
            }

            .emergency-subtitle {
                font-size: 16px;
                color: rgba(255, 255, 255, 0.9);
            }

            .emergency-right {
                display: flex;
                align-items: center;
                gap: 25px;
            }

            .hotline-box {
                background: white;
                padding: 20px 35px;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            .hotline-label {
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: #666;
                margin-bottom: 5px;
                font-weight: 600;
            }

            .hotline-number {
                font-size: 32px;
                font-weight: 800;
                color: #298317;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .call-btn {
                background: white;
                color: #298317;
                padding: 16px 35px;
                border-radius: 8px;
                text-decoration: none;
                font-weight: 700;
                font-size: 16px;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                border: 2px solid white;
                transition: all 0.3s ease;
                margin-top: 20px;
            }

            .call-btn:hover {
                background: #298317;
                color: white;
                border-color: white;
            }

            @media (max-width: 768px) {
                .emergency-content {
                    flex-direction: column;
                    text-align: center;
                }

                .emergency-title {
                    font-size: 28px;
                }

                .emergency-right {
                    flex-direction: column;
                    width: 100%;
                }

                .hotline-box {
                    width: 100%;
                    text-align: center;
                }

                .hotline-number {
                    justify-content: center;
                    font-size: 28px;
                }

                .call-btn {
                    width: 100%;
                    justify-content: center;
                }
            }

    
            
    /*footer*/
    .footer {
        background: #1b5e20;
        color: white;
        margin-top: 0px;
        padding-top: 28px;
        margin-bottom: 0px;
        padding-bottom: 30px;
        font-family: 'Oswald', sans-serif;
        border-top: 2px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(6px);
        position: relative;
        z-index: 5;
        
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 100px;
        max-width: 1200px;
         padding: 0 40px 60px 40px;
        
    }

    .footer-column {
        flex: 1;
        min-width: 220px;
        margin-left: 0;
        
    }

    .footer h3 {
        font-size: 20px;
        margin-bottom: 15px;
        
        text-align: left;
        display: flex;
        justify-content: flex-start;
    }

    .footer p, .footer a {
        font-size: 16px;
        margin-bottom: 8px;
        color: white;
        display: block;
        text-decoration: none;
        text-align: left;
        
        
    }

    .footer a:hover {
        color: #9dedad;
    }

    .footer-logo {
        width: 80px;
        display: flex;
        justify-content: flex-start;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        font-size: 14px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* About Logo */
    .about-logo {
        max-width: 130px;
        margin: 20px auto 0;
    }

    /* ABOUT HERO SECTION (with JS parallax) */
    .about-hero {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 20px;
        overflow: hidden;
        border-bottom: 2px solid #0596686c;
    }

    .about-hero-bg {
        position: absolute;
        inset: 0;
        background: url("picture for about serction.png") center/cover no-repeat;
        filter: blur(1px) brightness(0.55);
        width: auto;
        height: 100%;
        background-position: -10px -10px;
        background-size: 1600px;
        z-index: -1;
        transition: transform 0.2s ease-out;
    }

    .about-container-about {
        max-width: 1100px;
        margin: auto;
        text-align: center;
    }

    .about-container-about h2 {
        font-size: 50px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 25px;
    }

    .about-container-about h2::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 75px;
    border-radius: 2px;
}
    .about-container-about p {
        font-size: 24px;
        color: #ffffff;
        max-width: 900px;
        margin: auto;
        line-height: 1.6;
    }


/* ========================================
   COMPLETE FIXED CSS
   Vision & Mission + History Sections
   ======================================== */

/* ==========================================
   VISION & MISSION SECTION (INTEGRATED)
   ========================================== */

.vision-mission-section {
    background: rgba(15, 126, 43, 0.1);
    padding: 80px 20px;
    margin: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid rgba(20, 122, 20, 0.1);
    border-bottom: 1px solid rgba(20, 122, 20, 0.1);
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
  rgba(15, 126, 43, 0.1);
    pointer-events: none;
    z-index: 0;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Title inside section */
.vm-container > h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 60px 0;
    color: #1b5e20;
    position: relative;
    padding-bottom: 20px;
}

.vm-container > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 2px;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(20, 122, 20, 0.1);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(15, 126, 43, 0.1);
    transition: left 0.6s ease;
}

.vm-card:hover::before {
    left: 100%;
}

.vm-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(20, 122, 20, 0.2);
    border-color: #7ff550;
}

.vm-card h3 {
    color: #1b5e20;
    font-size: 42px;
    margin-bottom: 25px;
    margin-top: 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.vm-card h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 75px;
    border-radius: 2px;
}

.vm-card p {
    color: #333333;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 35px;
    font-weight: 400;
}

.vm-card h3 span:first-child {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(34, 197, 94, 0.15));
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

.vm-card:hover h3 span:first-child {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.25), rgba(34, 197, 94, 0.25));
}

.vm-card.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.vm-card.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.vm-card.reveal.delay-1 {
    transition-delay: 0.2s;
}

.vm-card.reveal.delay-2 {
    transition-delay: 0.4s;
}

/* ==========================================
   HISTORY SECTION (FIXED)
   ========================================== */

.history-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #596e59;
    overflow: hidden;
    background: rgba(15, 126, 43, 0.1);
    margin: 0;
}

.history-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    backdrop-filter: blur(2px);
    z-index: 0;
}

.history-content {
    max-width: 1400px;
    margin: 0px auto 60px;
    padding: 20px 50px;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    color: #596e59;
    background:#f5fcf5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.history-content h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 18px;
    margin-top: 0;
    text-transform: uppercase;
    color: #0f8a38;
    text-shadow: none;
    text-align: center;
}

.history-content h2::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 75px;
    border-radius: 2px;
}

.history-content p,
.history-description {
    font-size: 18px;
    line-height: 1.7;
    color: #596e59;
    text-align: justify;
    margin-bottom: 15px;
}

.timeline-title {
    position: relative;
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 42px;
    font-weight: 800;
    color: #0f8a38;
    text-shadow: none;
    display: inline-block;
    z-index: 5;
}

.timeline-title::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 75px;
    border-radius: 2px;
} 

.timeline-wrapper {
    padding-top: 40px;
    max-width: 1050px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    padding-bottom: 60px;
}

.timeline-years {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.year-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    color: #0f8a38;
}

.year-btn:hover {
    background: #2e9e32;
    color: white;
    border-color: #2e9e32;
}

.year-btn.active {
    background: #3dbb41;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-color: #3dbb41;
}

.timeline-content {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.timeline-slide {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: 0.5s ease;
}

.timeline-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.timeline-slide img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.timeline-slide h3 {
    margin-top: 20px;
    color: #107a15;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.timeline-slide p {
    font-size: 18px;
    line-height: 1.6;
    color: #596e59;
    text-align: center;
    max-width: 800px;
    margin: 15px auto 0;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    /* Vision & Mission */
    .vision-mission-section {
        padding: 60px 20px;
    }
    
    .vm-container > h2 {
        font-size: 32px;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .vm-container > h2::after {
        width: 80px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vm-card {
        padding: 35px 30px;
    }
    
    .vm-card h3 {
        font-size: 36px;
    }
    
    .vm-card p {
        font-size: 16px;
    }

    /* History */
    .history-section {
        padding: 60px 20px;
    }

    .history-content {
        padding: 30px 25px;
        margin-bottom: 40px;
    }

    .history-content h2 {
        font-size: 32px;
    }

    .history-description {
        font-size: 16px;
    }

    .timeline-title {
        font-size: 32px;
        padding: 12px 25px;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .timeline-slide img {
        max-height: 250px;
    }

    .timeline-slide h3 {
        font-size: 24px;
    }

    .timeline-slide p {
        font-size: 16px;
    }

    .year-btn {
        font-size: 16px;
        padding: 10px 16px;
    }

    .timeline-wrapper {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .vm-container > h2 {
        font-size: 28px;
    }
    
    .vm-card h3 {
        font-size: 32px;
        flex-direction: column;
    }
    
    .vm-card h3::after {
        margin-top: 90px;
    }
}

    #page-transition {
    position: fixed;
    inset: 0;
    background: #064c10; /* change to #064c10 for Velazco green fade */
    opacity: 0;
    pointer-events: none;
    z-index: 999999;
    transition: opacity .5s ease-in-out;
    }

    #page-transition.active {
    opacity: 1;
    }


    .history-description{
        color:#596e59;
      font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    }



    /*Contact*/
    /* Contact Section Only */

    .location-title {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    background: rgba(255, 255, 255, 0.096);
    backdrop-filter: blur(8px);
    padding: 12px 35px;
    border-radius: 12px;
    margin: 0 auto 30px;
    display: inline-block;
    text-align: center;
    position: relative;      /* makes it stick while scrolling */
    top: 80px;               /* height of your fixed navbar */
    z-index: 999;            /* stay above other elements */
    font-family: 'Oswald';
    }

    .contact-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1100px;
    margin: auto;
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    background: #ffffff;
    border: 2px solid rgba(6, 76, 16, 0.25);
    margin-bottom: 50px ;
    font-weight: bold;
    text-decoration: none;
    padding-top: 0;
    
    }


    .contact-info-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 0px 20px;
    background: #f5fff5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    text-decoration: none;
    
    
    }

    .contact-info-box h3 {
    margin-top: 20;
    padding-top: 0;
    margin-bottom: 20;
    
    
    }

    .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    }

    .contact-item i {
    color: #064c10;
    font-size: 22px;
    line-height: 1.2;
    flex-shrink: 0;
    font-weight: bold;
    text-decoration: none;
    }

    .contact-text {
    font-size: 16px;
    line-height: 1.5;
    font-family: bold;
    
    }

    .map-container {
    flex: 2;
    min-width: 300px;
    height: 750px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    }

    /* Mobile */
    @media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        align-items: center;
    }

    .map-container {
        width: 100%;
        height: 20px;
        margin-top: 20px;
    }

    .contact-info-box {
        max-width: 100%;
        padding: 30px 20px;
    }
    }

    .contact-section {
    position: relative;
    padding: 120px 5% 40px; /* space for navbar */
    overflow: hidden;
    background: #d3ffd33b; /* fallback color */
    margin: 50px 50 px auto;
    padding-top: 20px;
    }

    .contact-background {
    position: absolute;
    inset: 0;                     /* fills the section */
    filter: blur(2px) brightness(0.6); /* blur and dim */
    z-index: 0;                    /* behind all content */
    }

    .contact-card,
    .location-title {
    position: relative;  /* bring above the blurred background */
    z-index: 1;
    }
    .contact-info-box a,
    .contact-info-box a:visited,
    .contact-info-box a:active {
    text-decoration: none !important;
    color: inherit !important;
    }

    .contact-info-box a:hover {
    text-decoration: none !important;
    color: #2a7c4e !important; /* optional hover color */
    }


    /* services */
    .tabbed-services-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .tabbed-services-subtitle {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #298317;
        margin-bottom: 15px;
        font-weight: 600;
    }
    .tabbed-services {
        max-width: 1200px;
        margin: 150px auto 100px;
        padding: 0 20px;
    }

    .tabs-scroll-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
        
    }

    .tabs-scroll {
        flex: 1;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    /* Hide scrollbar for Chrome/Safari */
    .tabs-scroll::-webkit-scrollbar {
        display: none;
    }

    /* Scroll arrows */
    .scroll-arrow {
        background: linear-gradient(135deg, #298317 0%, #4a7c2c 100%);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(41, 131, 23, 0.3);
        z-index: 10;
    }

    .scroll-arrow:hover {
        background: linear-gradient(135deg, #4a7c2c 0%, #298317 100%);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(41, 131, 23, 0.5);
    }

    .scroll-arrow:active {
        transform: scale(0.95);
    }

    /* Hide arrows when can't scroll */
    .scroll-arrow.hidden {
        opacity: 0;
        pointer-events: none;
    }

    /* Tabs container */
    .tabs {
        display: flex;
        gap: 10px;
        border-bottom: 2px solid #e5e7eb;
        padding-bottom: 2px;
        min-width: max-content; /* Ensures tabs don't wrap */
    }

    /* Responsive: Hide arrows on mobile if tabs fit */
    @media (max-width: 768px) {
        .scroll-arrow {
            width: 35px;
            height: 35px;
            font-size: 20px;
        }
    }

    .tab-button {
        padding: 15px 30px;
        background: white;
        border: none;
        border-bottom: 3px solid transparent;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #666;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .tab-button:hover {
        color: #298317;
        background: #f9fafb;
    }

    .tab-button.active {
        color: #298317;
        border-bottom-color: #298317;
    }

    /* OPTION 1: Fixed Height Container - Keeps section static */
    .tab-content-wrapper {
        min-height: 600px; /* Prevents section from collapsing/jumping */
        position: relative;
    }

    .tab-content {

        display: none; /* Hide all tabs by default */
        width: 100%;

    }

    .tab-content.active {
        display: block;
        opacity: 1;
        animation: fadeIn 0.5s ease;
    }


    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .tab-panel {
        background: white;
    
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        
        margin: 20px auto 0;
        padding: 0 20px;
        
        max-width: 1000px;
        width: 100%;
    

    }

    #tab1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .tab-panel h3 {
        font-size: 28px;
        color: #298317;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .tab-panel p {
        color: #555;
        line-height: 1.8;
        margin-bottom: 20px;
        display: flex;
        text-align: justify;
        font-size: 18px;
    }



    .image-tab-container {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 600px;
        width: 100%;
        margin:0 auto;
    }

    .image-tab-wrapper {
        border: 8px solid #4a5568;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin: 0 auto; /* This centers the wrapper */
    }

    .image-tab-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }



    .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
    align-items: center;
}

.feature-item {
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-item span {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 18px;
    color: #666;
    margin: 0;
    text-align: center;
}

    @media (max-width: 768px) {
        .tabs {
            flex-wrap: wrap;
        }
        
        .tab-button {
            flex: 1 1 45%;
        }
    }



    /*doctors page*/
    .container-doctor {
                max-width: 1400px;
                margin: 0 auto;
                background-color: white;
                padding: 40px;
                border-radius: 8px;
                margin-top: 50px ;
                margin-bottom: 20px;
            }

            .header-doctor {
                margin-bottom: 10px;
                font-family: "Oswald";
            }

            .header-subtitle-doctor {
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: #333;
                margin-top: 20px;
                margin-bottom:0;
                font-weight: 600;
                font-family: "Oswald";
            }

            .header-title-doctor {
                font-size: 48px;
                font-weight: 700;
                font-family: "Oswald";
                
            }

            .header-title-doctor .our {
                color: #2d5016;
            }

            .header-title-doctor .doctors {
                color: #7ff550;
            }

            .divider-doctor {
                width: 1320px;
                height: 3px;
                background-color: #55b469;
                margin-top: 20px;
                left: 50%;
                margin-bottom: 20px;

            }

            .filters {
                display: flex;
                gap: 15px;
                margin-bottom: 30px;
                flex-wrap: wrap;
                font-family: "Oswald";
            }

            .filter-input {
                flex: 1;
                min-width: 200px;
                padding: 12px 15px;
                border: 1px solid #d1d5db;
                border-radius: 4px;
                font-size: 14px;
                color: #6b7280;
                font-family: "Oswald";
            }

            .filter-input:focus {
                outline: none;
                border-color: #2d5016;
            }

            .clear-btn {
                background-color: #2d5016;
                color: white;
                border: none;
                padding: 12px 40px;
                border-radius: 4px;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                text-transform: uppercase;
                transition: background-color 0.3s;
                font-family: "Oswald";
            }

            .clear-btn:hover {
                background-color: #7ff550;
            }

            .doctors-table {
                width: 100%;
                border-collapse: collapse;
                background-color: white;
            }

            .doctors-table thead {
                background-color: #f9fafb;
            }

            .doctors-table th {
                padding: 15px;
                text-align: left;
                font-weight: 600;
                font-size: 14px;
                color: #111827;
                border-bottom: 2px solid #e5e7eb;
                font-family: "Oswald";
            }

            .doctors-table td {
                padding: 20px 15px;
                border-bottom: 1px solid #e5e7eb;
                vertical-align: middle;
            }

            .doctor-row {
                transition: background-color 0.2s;
            }

            .doctor-row:hover {
                background-color: #f9fafb;
            }

            .expand-cell {
                width: 40px;
                text-align: center;
            }

            .profile-cell {
                width: 100px;
            }

            .profile-img {
                width: 70px;
                height: 70px;
                border-radius: 8px;
                object-fit: cover;
            }

            .placeholder-img {
                width: 70px;
                height: 70px;
                border-radius: 8px;
                background-color: #e5e7eb;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #9ca3af;
                font-size: 24px;
            }

            .physician-name {
                font-weight: 600;
                color: #111827;
                font-size: 15px;
                font-family: "Oswald";
            }

            .specialization-cell {
                color: #4b5563;
                font-family: "Oswald";
            }

            .schedule-cell {
                color: #4b5563;
                font-size: 14px;
                line-height: 1.6;
                font-family: "Oswald";
            }

            .contact-cell {
                color: #4b5563;
                font-weight: 500;
                font-family: "Oswald";
            }

            .secretary-cell {
                color: #4b5563;
                font-family: "Oswald";
            }

            .expand-btn {
                background: none;
                border: none;
                cursor: pointer;
                padding: 5px;
                color: #0f7e2b;
                font-size: 20px;
                font-weight: bold;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .expand-btn:hover {
                color: #111827;
                background-color: #f3f4f6;
                border-radius: 4px;
            }

            .expanded-row {
                display: none;
            }

            .expanded-row.active {
                display: table-row;
            }

            .expanded-row td {
                background-color: #f9fafb;
                padding: 15px 20px;
                border-bottom: 2px solid #e5e7eb;
            }

            .status-content {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .status-label {
                font-weight: 600;
                color: #374151;
            }

            .status-value {
                color: #059669;
                font-weight: 500;
            }

            @media (max-width: 768px) {
                .header-title {
                    font-size: 36px;
                }

                .filters {
                    flex-direction: column;
                }

                .doctors-table {
                    font-size: 12px;
                }

                .doctors-table th,
                .doctors-table td {
                    padding: 10px;
                }
            }

            section{
            margin: 0;
            }



    /*News Section*/


    /* HERO */
    .news-hero {
        max-width: 1100px;
        margin: 40px auto 40px;
        padding: 0 10px;
    }

    .breadcrumb {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
    }

    .breadcrumb a {
        color: #2d6a2d;
        text-decoration: none;
    }

    .article-title {
        font-size: 48px;
        color: #064c10;
        margin-bottom: 5px;
    }

    .article-meta {
        color: #777;
        margin-bottom: 25px;
    }

    .article-meta span {
        color: #145d1b;
        font-weight: bold;
    }

    .news-hero-image {
        width: 100%;
        border-radius: 14px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .news-hero-image img {
        width: 100%;
        display: block;
        border-radius: 14px;
    }

    /* LAYOUT */
    .news-container {
        max-width: 1100px;
        margin: auto;
        display: flex;
        gap: 35px;
        padding: 0 20px 60px;
    }

    /* ARTICLE CONTENT */
    .news-content {
        flex: 3;
        background: #fff;
        padding: 35px;
        border-radius: 14px;
        box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    }

    .news-content p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .news-content h2 {
        font-size: 28px;
        color: #064c10;
        margin-top: 30px;
    }

    .news-content ul {
        margin-left: 20px;
        font-size: 17px;
    }

    blockquote {
        background: #e7f5e7;
        border-left: 5px solid #2d6a2d;
        padding: 18px 25px;
        font-style: italic;
        margin: 25px 0;
        border-radius: 8px;
        color: #064c10;
    }

    /* SIDEBAR */
    .sidebar {
        flex: 1.2;
    }

    .sidebar h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #064c10;
    }

    .related-post {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fff;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 12px;
        text-decoration: none;
        color: #064c10;
        transition: 0.2s;
        box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    }

    .related-post:hover {
        transform: translateX(5px);
        background: #e5f8e5;
    }

    .related-post img {
        width: 65px;
        height: 65px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* RESPONSIVE */
    @media screen and (max-width: 900px) {
        .news-container {
            flex-direction: column;
        }

        .sidebar {
            order: -1;
        }
    }



    /* HERO */
    .news-hero-section {
        margin-top: 0;
        padding-top: 80px;
        height: 360px;
        background: linear-gradient(135deg, #2d662d 0%, #1b5e20 100%);
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        color: white;
        box-sizing: border-box;
    }

    .news-hero-overlay {
        display: none;
    }

    .news-main-title {
        font-size: 52px;
        font-weight: 800;
        z-index: 2;
    }

    .news-subtitle {
        font-size: 20px;
        margin-top: 10px;
        z-index: 2;
    }

    /* LATEST ARTICLES */
    .news-grid-section {
        max-width: 1100px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .news-section-heading {
        font-size: 36px;
        color:#2d662d;
        margin-bottom: 25px;
        text-align: center;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* CARD */
    .news-card {
        background: white;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 18px rgba(0,0,0,0.1);
        text-decoration: none;
        color: #064c10;
        transition: 0.25s;
    }

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.16);
    }

    .news-image img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }

    .news-info {
        padding: 20px;
    }

    .news-info h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .news-date {
        font-size: 14px;
        color: #777;
        margin-bottom: 12px;
    }

    .news-summary {
        font-size: 15px;
        color: #444;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .read-more {
        font-weight: bold;
        color: #2a7f2a;
    }

    /* RESPONSIVE */
    @media screen and (max-width: 800px) {
        .news-grid {
            grid-template-columns: 1fr;
        }

        .news-main-title {
            font-size: 40px;
        }
    }

    /*news article page*/
    /* ============ NEWS ARTICLE PAGE STYLES ============ */

    /* Hero Section */
    .news-hero-articlepage {
    max-width: 1100px;
    margin: 100px auto 40px;
    padding: 0 20px;
    }

    .breadcrumb-articlepage {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    }

    .breadcrumb-articlepage  a {
    color: #2d6a2d;
    text-decoration: none;
    }

    .breadcrumb-articlepage  a:hover {
    text-decoration: underline;
    }

    .article-title-articlepage  {
    font-size: 42px;
    color: #064c10;
    margin-bottom: 8px;
    line-height: 1.2;
    }

    .article-meta-articlepage  {
    color: #777;
    margin-bottom: 20px;
    font-size: 16px;
    }

    .article-meta-articlepage  span {
    color: #145d1b;
    font-weight: bold;
    }

    .news-hero-image-articlepage  {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    }

    .news-hero-image-articlepage  img {
    width: 100%;
    display: block;
    border-radius: 14px;
    height: 400px;
    object-fit: cover;
    background: #e0e0e0;
    }

    /* Main Container */
    .news-container-articlepage  {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 35px;
    padding: 0 20px 60px;
    }

    /* Article Content */
    .news-content-articlepage  {
    flex: 3;
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    }

    .news-content-articlepage  p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
    }

    .news-content-articlepage  h2 {
    font-size: 26px;
    color: #064c10;
    margin: 30px 0 15px;
    }

    .news-content-articlepage  ul {
    margin-left: 20px;
    font-size: 17px;
    }

    .news-content-articlepage  li {
    margin-bottom: 10px;
    line-height: 1.6;
    }

    .news-content-articlepage  blockquote {
    background: #e7f5e7;
    border-left: 5px solid #2d6a2d;
    padding: 18px 25px;
    font-style: italic;
    margin: 25px 0;
    border-radius: 8px;
    color: #064c10;
    font-size: 18px;
    }

    /* Sidebar */
    .sidebar-articlepage  {
    flex: 1.2;
    }

    .sidebar-articlepage  h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #064c10;
    padding-bottom: 10px;
    border-bottom: 2px solid #2d6a2d;
    }

    #related-articles-container-articlepage  {
    display: flex;
    flex-direction: column;
    gap: 15px;
    }

    /* Related Post Cards */
    .related-post {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #064c10;
    transition: all 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    }

    .related-poste:hover {
    transform: translateX(5px);
    background: #e5f8e5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .related-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    background: #ddd;
    flex-shrink: 0;
    }

    .related-post-info {
    flex: 1;
    }

    .related-post-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    color: #064c10;
    }

    .related-post-date {
    font-size: 12px;
    color: #888;
    }

    .related-post-category {
    font-size: 11px;
    color: #2d6a2d;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
    }

    /* Loading State */
    .loading {
    text-align: center;
    padding: 30px;
    color: #666;
    font-style: italic;
    }

    /* No Articles State */
    .no-articles {
    text-align: center;
    padding: 20px;
    color: #888;
    background: #f9f9f9;
    border-radius: 8px;
    }

    /* Responsive */
    @media (max-width: 900px) {
    .news-container-articlepage {
        flex-direction: column;
    }

    .sidebar-articlepage {
        order: -1;
    }

    .article-title-articlepage {
        font-size: 32px;
    }

    .news-hero-image-articlepage img {
        height: 250px;
    }

    .news-content-articlepage {
        padding: 25px;
    }
    }

    @media (max-width: 600px) {
    .news-hero-articlepage {
        margin-top: 80px;
    }

    .article-title-articlepage {
        font-size: 26px;
    }

    .news-content-articlepage p {
        font-size: 16px;
    }

    .related-post {
        padding: 10px;
    }

    .related-post img {
        width: 60px;
        height: 60px;
    }
    }


    /* Existing form and message styles */
    

            .inquiry-section {
                position: relative;
                padding: 3rem 5%;
                min-height: 400px;
                background-color: #d3ffd33b;
                background-image: 
                    linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                    linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
                    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
                    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
                background-size: 20px 20px;
                background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            }

            .inquiry-background {
                display: none;
            }

            .inquiry-form-container {
                position: relative;
                z-index: 1;
                max-width: 2000px;
                margin: 50 auto;
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
                margin-bottom:0;
            }

    .inquiry-form-container h2 { 
        color: #3cb431; 
        margin-bottom: 10px; 
        font-size: 28px; 
    }

    .inquiry-form-container p { 
        color: #666; 
        margin-bottom: 30px; 
    }

    .form-group { 
        margin-bottom: 20px; 
    }

    .form-group label { 
        display: block; 
        margin-bottom: 30px; 
        margin-top: 30px;
        color: #333; 
        font-weight: 500; 
        text-align: left;
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%; 
        padding: 20px; 
        border: 2px solid #e0e0e0; 
        border-radius: 6px; 
        font-size: 14px; 
        font-family: inherit; 
        transition: border-color 0.3s; 
        box-sizing: border-box; 
        }

    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
        outline: none; 
        border-color: #1e7016; 
    }

    .form-group textarea { 
        min-height: 120px; 
        resize: vertical; 
    }

    .submit-btn { 
        background: #3cb431; 
        color: white; 
        padding: 14px 40px; 
        border: none; 
        border-radius: 6px; 
        font-size: 16px; 
        font-weight: 600; 
        cursor: pointer; 
        transition: background 0.3s; width: 100%; 
    }

    .submit-btn:hover { 
        background: #1e7016; 
    }

    .submit-btn:disabled { 
        background: #ccc; 
        cursor: not-allowed; 
    }
    .message-box { 
        padding: 15px; 
        border-radius: 6px; 
        margin-bottom: 20px; 
        display: none; 
    }

    .message-box.success { 
        background: #d4edda; 
        border: 1px solid #c3e6cb; 
        color: #155724; 
        display: block; 
    }

    .message-box.error { 
        background: #f8d7da;
        border: 1px solid #f5c6cb; 
        color: #721c24; 
        display: block; }

    @media (max-width: 768px) { 
        .form-row {
        grid-template-columns: 1fr; 
        } 
        .inquiry-form-container { 
            padding: 25px; } 
    }

    .about-section-abouts{
        background: rgba(15, 126, 43, 0.1) !important;
        width: 100% !important;
        display: block !important;
        padding: 60px 20px;
        margin: 0;
        border: none !important;
    }

    .section-title-about{
        font-size: 38px;
        color: #064c10;
        font-weight: 800;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .about-grid-about {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .about-card-about { 
        background: #ffffff;
        padding: 30px;
        border-radius: 14px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.07);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .about-card-about:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .about-card-about .icon {
        font-size: 42px;
        color: #1d8a3b;
        margin-bottom: 15px;
    }

    .about-card-about h3 {
        font-size: 20px;
        color: #064c10;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .about-card-about p {
        color: #555;
        line-height: 1.6;
        font-size: 15px;
    }

    /*cert list in about */
    .cert-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat( 2,1fr);
        gap: 20px;
        font-family: Arial, sans-serif;
    }

    /* List items as cards */
    .cert-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: linear-gradient(135deg, #f0fff4, #e6fff0);
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        color: #064c10;
        font-size: 18px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        cursor: default;
    }

    /* Certificate images */
    .cert-list li img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #0f7e2b;
        flex-shrink: 0;
    }

    /* Hover effect for cards */
    .cert-list li:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        background: linear-gradient(135deg, #e6fff0, #d0ffd9);
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
        .cert-list li {
            font-size: 16px;
            padding: 15px;
            gap: 12px;
        }
        .cert-list li img {
            width: 40px;
            height: 40px;
        }
    }

            .header {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                padding: 80px 20px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .header::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -10%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle, rgba(187, 255, 0, 0.1) 0%, transparent 70%);
                border-radius: 50%;
            }

            .header h1 {
                font-size: 48px;
                font-weight: 700;
                margin-bottom: 15px;
                position: relative;
                z-index: 1;
            }

            .header p {
                font-size: 20px;
                opacity: 0.95;
                position: relative;
                z-index: 1;
            }

            /* Main Content */
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 60px 20px;
            }

            .intro {
                text-align: center;
                margin-bottom: 60px;
            }

            .intro h2 {
                font-size: 36px;
                color: #147a14;
                margin-bottom: 20px;
            }

            .intro p {
                font-size: 18px;
                color: #555;
                max-width: 800px;
                margin: 0 auto;
            }



            /* Patient Guide Sections */
            .guide-section {
                margin-bottom: 60px;
            }

            .guide-section h3 {
                font-size: 32px;
                color: #147a14;
                margin-bottom: 30px;
                padding-bottom: 15px;
                border-bottom: 3px solid #119e04;
            }

            .steps-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(380px, 3fr));
                gap: 30px;
                margin-top: 40px;
            }

            .step-card {
                background: white;
                border: 2px solid #e0e0e0;
                border-radius: 12px;
                padding: 40px;
                transition: all 0.3s ease;
                position: relative;
            }

            .step-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(20, 122, 20, 0.2);
                border-color: #119e04;
            }

            .step-number {
                position: absolute;
                top: -20px;
                left: 30px;
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                font-weight: 700;
                box-shadow: 0 4px 15px rgba(20, 122, 20, 0.3);
            }

            .step-card h4 {
                font-size: 22px;
                color: #147a14;
                margin-bottom: 15px;
                margin-top: 20px;
            }

            .step-card p {
                color: #666;
                line-height: 1.7;
            }

            /* Services List */
            .services-list {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1 fr));
                gap: 20px;
                margin-top: 30px;
            }

            .service-item {
                background: #f8f9fa;
                padding: 20px;
                border-radius: 8px;
                border-left: 4px solid #119e04;
                transition: all 0.3s ease;
            }

            .service-item:hover {
                background: #e8f5e9;
                transform: translateX(5px);
            }

            .service-item h5 {
                color: #147a14;
                font-size: 18px;
                margin-bottom: 8px;
            }

            .service-item p {
                color: #666;
                font-size: 14px;
            }

            /* Info Box */
            .info-box {
                background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
                border-left: 5px solid #147a14;
                padding: 30px;
                border-radius: 8px;
                margin: 40px 0;
            }

            .info-box h4 {
                color: #147a14;
                font-size: 24px;
                margin-bottom: 15px;
                text-align: left;
            }

            .info-box ul, .info-box ol {
                padding-left: 20px;
            }

            .info-box li {
                padding: 10px 0;
                color: #333;
                line-height: 1.7;
                text-align: left;
            }
    
    
            /* Contact Section */
            .contact-section-patientguide {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                padding: 60px 20px;
                text-align: center;
                border-radius: 12px;
                margin-top: 60px;
                justify-content: center;
            }

            .contact-section-patientguide  h3 {
                font-size: 32px;
                margin-bottom: 20px;
                font-family: "Oswald", sans-serif;
            }

            .contact-section-patientguide  p {
                font-size: 18px;
                margin-bottom: 30px;
                opacity: 0.95;
                font-family: "Oswald", sans-serif;
            }

            .contact-info-patientguide  {
                display: flex;
                justify-content: center;
                gap: 50px;
                flex-wrap: wrap;
                margin-top: 30px;
            }

            .contact-item-patientguide  {
                text-align: center;
            }

            .contact-item-patientguide  h4 {
                font-size: 20px;
                margin-bottom: 10px;
                opacity: 0.9;
                font-family: "Oswald", sans-serif;
            }

            .contact-item-patientguide  p {
                font-size: 21px;
                font-weight: 700;
                font-family: "Oswald", sans-serif;
            }

            /* Button */
            .btn-patientguide  {
                display: inline-block;
                padding: 15px 40px;
                background-color: white;
                color: #147a14;
                text-decoration: none;
                border-radius: 8px;
                font-weight: 700;
                font-size: 16px;
                transition: all 0.3s ease;
                margin-top: 20px;
                font-family: "Oswald", sans-serif;
            }

            .btn-patientguide:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            }

            /* Responsive */
            @media (max-width: 768px) {
                .header h1 {
                    font-size: 32px;
                }

                .header p {
                    font-size: 16px;
                }

                .intro h2 {
                    font-size: 28px;
                }

                .guide-section h3 {
                    font-size: 24px;
                }

                .steps-grid {
                    grid-template-columns: 1fr;
                }

                .contact-info {
                    flex-direction: column;
                    gap: 30px;
                }

                .content-box {
                    padding: 25px;
                }
            }


            .tabbed-section1 {
                background: white;
                border-radius: 10px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                margin: 60px 0;
                min-height: 60px;
                border-spacing:0;
                
            }

            
            .tabbed-section1 h4{
                color: #147a14;
                font-size: 28px;
                margin-bottom: 0;
                padding-bottom: 10px;
                border-bottom: 3px solid #119e04;
                font-family: "Oswald", sans-serif;
            }


            .tab-buttons1 {
                display: flex;
                background: #f8f9fa;
                border-bottom: 3px solid #119e04;
                flex-wrap: wrap;
                margin-bottom: 15px;
            }

            .tab-content1 h4 {
            text-align: center;
            }

            .tab-button1 {
                flex: 1;
                min-width: 200px;
                min-height: 60px;
                padding: 20px 30px;
                background: transparent;
                border: none;
                color: #666;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                border-bottom: 3px solid transparent;
                margin-bottom: -3px;
                font-family: "Oswald", sans-serif;
                margin:0;
            }

            .tab-button1:hover {
                background: rgba(20, 122, 20, 0.05);
                color: #147a14;
            }

            .tab-button1.active {
                background: rgba(20, 122, 20, 0.05);
                color: #147a14;
            
            }
    

            .tab-content1 {
                display: none;
                padding: 40px;
                animation: fadeIn 0.5s ease;
                text-align: left;
            }

            .tab-content1.active {
                display: block;
            }

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .tab-content1 h4 {
                color: #147a14;
                font-size: 28px;
                margin-bottom: 25px;
                margin-top: 15px;
                padding-bottom: 15px;
                border-bottom: 1px solid #119e04;
                font-family: "Oswald", sans-serif;
            }

            .tab-content1 ol {
                counter-reset: item;
                list-style: none;
                padding-left: 0;
            }

            .tab-content1 ol li {
                counter-increment: item;
                margin-bottom: 20px;
                padding-left: 40px;
                position: relative;
                line-height: 1.8;
                font-family: "Oswald", sans-serif;
                font-size: 20px;
            }

            .tab-content1 ol li::before {
                content: counter(item) ".";
                position: absolute;
                left: 0;
                color: #147a14;
                font-weight: 700;
                font-size: 20px;
            }

            .tab-content1 ul {
                list-style: none;
                padding-left: 0;
            }

            .tab-content1 ul li {
                padding: 15px 0;
                padding-left: 35px;
                position: relative;
                line-height: 1.8;
                font-family: "Oswald", sans-serif;
            }

            .tab-content1 ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: #119e04;
                font-weight: bold;
                font-size: 20px;
            }

            .tab-content1 ul li strong {
                color: #147a14;
                font-family: "Oswald", sans-serif;
            }

            .tab-content1 ol,
    .tab-content1 ul,
    .tab-content1 li {
        text-align: left !important;
    }

    /* If you want the headings centered, keep this */

    /*pagination news*/
    .news-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 40px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .page-btn {
        background: white;
        border: 2px solid #e0e0e0;
        color: #333;
        padding: 12px 18px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: "Oswald", sans-serif;
    }

    .page-btn:hover:not(:disabled) {
        background: #298317;
        border-color: #298317;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(41, 131, 23, 0.3);
    }

    .page-btn.active {
        background: linear-gradient(135deg, #298317 0%, #4a7c2c 100%);
        border-color: #298317;
        color: white;
        box-shadow: 0 4px 15px rgba(41, 131, 23, 0.4);
    }

    .page-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .page-num {
        min-width: 45px;
        height: 45px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .prev-btn,
    .next-btn {
        border-radius: 25px;
        padding: 12px 24px;
    }

    /* Footer with View All button */
    .home-news-footer {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 80px;
    }

    .home-news-footer .view-all-btn {
        display: inline-block;
        background: linear-gradient(135deg, #298317 0%, #4a7c2c 100%);
        color: white;
        padding: 13px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(41, 131, 23, 0.3);
        font-family: "Oswald", sans-serif;
    }

    .home-news-footer .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(41, 131, 23, 0.4);
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .news-pagination {
            gap: 8px;
        }
        
        .page-btn {
            padding: 10px 14px;
            font-size: 14px;
        }
        
        .page-num {
            min-width: 40px;
            height: 40px;
        }
        
        .prev-btn,
        .next-btn {
            padding: 10px 16px;
        }
    }


    /* Header Section */
            .hmo-header {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                padding: 120px 20px 80px;
                text-align: center;
                position: relative;
                overflow: hidden;
                margin-top: 30px;
            }

            .hmo-header::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -10%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle, rgba(187, 255, 0, 0.1) 0%, transparent 70%);
                border-radius: 50%;
            }

            .hmo-header::after {
                content: '';
                position: absolute;
                bottom: -30%;
                right: -10%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
                border-radius: 50%;
            }

            .hmo-header-content {
                position: relative;
                z-index: 1;
                max-width: 1200px;
                margin: 0 auto;
            }

            .hmo-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                padding: 8px 20px;
                border-radius: 50px;
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 20px;
                font-weight: 600;
                backdrop-filter: blur(10px);
            }

            .hmo-header h1 {
                font-size: 56px;
                font-weight: 800;
                margin-bottom: 20px;
                text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            .hmo-header p {
                font-size: 20px;
                opacity: 0.95;
                max-width: 800px;
                margin: 0 auto;
                line-height: 1.6;
            }

            /* Container */
            .hmo-container {
                max-width: 1400px;
                margin: -40px auto 60px;
                padding: 0 20px;
                position: relative;
                z-index: 10;
            }

            /* Info Section */
            .hmo-info-section {
                background: white;
                border-radius: 20px;
                padding: 50px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                margin-bottom: 60px;
            }

            .hmo-info-section h2 {
                color: #147a14;
                font-size: 36px;
                margin-bottom: 25px;
                text-align: center;
            }

            .hmo-info-section p {
                font-size: 18px;
                line-height: 1.8;
                color: #555;
                text-align: center;
                max-width: 900px;
                margin: 0 auto 30px;
            }

            /* Partners Grid */
            .hmo-partners-title {
            text-align: center;
            margin-bottom: 50px;
        }
 
        .hmo-partners-title h2 {
            font-size: 42px;
            color: #147a14;
            margin-bottom: 15px;
        }
 
        .hmo-partners-title p {
            font-size: 18px;
            color: #666;
        }
 
        .hmo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
 
        .hmo-card {
            background: white;
            border-radius: 16px;
            padding: 45px 55px 45px 55px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
 
        .hmo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(20, 122, 20, 0.05), transparent);
            transition: left 0.6s ease;
        }
 
        .hmo-card:hover::before {
            left: 100%;
        }
 
        .hmo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(20, 122, 20, 0.15);
            border-color: #119e04;
        }
 
        .hmo-logo {
            width: 90px;
            height: 90px;
            margin: 0 auto 20px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #147a14;
            transition: all 0.4s ease;
        }
 
        /* For actual <img> logos */
        .hmo-logo img,
        img.hmo-logo {
            width: 260px;
            height: 90px;
            object-fit: contain;
            border-radius: 50%;
            background: #f8f9fa;
            padding: 10px;
            display: block;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
        }
 
        .hmo-card:hover .hmo-logo {
            background: rgba(20, 122, 20, 0.1);
            transform: scale(1.1);
        }
 
        .hmo-card:hover img.hmo-logo {
            background: rgba(20, 122, 20, 0.1);
            transform: scale(1.1);
        }
 
        .hmo-card h3 {
            color: #147a14;
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 700;
        }
 
        .hmo-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
 
        /* Slide-in banner from left */
        .hmo-card .hmo-banner {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(20, 122, 20, 0.93);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 14px;
            padding: 20px;
        }
 
        .hmo-card:hover .hmo-banner {
            transform: translateX(0);
        }
 
        .hmo-banner .hmo-banner-icon {
            font-size: 36px;
            color: #fff;
        }
 
        .hmo-banner h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            text-align: center;
        }
 
        .hmo-banner p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            margin: 0;
            text-align: center;
            line-height: 1.5;
        }

            /* Process Section */
            .hmo-process-section {
                background: white;
                border-radius: 20px;
                padding: 60px 50px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                margin-bottom: 60px;
            }

            .hmo-process-section h2 {
                color: #147a14;
                font-size: 38px;
                text-align: center;
                margin-bottom: 50px;
            }

            .process-steps {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 40px;
            }

            .process-step {
                position: relative;
                text-align: center;
            }

            .step-number {
                width: 70px;
                height: 70px;
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 32px;
                font-weight: 800;
                margin: 0 auto 20px;
                box-shadow: 0 8px 20px rgba(20, 122, 20, 0.3);
            }

            .process-step h3 {
                color: #147a14;
                font-size: 20px;
                margin-bottom: 12px;
                font-weight: 700;
            }

            .process-step p {
                color: #666;
                line-height: 1.7;
                font-size: 16px;
            }

            /* Requirements Section */
            .hmo-requirements {
                background: linear-gradient(135deg, #f0fff4 0%, #e6f7e9 100%);
                border-radius: 20px;
                padding: 50px;
                margin-bottom: 60px;
                border-left: 6px solid #147a14;
            }

            .hmo-requirements h2 {
                color: #147a14;
                font-size: 36px;
                margin-bottom: 30px;
            }

            .requirements-list {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 20px;
            }

            .requirement-item {
                background: white;
                padding: 20px;
                border-radius: 12px;
                display: flex;
                align-items: flex-start;
                gap: 15px;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            }

            .requirement-item i {
                color: #119e04;
                font-size: 24px;
                flex-shrink: 0;
                margin-top: 2px;
            }

            .requirement-item p {
                color: #333;
                font-size: 16px;
                line-height: 1.6;
            }

            /* Contact CTA */
            .hmo-contact-cta {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                border-radius: 20px;
                padding: 60px 40px;
                text-align: center;
                box-shadow: 0 10px 40px rgba(20, 122, 20, 0.3);
            }

            .hmo-contact-cta h2 {
                font-size: 38px;
                margin-bottom: 20px;
            }

            .hmo-contact-cta p {
                font-size: 18px;
                margin-bottom: 35px;
                opacity: 0.95;
            }

            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .cta-btn {
                padding: 16px 40px;
                border-radius: 50px;
                font-size: 16px;
                font-weight: 700;
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-family: "Oswald", sans-serif;
            }

            .cta-btn-primary {
                background: white;
                color: #147a14;
            }

            .cta-btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            }

            .cta-btn-secondary {
                background: transparent;
                color: white;
                border: 2px solid white;
            }

            .cta-btn-secondary:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: translateY(-3px);
            }

            /* Responsive */
            @media (max-width: 768px) {
                .hmo-header {
                    padding: 100px 20px 60px;
                }

                .hmo-header h1 {
                    font-size: 36px;
                }

                .hmo-header p {
                    font-size: 16px;
                }

                .hmo-info-section,
                .hmo-process-section {
                    padding: 35px 25px;
                }

                .hmo-partners-title h2,
                .hmo-info-section h2,
                .hmo-process-section h2,
                .hmo-requirements h2 {
                    font-size: 28px;
                }

                .hmo-grid {
                    grid-template-columns: 1fr;
                }

                .process-steps {
                    grid-template-columns: 1fr;
                }

                .requirements-list {
                    grid-template-columns: 1fr;
                }

                .hmo-requirements {
                    padding: 30px 20px;
                }

                .hmo-contact-cta {
                    padding: 40px 25px;
                }

                .hmo-contact-cta h2 {
                    font-size: 28px;
                }

                .cta-buttons {
                    flex-direction: column;
                }

                .cta-btn {
                    width: 100%;
                    justify-content: center;
                }
            }

            /* Animation */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .hmo-card,
            .process-step,
            .requirement-item {
                animation: fadeInUp 0.6s ease forwards;
            }

            .hmo-card:nth-child(1) { animation-delay: 0.1s; }
            .hmo-card:nth-child(2) { animation-delay: 0.2s; }
            .hmo-card:nth-child(3) { animation-delay: 0.3s; }
            .hmo-card:nth-child(4) { animation-delay: 0.4s; }
            .hmo-card:nth-child(5) { animation-delay: 0.5s; }
            .hmo-card:nth-child(6) { animation-delay: 0.6s; }



            .careers-hero {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                padding: 80px 20px 80px;
                text-align: center;
                position: relative;
                overflow: hidden;
                margin-top: 40px;
            }

            .careers-hero::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -10%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle, rgba(187, 255, 0, 0.1) 0%, transparent 70%);
                animation: float 15s ease-in-out infinite;
            }

            .careers-hero::after {
                content: '';
                position: absolute;
                bottom: -30%;
                right: -10%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
                animation: float 12s ease-in-out infinite reverse;
            }

            @keyframes float {
                0%, 100% { transform: translate(0, 0) scale(1); }
                50% { transform: translate(30px, -30px) scale(1.1); }
            }

            .careers-hero-content {
                position: relative;
                z-index: 1;
                max-width: 1200px;
                margin: 0 auto;
            }

            .careers-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                padding: 8px 20px;
                border-radius: 50px;
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 20px;
                font-weight: 600;
                backdrop-filter: blur(10px);
            }

            .careers-hero h1 {
                font-size: 56px;
                font-weight: 800;
                margin-bottom: 20px;
                text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            .careers-hero p {
                font-size: 20px;
                opacity: 0.95;
                max-width: 800px;
                margin: 0 auto;
                line-height: 1.6;
            }

            /* Container */
            .careers-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 60px 20px;
            }

            /* Why Join Section */
            .why-join-section {
                margin-bottom: 80px;
            }

            .section-header {
                text-align: center;
                margin-bottom: 50px;
            }

            .section-header h2 {
                font-size: 42px;
                color: #147a14;
                margin-bottom: 15px;
            }

            .section-header p {
                font-size: 18px;
                color: #666;
                max-width: 700px;
                margin: 0 auto;
            }

            .benefits-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }

            .benefit-card {
                background: white;
                padding: 35px 30px;
                border-radius: 16px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                transition: all 0.4s ease;
                border: 2px solid transparent;
                position: relative;
                overflow: hidden;
            }

            .benefit-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(20, 122, 20, 0.05), transparent);
                transition: left 0.6s ease;
            }

            .benefit-card:hover::before {
                left: 100%;
            }

            .benefit-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(20, 122, 20, 0.15);
                border-color: #119e04;
            }

            .benefit-icon {
                width: 70px;
                height: 70px;
                background: rgba(20, 122, 20, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 32px;
                color: #147a14;
                margin-bottom: 20px;
                transition: all 0.4s ease;
            }

            .benefit-card:hover .benefit-icon {
                background: rgba(20, 122, 20, 0.2);
                transform: scale(1.1) rotate(5deg);
            }

            .benefit-card h3 {
                color: #147a14;
                font-size: 22px;
                margin-bottom: 12px;
                font-weight: 700;
            }

            .benefit-card p {
                color: #666;
                line-height: 1.7;
                font-size: 16px;
            }

            /* Job Openings Section */
            .jobs-section {
                background: white;
                border-radius: 20px;
                padding: 60px 50px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                margin-bottom: 80px;
            }

            .jobs-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 40px;
                flex-wrap: wrap;
                gap: 20px;
            }

            .jobs-header h2 {
                font-size: 38px;
                color: #147a14;
            }

            .job-filters {
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
            }

            .filter-btn {
                padding: 10px 25px;
                background: #f0f0f0;
                border: 2px solid transparent;
                border-radius: 50px;
                color: #666;
                font-size: 14px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                font-family: "Oswald", sans-serif;
            }

            .filter-btn:hover,
            .filter-btn.active {
                background: #147a14;
                color: white;
                border-color: #147a14;
            }

            .jobs-grid {
                display: grid;
                gap: 25px;
            }

            .job-card {
                background: #f8f9fa;
                border-radius: 12px;
                padding: 30px;
                border-left: 5px solid #147a14;
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .job-card:hover {
                transform: translateX(10px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            }

            .job-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 15px;
                flex-wrap: wrap;
                gap: 15px;
            }

            .job-title {
                font-size: 24px;
                color: #147a14;
                font-weight: 700;
                margin-bottom: 5px;
            }

            .job-department {
                display: inline-block;
                background: #147a14;
                color: white;
                padding: 6px 16px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .job-meta {
                display: flex;
                gap: 25px;
                flex-wrap: wrap;
                margin-bottom: 15px;
                color: #666;
                font-size: 15px;
            }

            .job-meta-item {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .job-meta-item i {
                color: #119e04;
            }

            .job-description {
                color: #555;
                line-height: 1.7;
                margin-bottom: 20px;
            }

            .job-footer {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 15px;
            }

            .job-requirements {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .requirement-tag {
                background: white;
                padding: 6px 14px;
                border-radius: 20px;
                font-size: 13px;
                color: #147a14;
                border: 1px solid #e0e0e0;
            }

            .apply-btn {
                padding: 12px 30px;
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                border: none;
                border-radius: 50px;
                font-size: 14px;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.3s ease;
                font-family: "Oswald", sans-serif;
                text-decoration: none;
                display: inline-block;
            }

            .apply-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(20, 122, 20, 0.3);
            }

            /* Application Process */
            .process-section {
                margin-bottom: 80px;
            }

            .process-steps {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
                margin-top: 40px;
            }

            .process-step {
                background: white;
                padding: 35px 25px;
                border-radius: 16px;
                text-align: center;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                position: relative;
            }

            .step-number {
                position: absolute;
                top: -20px;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 24px;
                font-weight: 800;
                box-shadow: 0 4px 15px rgba(20, 122, 20, 0.3);
            }

            .process-step h3 {
                color: #147a14;
                font-size: 20px;
                margin: 30px 0 15px;
                font-weight: 700;
            }

            .process-step p {
                color: #666;
                line-height: 1.7;
            }

            /* CTA Section */
            .careers-cta {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                border-radius: 20px;
                padding: 60px 40px;
                text-align: center;
                box-shadow: 0 10px 40px rgba(20, 122, 20, 0.3);
            }

            .careers-cta h2 {
                font-size: 38px;
                margin-bottom: 20px;
            }

            .careers-cta p {
                font-size: 18px;
                margin-bottom: 35px;
                opacity: 0.95;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
            }

            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .cta-btn {
                padding: 16px 40px;
                border-radius: 50px;
                font-size: 16px;
                font-weight: 700;
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-family: "Oswald", sans-serif;
            }

            .cta-btn-primary {
                background: white;
                color: #147a14;
            }

            .cta-btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            }

            .cta-btn-secondary {
                background: transparent;
                color: white;
                border: 2px solid white;
            }

            .cta-btn-secondary:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: translateY(-3px);
            }

            /* Responsive */
            @media (max-width: 768px) {
                .careers-hero {
                    padding: 100px 20px 60px;
                }

                .careers-hero h1 {
                    font-size: 36px;
                }

                .careers-hero p {
                    font-size: 16px;
                }

                .section-header h2,
                .jobs-header h2,
                .careers-cta h2 {
                    font-size: 28px;
                }

                .jobs-section {
                    padding: 40px 25px;
                }

                .jobs-header {
                    flex-direction: column;
                    align-items: flex-start;
                }

                .job-filters {
                    width: 100%;
                }

                .filter-btn {
                    flex: 1;
                    text-align: center;
                }

                .job-footer {
                    flex-direction: column;
                    align-items: flex-start;
                }

                .apply-btn {
                    width: 100%;
                    text-align: center;
                    justify-content: center;
                }

                .careers-cta {
                    padding: 40px 25px;
                }

                .cta-buttons {
                    flex-direction: column;
                }

                .cta-btn {
                    width: 100%;
                    justify-content: center;
                }
            }

            /* Job not available message */
            .no-jobs-message {
                text-align: center;
                padding: 60px 20px;
                color: #666;
            }

            .no-jobs-message i {
                font-size: 64px;
                color: #ccc;
                margin-bottom: 20px;
            }

            .no-jobs-message h3 {
                font-size: 24px;
                color: #147a14;
                margin-bottom: 10px;
            }

            /*Patient rooms*/

            .room-charges-hero {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                padding: 60px 20px 80px;
                text-align: center;
                position: relative;
                overflow: hidden;
                margin-top: 80px;
            }

            .room-charges-hero::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -10%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle, rgba(187, 255, 0, 0.1) 0%, transparent 70%);
                animation: float 15s ease-in-out infinite;
            }

            @keyframes float {
                0%, 100% { transform: translate(0, 0) scale(1); }
                50% { transform: translate(30px, -30px) scale(1.1); }
            }

            .room-charges-hero-content {
                position: relative;
                z-index: 1;
                max-width: 1200px;
                margin: 0 auto;
            }

            .room-badge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                padding: 8px 20px;
                border-radius: 50px;
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 2px;
                margin-bottom: 20px;
                font-weight: 600;
                backdrop-filter: blur(10px);
            }

            .room-charges-hero h1 {
                font-size: 56px;
                font-weight: 800;
                margin-bottom: 20px;
                text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            .room-charges-hero p {
                font-size: 20px;
                opacity: 0.95;
                max-width: 800px;
                margin: 0 auto;
                line-height: 1.6;
            }

            /* Container */
            .room-charges-container {
                max-width: 1400px;
                margin: -40px auto 60px;
                padding: 0 20px;
                position: relative;
                z-index: 10;
            }

            /* Info Banner */
            .info-banner {
                background: white;
                border-radius: 20px;
                padding: 40px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                margin-bottom: 60px;
                border-left: 6px solid #147a14;
            }

            .info-banner h2 {
                color: #147a14;
                font-size: 32px;
                margin-bottom: 20px;
            }

            .info-banner p {
                font-size: 18px;
                color: #555;
                line-height: 1.8;
                margin-bottom: 15px;
                font-weight: 700;
            }

            .info-banner ul {
                list-style: none;
                text-align: left;
                padding-left: 0;
            }

            .info-banner ul li {
                padding: 10px 0;
                padding-left: 30px;
                position: relative;
                line-height: 1.7;
                color: #555;
                font-size: 20px;
            }

            .info-banner ul li::before {
                content: '✓';
                left: 0;
                padding-right: 25px;
                color: #119e04;
                font-weight: bold;
                font-size: 20px;
            }

            /* Room Types Grid */
            .room-types-section {
                margin-bottom: 60px;
            }

            .section-header {
                text-align: center;
                margin-bottom: 50px;
            }

            .section-header h2 {
                font-size: 42px;
                color: #147a14;
                margin-bottom: 15px;
            }

            .section-header p {
                font-size: 18px;
                color: #666;
            }

            .rooms-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
            }

            .room-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.4s ease;
                border: 3px solid transparent;
            }

            .room-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 50px rgba(20, 122, 20, 0.2);
                border-color: #119e04;
            }

            .room-card.featured {
                border-color: #147a14;
                position: relative;
            }

            .room-card.featured::before {
                content: 'Most Popular';
                position: absolute;
                top: 20px;
                right: -35px;
                background: #147a14;
                color: white;
                padding: 8px 40px;
                font-size: 12px;
                font-weight: 700;
                transform: rotate(45deg);
                z-index: 10;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .room-image {
                width: 100%;
                height: 250px;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .room-card:hover .room-image {
                transform: scale(1.1);
            }

            .room-content {
                padding: 35px 30px;
            }

            .room-type {
                display: inline-block;
                background: rgba(20, 122, 20, 0.1);
                color: #147a14;
                padding: 6px 16px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
                margin-bottom: 15px;
            }

            .room-title {
                font-size: 28px;
                color: #147a14;
                font-weight: 800;
                margin-bottom: 15px;
            }

            .room-price {
                font-size: 36px;
                color: #147a14;
                font-weight: 800;
                margin-bottom: 8px;
            }

            .room-price span {
                font-size: 16px;
                color: #666;
                font-weight: 400;
            }

            .room-description {
                color: #666;
                line-height: 1.7;
                margin-bottom: 25px;
                font-size: 15px;
            }

            .room-amenities {
                margin-bottom: 25px;
            }

            .room-amenities h4 {
                color: #147a14;
                font-size: 18px;
                margin-bottom: 15px;
                font-weight: 700;
            }

            .amenities-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .amenity-item {
                display: flex;
                align-items: center;
                gap: 10px;
                color: #555;
                font-size: 14px;
            }

            .amenity-item i {
                color: #119e04;
                font-size: 16px;
            }

            .inquire-btn {
                width: 100%;
                padding: 16px;
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                border: none;
                border-radius: 12px;
                font-size: 16px;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.3s ease;
                font-family: "Oswald", sans-serif;
                text-decoration: none;
                display: block;
                text-align: center;
            }

            .inquire-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(20, 122, 20, 0.4);
            }

            /* Additional Services */
            .additional-services {
                background: white;
                border-radius: 20px;
                padding: 50px;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                margin-bottom: 60px;
            }

            .additional-services h2 {
                color: #147a14;
                font-size: 38px;
                margin-bottom: 40px;
                text-align: center;
            }

            .services-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }

            .service-card {
                background: #f8f9fa;
                padding: 25px;
                border-radius: 12px;
                border-left: 5px solid #147a14;
                transition: all 0.3s ease;
            }

            .service-card:hover {
                transform: translateX(10px);
                background: #e8f5e9;
            }

            .service-card h3 {
                color: #147a14;
                font-size: 20px;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .service-card p {
                color: #666;
                line-height: 1.6;
                font-size: 15px;
            }

            /* Payment Options */
            .payment-section {
                background: linear-gradient(135deg, #f0fff4 0%, #e6f7e9 100%);
                border-radius: 20px;
                padding: 50px;
                margin-bottom: 60px;
                border-left: 6px solid #147a14;
            }

            .payment-section h2 {
                color: #147a14;
                font-size: 36px;
                margin-bottom: 30px;
            }

            .payment-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
                margin-top: 30px;
            }

            .payment-card {
                background: white;
                padding: 25px;
                border-radius: 12px;
                text-align: center;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            }

            .payment-icon {
                font-size: 48px;
                color: #147a14;
                margin-bottom: 15px;
            }

            .payment-card h3 {
                color: #147a14;
                font-size: 20px;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .payment-card p {
                color: #666;
                font-size: 15px;
                line-height: 1.6;
            }

            /* CTA Section */
            .room-charges-cta {
                background: linear-gradient(135deg, #147a14 0%, #119e04 100%);
                color: white;
                border-radius: 20px;
                padding: 60px 40px;
                text-align: center;
                box-shadow: 0 10px 40px rgba(20, 122, 20, 0.3);
            }

            .room-charges-cta h2 {
                font-size: 38px;
                margin-bottom: 20px;
            }

            .room-charges-cta p {
                font-size: 18px;
                margin-bottom: 35px;
                opacity: 0.95;
            }

            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .cta-btn {
                padding: 16px 40px;
                border-radius: 50px;
                font-size: 16px;
                font-weight: 700;
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-family: "Oswald", sans-serif;
            }

            .cta-btn-primary {
                background: white;
                color: #147a14;
            }

            .cta-btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            }

            /* Responsive */
            @media (max-width: 768px) {
                .room-charges-hero {
                    padding: 100px 20px 60px;
                }

                .room-charges-hero h1 {
                    font-size: 36px;
                }

                .rooms-grid {
                    grid-template-columns: 1fr;
                }

                .amenities-list {
                    grid-template-columns: 1fr;
                }

                .additional-services,
                .payment-section {
                    padding: 30px 20px;
                }

                .room-charges-cta {
                    padding: 40px 25px;
                }

                .cta-buttons {
                    flex-direction: column;
                }

                .cta-btn {
                    width: 100%;
                    justify-content: center;
                }
            }


    /* ========================================
    FIXED SLIDESHOW STYLES - Replace in style.css
    ======================================== */

    .image-tab-container {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 1000px;
        width: 100%;
        margin: 0 auto;
        min-height: 400;
    }

    .image-tab-wrapper {

        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin: 0 auto;
        position: relative;
        min-height: 700px; /* Ensures container has height */
        background: #f0f0f0; /* Fallback background */
    }

    /* Slideshow Container */
    .slideshow-container {
        position: relative;
        max-width: 100%;
        width: 100%;
        min-height: 400px; /* Match wrapper height */
    }

    /* Individual Slides */
    .slide {
        display: none;
        width: 100%;
        min-height: 400px;
        position: relative;
    }

    .slide.active {
        display: block;
    }

    .slide img {
        width: 100%;
        height: 400px; /* Fixed height for consistency */
        object-fit: cover; /* Ensures image covers area properly */
        display: block;
    }

    /* Navigation Buttons */
    .slide-prev,
    .slide-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        border: none;
        padding: 16px 20px;
        cursor: pointer;
        font-size: 28px;
        font-weight: bold;
        border-radius: 6px;
        transition: all 0.3s ease;
        z-index: 100;
        user-select: none;
    }

    .slide-prev:hover,
    .slide-next:hover {
        background-color: rgba(20, 122, 20, 0.9);
        transform: translateY(-50%) scale(1.1);
    }

    .slide-prev:active,
    .slide-next:active {
        transform: translateY(-50%) scale(0.95);
    }

    .slide-prev {
        left: 15px;
    }

    .slide-next {
        right: 15px;
    }

    /* Dots Navigation */
    .slide-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 100;
        background: rgba(0, 0, 0, 0.3);
        padding: 8px 16px;
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .dot:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: scale(1.2);
    }

    .dot.active {
        background-color: #147a14;
        border-color: white;
        transform: scale(1.3);
    }

    /* Fade Animation */
    .fade {
        animation: fadeEffect 0.6s ease-in-out;
    }

    @keyframes fadeEffect {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Loading State */
    .slide img:not([src]) {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .image-tab-wrapper,
        .slideshow-container {
            min-height: 250px;
        }
        
        .slide {
            min-height: 250px;
        }
        
        .slide img {
            height: 250px;
        }
        
        .slide-prev,
        .slide-next {
            padding: 12px 16px;
            font-size: 20px;
        }
        
        .slide-prev {
            left: 8px;
        }
        
        .slide-next {
            right: 8px;
        }
        
        .slide-dots {
            bottom: 12px;
            gap: 8px;
            padding: 6px 12px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
        }
        
        .image-tab-container {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .slide-prev,
        .slide-next {
            padding: 10px 14px;
            font-size: 18px;
            opacity: 0.8;
        }
        
        .slide-prev:hover,
        .slide-next:hover {
            opacity: 1;
        }
    }


         /* Hide honeypot field from real users */
      .hp-field { display: none !important; visibility: hidden !important; }
 
      /* Security notice styling */
      .security-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.78rem;
        color: #5a8a6a;
        margin-top: 8px;
        opacity: 0.85;
      }