    body {
        font-family: Georgia, 'Times New Roman', Times, serif;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        background: white;
    }
    html {
        scroll-behavior: smooth;
    }
    header {
        text-align: left;
    }
    .navbar {
        position: sticky;
        top: 0;
        height: 80px;
        width: 100%;
        background: white;
        padding: 15px 10px;
        box-shadow: 0 2px 6px black;
        z-index: 1000;
        transition: padding 0.3s ease,
                    box-shadow 0.3s ease,
                    background-color 0.4s ease,
                    opacity 0.4s ease;
    }
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .nav-logo {
        height: 90px;
        width: auto;
        max-height: 90px;
        transition: height 0.3s ease, max-height 0.3s ease;
        display: block;
    }
    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
        font-size: 16px;
        margin-left: auto;
    }
    .nav-links li a {
        text-decoration: none;
        display: flex;
        align-items: center;
        height: 100%;
        color: black;
        font-weight: 500;
        transition: color 0.3s;
    }
    .nav-links li a:hover {
        opacity: 0.8;
        color: #859977;
    }
    .navbar.shrink {
        padding: 6px 10px;
        background: white;
        backdrop-filter: blur(5px);
        opacity: 0.9;
        box-shadow: 0 2px 12px black;
    }
    .navbar.shrink .nav-logo {
        height: 80px;
        max-height: 80px;
    }
    .nav-btn {
        color: white;
        background: #859977;
        border: none;
        text-decoration: none;
        border-radius: 15px;
        padding: 20px 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        font-size: 16px;
        cursor: pointer;
        transition: 0.4s;
        white-space: nowrap;
    }
    .nav-btn:hover {
        opacity: 0.9;
        transform: scale(1.05);
    }
    h4 {
        font-size: 22px;
        padding-left: 20px;
        margin-bottom: 8px;
    }
    .card p, h4 {
        text-align: left;
    }
    .card p {
        font-size: 16px;
        font-weight: 400;
        padding-left: 20px;
        padding-right: 20px;
        line-height: 1.8;
    }
    .dropdown {
        position: relative;
    }
    .caret {
        margin-left: 6px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    .dropdown-menu {
        position: absolute;
        top: 130%;
        left: 0;
        background: white;
        min-width: 220px;
        border-radius: 14px;
        padding: 10px 0;
        box-shadow: 0 12px 30px black;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;

        z-index: 999;
    }
    .dropdown-menu li {
        list-style: none;
    }
    .dropdown-menu li a {
        display: block;
        padding: 12px 18px;
        color: black;
        font-size: 15px;
        text-decoration: none;
        transition: background 0.3s ease, padding-left 0.3s ease;
    }
    .dropdown-menu li a:hover {
        background: #59664f3d;
        padding-left: 24px;
        font-weight: bold;
        color: #59664f;
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown:hover .caret {
        transform: rotate(180deg);
    }
    .top-bar {
        background: #f5f5f5;
    }
    .search-wrapper {
        position: relative;
    }
    #siteSearch {
        padding: 8px 14px;
        border-radius: 20px;
        border: 1px solid #ccc;
        width: 220px;
        font-size: 14px;
    }
    #siteSearch:focus {
        outline: none;
        border-color: #859977;
    }
    #searchResults {
        position: absolute;
        padding: 10px 0;
        top: 110%;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px black;
        display: none;
        z-index: 1000;
    }
    #searchResults a {
        display: block;
        padding: 10px 14px;
        text-decoration: none;
        color: black;
        font-size: 14px;
    }
    #searchResults a:hover {
        background: #59664f3d;
        font-weight: bold;
        color: #59664f;
        padding-left: 24px;
    }
    .launch-badge {
        background: black;
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.3px;
        animation: fadeInCaption 1s ease forwards;
    }
    .contact-info {
        color: white;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        font-weight: bold;
        padding: 0 20px;
        height: 50px;
        background: #859977;
    }
    .contact-info a {
        text-decoration: none;
        color: white;
        font-weight: bold;
    }
    .contact-info a:hover {
        text-decoration: underline;
        color: #59664f;
        transition: 0.8s;
    }
    .subtag {
        font-size: 13px;
        font-style: italic;
        margin-bottom: 10px;
    }
    .contact-section {
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 5px 15px black;
        max-width: 1000px;
        width: 90%;
        margin: 40px auto;
    }
    .contact-section h2 {
        text-align: center;
        grid-column: span 2;
        font-size: 28px;
    }
    .contact-section .tagline {
        text-align: center;
        grid-column: span 2;
        font-size: 16px;
        font-style: italic;
        margin-bottom: 20px;
    }
    .message-section {
        padding: 0 20px;
        margin: 80px auto;
        max-width: 1200px;
    }
    .message-section h2 {
        text-align: left;
        margin-bottom: 40px;
        color: #59664f;
        font-size: 32px;
    }
    .message-area input {
        max-width: 330px;
        padding: 20px;
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
        align-items: stretch;
    }
    .contact-card,
    .form-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 8px 25px black;
        animation: fadeUp 0.8s ease forwards;
    }
    .contact-card {
        animation-delay: 0.1s;
    }
    .form-card {
        animation-delay: 0.25s;
    }
    .contact-card h3 {
        font-size: 26px;
        margin-bottom: 25px;
        color: #859977;
    }
    .sec-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 16px;
    }
    .sec-contact-item i {
        color: #859977;
        font-size: 18px;
    }
    .sec-contact-item a,
    .sec-contact-item span {
        color: #333;
        text-decoration: none;
    }
    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    .form-card input,
    .form-card textarea {
        width: 95%;
        padding: 16px 16px;
        border-radius: 14px;
        border: 1px solid #ddd;
        font-size: 15px;
        transition: 0.3s ease;
        font-family: inherit;
    }
    .form-card textarea {
        min-height: 140px;
        resize: vertical;
        margin-bottom: 25px;
    }
    .form-card input:focus,
    .form-card textarea:focus {
        outline: none;
        border-color: #859977;
        box-shadow: 0 0 0 3px #59664f;
    }
    .form-card .btn {
        background: #859977;
        color: white;
        border: none;
        padding: 14px 36px;
        font-size: 16px;
        border-radius: 30px;
        cursor: pointer;
        transition: 0.35s ease;
    }
    .form-card .btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 18px black;
    }
    form input, form textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 2px solid #859977;
        outline: none;
        border-radius: 20px;
        transition: 0.4s;
    }
    form input:focus, form textarea:focus{
        outline: none;
        border-color: #859977;
        box-shadow: 0 0 0 3px #59664f6b;;
    }
    form textarea {
        resize: none;
        height: 100px;
    }
    .interestForm input,
    .interestForm textarea {
        font-family: inherit;
    }
    .form-area label {
        padding: 5px;
        margin-bottom: 5px;
    }
    .btn {
        display: block;
        width: 100%;
        padding: 12px;
        margin-top: 10px;
        background: #859977;
        color: white;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: 20px;
        transition: 0.4s;
        cursor: pointer;
    }
    .btn:hover {
        opacity: 0.9;
        transform: scale(1.05);
    }
    .checkbox {
        display: inline-flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        line-height: 1.5;
        white-space: nowrap;
    }
    .checkbox input {
        margin-top: 4px;
    }
    .checkbox a {
        white-space: nowrap;
    }
    .headimg {
        background: url(images/dentistimg.webp) no-repeat center center/cover;
        height: 350px;
        display: flex;
        justify-content: left;
        align-items: center;
    }
    .carousel {
        position: relative;
        width: 100%;
        height: 500px;
        margin: 0px auto;
        overflow: hidden;
        box-shadow: 0 5px 15px black;
    }
    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.6s ease;
    }
    .carousel-slide.active {
        opacity: 1;
    }
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        font-size: 32px;
        padding: 8px 13px;
        cursor: pointer;
        border-radius: 30%;
        transition: 0.3s;
        user-select: none;
        opacity: 0.6;
    }
    .carousel-btn:hover{
        background: #859977;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 3px 10px black;
        opacity: 1;
    }
    .carousel-btn.prev {
        left: 15px;
    }
    .carousel-btn.next {
        right: 15px;
    }
    .carousel-label {
        position: absolute;
        top: 35px;
        left: 50px;
        background: white;
        opacity: 0.8;
        padding: 12px 20px;
        border-radius: 15px;
        font-weight: bold;
        color: #859977;
    }
    .carousel-caption {
        position: absolute;
        top: 30%;
        left: 23%;
        transform: translate(-50%, -50%);
        transition: opacity 0.8s ease, transform 0.8s ease;
        text-align: left;
        color: #59664f;
        text-shadow: 0 4px 12px white;
        opacity: 0;
        z-index: 5;
        animation: fadeInCaption 2s ease forwards;
    }
    .carousel-caption h1 {
        font-size: 48px;
        font-weight: bold;
        opacity: 0;
        animation: fadeInText 2s ease forwards;
    }
    .carousel-announcement {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;

        padding: 26px 42px;
        border-radius: 32px;

        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        animation: announcementFade 1.2s ease forwards,
                    announcementFloat 4s ease-in-out infinite;
        
    }
    .carousel-announcement:hover {
        box-shadow: 0 12px 35px #59664f;
    }
    .announcement-title {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-align: center;

        background: linear-gradient(90deg, black, #2d3428, #6b7a60);
        background-size: 200% 100%;
        background-clip: text;

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        animation: gradientShift 6s ease infinite;
    }
    .announcement-btn {
        padding: 12px 26px;
        border-radius: 25px;

        background: linear-gradient(135deg, #859977, #59664f);

        color: white;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;

        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

        transition: transform 0.35s ease,
                    box-shadow 0.35 ease,
                    opacity 0.35s ease;
    }
    .announcement-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 18px black;
    }
    @keyframes announcementFade {
        from { opacity: 0; transform: translate(-50%, -48%);}
        to { opacity: 1; transform: translate(-50%, -50%);}
    }
    @keyframes announcementFloat {
        0%, 100% { transform: translate(-50%, -50%);}
        50% {transform: translate(-50%, -60%);}
    }
    @keyframes gradientShift {
        0% { background-position: 0% 50%;}
        100% { background-position: 200% 50%;}
    }
    .custom-select-wrapper {
        font-family: inherit;
        position: relative;
        width: 100%;
        padding-top: 5px;
    }
    .custom-select-wrapper select {
        width: 100%;
        padding: 14px 18px;
        padding-right: 45px;
        font-size: 15px;
        border: 2px solid #859977;
        border-radius: 14px;
        background: white;
        appearance: none;
        cursor: pointer;
        transition: all 0.25s ease;
        font-family: inherit;
    }
    .custom-select-wrapper select:hover {
        border-color: #859977;
        box-shadow: 0 4px 10px #59664f6b;
    }
    .custom-select-wrapper select:focus {
        outline: none;
        border-color: #859977;
        box-shadow: 0 0 0 3px #59664f6b;
    }
    .custom-select-wrapper::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 18px;
        width: 10px;
        height: 10px;
        border-right: 2px solid #59664f;
        border-bottom: 2px solid #59664f;
        transform: translateY(-50%) rotate(45deg);
        pointer-events: none;
        transition: all 0.25s ease;
    }
    .custom-select-wrapper select:focus + .custom-arrow,
    .custom-select-wrapper:focus-within::after {
        transform: translateY(-50%) rotate(-135deg);
    }
    .imp-desc {
        height: 670px;
        background-color: white;
        width: 100%;
    }
    .imp-image img {
        height: 500px;
        width: 550px;
        border-radius: 20px;
        margin-top: 40px;
        object-fit: cover;
        box-shadow: 0 5px 15px black;
    }
    .gen-desc {
        background-color: white;
        padding: 80px 0;
        width: 100%;
    }
    .gen-container {
        max-width: 1200px;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        justify-content: right;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
    }
    .gen-text {
        margin-bottom: 10px;
    }
    .gen-text h3{
        font-size: 35px;
        margin-bottom: 20px;
    }
    .gen-text p {
        line-height: 1.8;
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 400;
    }
    .gen-text {
        max-width: 700px;
    }
    .com-image img {
        height: 500px;
        width: 650px;
        border-radius: 20px;
        object-fit: cover;
        margin-top: 40px;
        box-shadow: 0 5px 15px black;
    }
    .gen-image img{
        height: 420px;
        width: 550px;
        border-radius: 20px;
        object-fit: cover;
        margin-top: 40px;
        box-shadow: 0 5px 15px black;
    }
    .about {
        height: 500px;
        background-color: rgb(242, 242, 242);
        width: 100%;
    }
    .about-container {
        display: flex;
        align-items: center;
        justify-content: left;
        gap: 60px;
        max-width: 1300px;
        margin: auto;
    }
    .about-text h3{
        font-size: 35px;
        margin-bottom: 20px;
    }
    .about-text {
        max-width: 900px;
    }
    .about-text ul {
        list-style: disc;
        padding-left: 20px;
        font-size: 18px;
        line-height: 1.8;
    }
    .about-image img {
        height: 420px;
        width: 450px;
        border-radius: 20px;
        object-fit: cover;
        margin-top: 40px;
        box-shadow: 0 5px 15px black;
    }
    .learn-btn {
        padding: 12px 25px;
        background: #859977;
        border: none;
        color: white;
        border-radius: 15px;
        font-weight: bold;
        font-size: 16px;
        transition: 0.4s ease;
        cursor: pointer;
    }
    .learn-btn:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }
    i {
        padding: 5px;
    }
    .service-prev {
        text-align: center;
    }
    .service-prev h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .service-prev .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        max-width: 1300px;
        padding-bottom: 20px;
        margin: auto;
    }
    .service-prev .card {
        background: white;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 0 0 20px;
        border-radius: 15px;
        margin-bottom: 30px;
        margin-top: 10px;
        animation: fadeUp linear;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;

        box-shadow: 0 5px 15px black;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        transform: translateY(30px);
        width: 90%;
    }
    .service-prev.show .card {
        transform: translateY(0);
        opacity: 1;
    }
    .service-prev .card img {
        width: 100%;
        object-fit: cover;
        border-radius: 15px 15px 0 0;
        height: 280px;
        transition: transform 0.6s ease;
    }
    .service-prev .card:hover {
        transform: translateY(-1px);
        color: white;
        box-shadow: 0 10px 20px #859977;
        background: #859977;
        transition: transform 0.8s ease,
                    background 0.6s ease,
                    color 0.2s ease;
    }
    .service-prev .card:hover img {
        transform: scale(1.2);
    }
    .service-prev .card:hover .card-link {
        color: white;
    }
    .service-prev .card p {
        flex-grow: 1;
        padding: 0 20px;
    }
    .card-link {
        align-self: flex-start;
        margin: 15px 20px 0;
        font-weight: 600;
        font-size: 15px;
        color: #859977;
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease;
    }
    .card-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 2px;
        background: #859977;
        transition: width 0.3s ease;
    }
    .card-link:hover::after {
        width: 100%;
    }
    .location-section iframe {
        border: none;
        width: 100%;
        border-radius: 20px;
        height: 250px;
        box-shadow: 0 4px 15px black;
    }
    .location-section {
        flex: 2;
        min-width: 500px;
    }
    .location-section img {
        width: 100%;
        height: 300px;
        object-fit: cover;;
        border-radius: 15px;
        box-shadow: 0 4px 15px black;
        margin-bottom: 15px;
    }
    .form-map-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 60px;
    }
    .form-area {
        flex: 2;
    }
    footer {
        text-align: center;
        color: white;
        background: #59664f;
        padding: 10px;
    }
    @keyframes fadeInCaption {
        from { opacity: 0; transform: translate(-50%, -60%);}
        to { opacity: 1; transform: translate(-50%, -50%);}
    }
    @keyframes fadeInText {
        from { opacity: 0; transform: translateY(20px);}
        to { opacity: 1; transform: translateY(0);}
    }
    @keyframes fadeInBtn {
        from { opacity: 0; transform: translateY(30px);}
        to { opacity: 1; transform: translateY(0);}
    }
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(40px) scale(0.5);}
        to { opacity: 1; transform: translateY(0) scale(1);}
    }
    .bgimg {
        height: 300px;
        position: relative;
        width: 100%;
        margin: 0px auto;
        overflow: hidden;
        box-shadow: 0 5px 15px black;
    }
    .bgimg img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }
    .bgimg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
    }
    .bgimg-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%);
        z-index: 2;
        color: white;
        font-size: 50px;
        font-weight: 500;
        text-align: center;
        letter-spacing: 1px;
        text-transform: capitalize;
    }
    .bgimg p {
        font-size: 15px;
        font-weight: bold;
        font-style: italic;
        transform: translate(-0%, -50%);
        text-shadow:
            0 0 8px rgba(255,255,255,0.6),
            0 0 20px rgba(255,255,255,0.4);
    }
    .sub-footer {
        background: #859977;
        color: white;
        padding: 40px 0 50px;
        width: 100%;
    }
    .footer-links {
        padding-left: 30px;
    }
    .footer-container {
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        max-width: 1350px;
        gap: 60px;
        padding: 0 40px;
    }
    .footer-section h6 {
        font-size: 28px;
        margin-bottom: 18px;
        font-weight: 600;
    }
    .footer-section p {
        font-size: 16px;
        line-height: 1.8;
        opacity: 0.95;
    }
    .footer-section a {
        font-size: 16px;
        text-decoration: none;
        position: relative;
        color: white;
        margin-bottom: 8px;
        width: fit-content;
        transition: opacity 0.25s ease;
    }
    .footer-section a:hover {
        opacity: 0.75;
    }
    .footer-section a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 2px;
        background: white;
        transition: width 0.3s ease;
    }
    .footer-section a:hover::after {
        width: 100%;
    }
    .contact-item i {
        min-width: 18px;
        margin-top: 4px;
        opacity: 0.9;
    }
    .blogimg {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .blog-text {
        display: flex;
        flex-direction: column;
    }
    .blog-text p {
        margin-bottom: 40px;
    }
    .know-more {
        color: white;
        text-decoration: underline;
        font-size: 14px;
    }
    .blogimg img {
        height: 80px;
        width: 80px;
        object-fit: cover;
        border-radius: 10px;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-section:nth-child(1) {
        flex: 0 0 40%;
    }
    .footer-section:nth-child(2) {
        flex: 0 0 25%;
    }
    .footer-section:nth-child(3) {
        flex: 0 0 35%;
    }
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
        line-height: 1.6;
        font-size: 16px;
    }
    .why-choose-us {
        text-align: center;
        margin-top: 50px;
        padding: 40px 20px;
        background: rgb(242, 242, 242);
    }
    .why-choose-us h2 {
        font-size: 40px;
        margin-bottom: 40px;
        color: black;
    }
    .why-grid {
        max-width: 1300px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .why-card {
        position: relative;
        background: rgba(125, 180, 144, 0.15);
        padding: 30px 20px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 5px 15px black;
        transition: 0.3s ease;
        overflow: hidden;
        z-index: 1;
    }
    .why-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%
        );
        transform: skewX(-20deg);
        transition: all 0.6s ease;
    }
    .why-card:hover::after {
        left: 140%;
    }
    .why-card .icon {
        width: 70px;
        height: 70px;
        background: rgba(125, 180, 144, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
    }
    .why-card .icon i {
        font-size: 28px;
        color: #859977;
    }
    .why-card h3 {
        margin-bottom: 10px;
        color: black;
    }
    .why-card p {
        color: #555;
        line-height: 1.5;
    }
    .why-card:hover {
        transform: translate(-6px);
        box-shadow: 0 10px 25px black;
    }
    .scroll-top {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: none;
        background: #859977;
        color: white;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, visability 0.4s;
        box-shadow: 0 5px 15px black;
    }
    .scroll-top:hover {
        transform: translateY(0) scale(1.1);
        background: #59664f;
        transition: 0.4s;
        box-shadow: 0 8px 20px black;
    }
    .big-map iframe {
        width: 100%;
        margin-top: 15px;
    }
    .privacy-page {
        background: #f7f7f7;
        padding: 80px 20px;
    }
    .privacy-container {
        max-width: 900px;
        margin: 0 auto;
        background: white;
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    .privacy-container h1 {
        font-size: 40px;
        margin-bottom: 10px;
        color: #59664f;
    }
    .privacy-updated {
        font-size: 14px;
        font-style: italic;
        margin-bottom: 30px;
        color: #777;
    }
    .privacy-container h2 {
        font-size: 24px;
        margin-top: 35px;
        margin-bottom: 12px;
        color: #859977;
    }
    .privacy-container p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
        color: #333;
    }
    .privacy-container ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .privacy-container ul li {
        margin-bottom: 8px;
        line-height: 1.6;
    }
    .privacy-container a {
        color: #859977;
        font-weight: 600;
        text-decoration: none;
    }
    .privacy-container a:hover {
        text-decoration: underline;
    }
    .thank-you-card {
        background: white;
        max-width: 520px;
        width: 100%;
        padding: 50px 40px;
        border-radius: 24px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        animation: fadeUp 0.8s ease forwards;
    }
    .success-animation {
        width: 90px;
        height: 90px;
        margin: 0 auto 30px;
    }
    .success-animation svg {
        width: 100%;
        height: 100%;
    }
    .circle {
        stroke: #859977;
        stroke-width: 2;
        stroke-dasharray: 157;
        stroke-dashoffset: 157;
        animation: circleDraw 0.6s ease forwards;
    }
    .check {
        stroke: #859977;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dashoffset: 48;
        stroke-dasharray: 48;
        animation: checkDraw 0.35s ease forwards;
        animation-delay: 0.6s;
    }
    @keyframes circleDraw {
        to { stroke-dashoffset: 0;}
    }
    @keyframes checkDraw {
        to { stroke-dashoffset: 0;}
    }
    .success-animation {
        animation: successPulse 1.2s ease 1s forwards;
    }
    @keyframes successPulse {
        0% { transform: scale(1);}
        50% { transform: scale(1.06);}
        100% { transform: scale(1);}
    }
    .circle,
    .check {
        filter: drop-shadow(0 0 6px rgba(133,153,119,0.4));
    }
    .thank-you-card h1 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #59664f;
    }
    .thank-you-card p {
        font-size: 16px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 30px;
    }
    .back-home {
        display: inline-block;
        padding: 14px 32px;
        background: #859977;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        transition: transform 0.35s ease,
                    box-shadow 0.35s ease,
                    opacity 0.35s ease;
    }
    .back-home:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        opacity: 0.95;
    }
    .staff-section {
        padding: 40px 20px;
        background: white;
    }
    .staff-header {
        text-align: center;
        max-width: 1100px;
        margin: 0 auto 40px;
    }
    .staff-header h2 {
        font-size: 40px;
        margin-bottom: 12px;
    }
    .staff-header p {
        font-size: 17px;
        color: #555;
        line-height: 1.6;
    }
    .staff-grid {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .staff-card {
        display: flex;
        padding: 20px;
        align-items: stretch;
        background: white;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 8px 25px black;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        animation: fadeUp 0.8s ease forwards;
    }
    .staff-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
    }
    .staff-card img {
        width: 280px;
        min-width: 280px;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
    .staff-intro {
        padding: 30px 35px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .staff-intro h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .staff-intro span {
        font-size: 14px;
        font-weight: 600;
        color: #859977;
        margin-bottom: 14px;
    }
    .staff-intro p {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
    }
    .menu-toggle {
        display: none;
        color: #333;
        font-size: 28px;
        cursor: pointer;
    }
    @media (max-width: 1024px) {
        .nav-links {
            gap: 14px;
            font-size: 15px;
        }

        .nav-btn {
            padding: 14px 16px;
            font-size: 15px;
        }

        .carousel {
            height: 420px;
        }

        .carousel-caption {
            left: 30%;
        }

        .carousel-caption h1 {
            font-size: 38px;
        }

        .service-prev .grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .contact-grid {
            grid-template-columns: 1fr;
        }

        .gen-container,
        .about-container {
            flex-direction: column;
            text-align: center;
        }

        .gen-image img,
        .about-image img {
            width: 100%;
            height: auto;
        }

        .footer-container {
            flex-wrap: wrap;
            gap: 40px;
        }
    }
    @media (max-width: 768px) {

        html, body {
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            position: relative;
        }
        .checkbox {
            white-space: normal;
            align-items: flex-start;
        }
        .menu-toggle {
            display: block !important;
            z-index: 1005;
            padding: 8px;
            font-size: 24px;
            cursor: pointer;
            order: 3;
            margin-left: 8px;
        }

        .navbar {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            background: white;
        }

        .carousel {
            margin-top: 0;
            position: relative;
            z-index: 1;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 10px 12px;
            gap: 8px;
            box-sizing: border-box;
        }

        .nav-btn {
            display: none;
            justify-content: center;
            width: 80%;
            margin: 10px auto;
        }

        .nav-links {
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            text-align: center;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }
        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            display: none;
            width: 90%;
            text-align: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .nav-links.active li {
            display: block;
        }

        .nav-links li a {
            justify-content: center;
        }
        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            display: none;
            transform: none;
            box-shadow: none;
            width: 100%;
            background: #f9f9f9;
        }
        .dropdown.active .dropdown-menu {
            display: block;
        }

        .gen-image img,
        .about-image img,
        .com-image img {
            max-width: 93%;
            height: auto;
            display: block;
        }
        .about-text {
            max-width: 90%;
        }
        
        .nav-logo {
            height: 70px;
            order: 1;
        }

        .about,
        .imp-desc,
        .headimg {
            height: auto;
            padding: 40px 0;
        }

        .search-wrapper {
            display: flex;
            order: 2;
            flex: 1;
            margin: 0 4px;
        }

        #siteSearch {
            width: 100%;
            max-width: 100%;
        }

        .carousel-label {
            left: 20px;
            top: 20px;
            font-size: 14px;
        }

        .carousel-announcement {
            width: 50%;
            padding: 22px 24px;
            text-align: center;
        }

        .announcement-title {
            font-size: 20px;
        }

        .carousel-caption {
            left: 50%;
            top: 60%;
            transform: translate(-50%, -50%);
            text-align: center;
            max-width: 90%;
        }

        .carousel-caption h1 {
            font-size: 30px;
        }

        .service-prev .grid {
            grid-template-columns: 1fr;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .contact-section {
            max-width: 100%;
            width: 100%;
            margin: 20px 0;
            padding: 20px 15px;
            border-radius: 0;
            box-sizing: border-box;
        }

        /* Register form sizing */
        .interestForm {
            width: 100%;
        }
        .interestForm input,
        .interestForm textarea {
            width: 96%;
            margin-left: auto;
            margin-right: auto;
        }
        .custom-select-wrapper {
            width: 96%;
            margin-left: auto;
            margin-right: auto;
        }
        .custom-select-wrapper select {
            width: 100%;
        }
        .interestForm textarea {
            width: 96%;
        }

        .form-row {
            flex-direction: column;
        }

        .gen-text h3,
        .about-text h3 {
            font-size: 28px;
        }

        .form-map-container {
            flex-direction: column;
            width: 100%;
            padding: 0;
            align-items: stretch;
        }

        .location-section {
            min-width: unset;
            width: 100%;
        }

        .location-section iframe {
            width: 100% !important;
            height: 300px;
        }
        .location-section img {
            width: 100%;
            height: auto;
        }

        .footer-container {
            flex-direction: column;
            padding: 0 20px;
            width: 100%;
        }

        .footer-section {
            flex: 1 1 100%;
            width: 100%;
        }

        .footer-section a,
        .footer-section p {
            word-break: break-word;
            overflow-wrap: anywhere;
        }

        .footer-section h6 {
            font-size: 22px;
        }

        .sub-footer {
            height: auto;
            padding: 40px 0;
        }
        .privacy-container {
            padding: 35px 25px;
        }

        .privacy-container h1 {
            font-size: 30px;
        }

        .privacy-container h2 {
            font-size: 20px;
        }

        /* Staff cards – mobile layout */
        .staff-section {
            padding: 30px 16px;
        }

        .staff-header h2 {
            font-size: 30px;
        }

        .staff-grid {
            gap: 20px;
        }

        .staff-card {
            flex-direction: column;
            padding: 16px;
        }

        .staff-card img {
            width: 100%;
            min-width: 0;
            height: 260px;
        }

        .staff-intro {
            padding: 18px 12px 8px;
        }
        .bigimg {
            height: 200px;
        }
        .bgimg-caption {
            width: 90%;
            font-size: 28px;
        }
        .about-container,
        .footer-container,
        .grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            padding: 0 20px;
            gap: 20px;
        }
        .gen-container, 
        .about-container, 
        .contact-grid {
            grid-template-columns: 1fr !important;
            display: flex;
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }
        .gen-image img, 
        .about-image img, 
        .imp-image img, 
        .com-image img {
            width: 100%;
            height: auto;
            margin-top: 0;
        }
        .gen-text, 
        .about-text {
            padding-right: 10px;
        }
        .contact-info {
            height: auto;
            flex-direction: column;
            padding: 10px;
            font-size: 13px;
        }

        .checkbox {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
            line-height: 1.1;
        }
        .checkbox input {
            margin: 0;
            flex-shrink: 0;
            align-self: center;
        }
        .bgimg {
            height: 150px;
        }
        .bgimg p {
            font-size: 12px;
        }
        .bgimg-caption {
            font-size: 20px;
        }
    }
