@font-face {
    font-family: 'Century Schoolbook Bold';
    src: url('SCHLBKB.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}


.header {
    background-color: #fff;
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    position: relative;
    z-index: 10;


}

.logo {
    max-width: 180px;
    height: auto;
    margin-top: 0px;
}

.logo-container .logo {
    max-width: 180px;
    height: auto;
    margin-top: 34px;
}

.leaf-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.3;
    transform: rotate(45deg);
}

@media (max-width: 480px) {
    .logo-container .logo {
        max-width: 100px;
        height: auto;
    }
}

@media (min-width: 48px) {
    .leaf-top-left {
        width: 22vw;
        max-width: 220px;
    }
}
















.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4rem;
    margin-top: 1rem;
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.navbar a,
.dropbtn {
    padding: 1rem;
    margin: 0;
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
    transition: background-color 0.3s ease;
}

.navbar a:hover,
.dropbtn:hover {
    background-color: #f4f4f4;
    border-radius: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.dropdown-content a {
    padding: 0.8rem 1.2rem;
    display: block;
    color: #714b27;
    text-decoration: none;
    white-space: nowrap;
}

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

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

.dropdown>a::after {
    content: ' ▼';
    /* arrow symbol */
    font-size: 0.7rem;
}



.navbar {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 1rem;
}

.navbar a {
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
}

/* Dropdown Base */
.dropdown {
    position: relative;
}

.dropbtn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.dropdown-content a {
    color: #714b27;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-align: center;
}

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

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






































/*change here .............*/
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    z-index: 1001;
    color: #714b27;
}



@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background-color: #fff;
        padding: 1rem;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        z-index: 999;
    }

    .navbar.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .dropdown:hover .dropdown-content {
        display: none;
        /* disable hover dropdown on mobile */
    }

    .dropdown-content {
        position: relative;
        box-shadow: none;
        padding-left: 1rem;
    }

    .dropdown-content a {
        padding-left: 1.5rem;
    }

    .dropdown>a::after {
        content: ' ▾';
    }

    .dropdown>a:active+.dropdown-content,
    .dropdown>a:focus+.dropdown-content {
        display: block;
    }
}



/* ============ Mobile Styles ============ */

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 2rem 1.5rem;
        z-index: 1000;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-in-out forwards;
    }

    .navbar.show {
        display: flex;
    }

    .navbar a,
    .dropbtn {
        font-size: 1rem;
        color: #714b27;
        font-weight: bold;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        display: none;
        flex-direction: column;
        position: relative;
        background-color: #fff;
        padding-left: 1rem;
        box-shadow: none;
    }

    .dropdown.open .dropdown-content {
        display: flex;
    }

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

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown-content a {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        color: #714b27;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
/*.....................................*/

.rectangle-box {
    width: 70%;
    height: 300px;
    /* increased fixed height */
    border: 2px solid #5a7552;
    padding: 20px;
    box-sizing: border-box;
    margin: 82px auto;
    background-color: white;
    /* optional */
}


#text1 {
    text-align: center;
    font-family: 'Century Schoolbook', serif;
    font-weight: bold;
    color: #5a7552;
    font-size: 35px;
    margin-top: 5%;

}

#text2 {
    text-align: center;
    font-family: 'Century Schoolbook', serif;
    font-weight: bold;
    color: #5a7552;
    font-size: 20px;

}


.image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns */
    gap: 30px;
    /* Minimal gap between images */
    width: 80%;
    /* Container covers 80% of page */
    margin: 0 auto;
    /* Center the image container */
    padding: 0;
    box-sizing: border-box;
    margin-top: -140px;
}

.image img {
    width: 100%;
    /* Each image fills its grid column */
    height: 300px;
    /* Fixed height */
    object-fit: cover;
    display: block;
}

.rectangle-box2 {
    width: 100%;
    height: 1500px;

    padding: 20px;
    box-sizing: border-box;
    margin: 50px auto;
    /* Center the box */
    margin-top: -97%;
    background-color: #5a7552;

}

.image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.image img:hover {
    transform: scale(1.05);
    /* Slight zoom */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
/*footer*/

/* Footer Section - UPDATED */
.footer {
    background-color: #ffffff;
    padding: 10px;
    border-top: 1px solid #ddd;
    color: #6c8c6b;
    font-family: 'Century Schoolbook Bold', serif;
    position: relative;
    font-size: 1rem;
}

.footer h2 {
    text-align: center;
    font-family: serif;
    color: #a5513a;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    /* ✅ Changed to center content */
    padding: 0 2rem;
    /* ✅ Added padding instead of margin-left */
    margin-left: 21rem;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left h3,
.footer-right h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #6c8c6b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #6c8c6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 0;
    /* ✅ Removed padding-left */
}

.footer-right ul {
    padding-right: 0;
    /* ✅ Removed padding-right */
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.footer-right ul li {
    margin-bottom: 1rem;
}

.footer-right ul li a {
    text-decoration: none;
    color: #6c8c6b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-right ul li a:hover {
    color: #355c34;
}

.footer-leaf {
    position: absolute;
    bottom: 84px;
    right: 20px;
    width: 22vw;
    max-width: 220px;
    opacity: 0.2;
    pointer-events: none;
    transform: rotate(-90deg);
}

/* ✅ ENHANCED MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .footer {
        padding: 20px 10px;
    }

    .footer h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        letter-spacing: 0.5px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        /* ✅ Reduced padding for mobile */
        margin: 0 auto;
    }

    .footer-left,
    .footer-right {
        padding: 0;
        min-width: unset;
        width: 100%;
    }

    .footer-left p {
        padding-left: 0;
        text-align: center;
    }

    .footer-right ul {
        padding: 0;
        margin: 1rem 0;
        text-align: center;
    }

    .footer-right ul li {
        margin-bottom: 0.75rem;
    }

    .footer-leaf {
        width: 28vw;
        max-width: 160px;
        bottom: 20px;
        right: 10px;
    }
}

/* ✅ EXTRA SMALL DEVICES */
@media (max-width: 480px) {
    .footer {
        padding: 20px 5px;
    }

    .footer h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
        /* ✅ Minimal padding for very small screens */
    }

    .footer-left p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-right ul li a {
        font-size: 0.9rem;
    }

    .footer-leaf {
        width: 35vw;
        max-width: 120px;
        right: 10px;
        bottom: 5px;
    }
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 10px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.6;
    color: #6c8c6b;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #6c8c6b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #6c8c6b;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #355c34;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom .xl-logo {
    height: 30px;
    margin-right: 8px;
}

/* Responsive footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        font-size: 10px;
        padding: 15px 10px;
    }

    .footer-bottom .xl-logo {
        height: 20px;
    }

    .footer-bottom a::after {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        font-size: 9px;
        padding: 10px 5px;
    }

    .footer-bottom .xl-logo {
        height: 18px;
        margin-right: 5px;
    }
}

/* Mobile devices: ≤480px */
@media (max-width: 480px) {
    .header {
        padding: 1rem 0.5rem;
    }

    .logo-container .logo {
        max-width: 90px;
    }

    .navbar {
        gap: 0.5rem;
        padding: 0.5rem;
        top: 60px;
    }

    .dropbtn,
    .navbar a {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    #text1 {
        margin-top: -10px;
        font-size: 18px;
    }

    #text2 {
        font-size: 14px;
    }

    @media (max-width: 480px) {
        .rectangle-box {
            width: 90%;
            height: 130px;
            /* taller box for small screens */
            padding: 15px;
            margin: 40px auto;
        }
    }

    #text1 {
        font-size: 15px;
        margin-top: 5%;
    }

    #text2 {
        font-size: 8px;
    }


    .image {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 95%;
        margin-top: -60px;
    }

    .image img {
        height: auto;
    }

    .rectangle-box2 {
        margin-top: -590%;
        height: 2300px;
        background-color: #5a7552;
        padding-bottom: 60px;
    }
}
.social-bar {
    position: fixed;
    top: 50%;
    right: 30px;
    /* Stick to right edge */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    gap: 12px;
    z-index: 1000;
}

.social-bar a {
    display: block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-bar img {
    width: 100%;
    /* Full width of container */
    height: auto;
    display: block;
}

.social-bar a:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-bar {
        top: auto;
        bottom: 10%;
        right: 10px;
        transform: none;
        gap: 8px;
    }

    .social-bar a {
        width: 30px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .social-bar {
        top: 30%;
        /* optional: reposition slightly */
        gap: 8px;
    }

    .social-bar a {
        width: 30px;
        height: 30px;
    }

    .social-bar a:hover {
        transform: scale(1.05);
        /* smaller scale on small screens */
    }
}




@media (max-width: 480px) {
    .hamburger {
        display: block;
        font-size: 1.8rem;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 1001;
        color: #714b27;
        cursor: pointer;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: static;
        top: 0;
        right: -100%;
        width: 80%;
        height: 200px;
        background: #fff;
        padding: 2rem 1.5rem;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
    }

    .navbar.active {
        display: flex;
        right: 0;
        top: 90px;
    }

    .navbar a,
    .dropbtn {
        font-size: 0.9rem;
        padding: 0.75rem 0;
        color: #714b27;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: bold;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: relative;
        background-color: #fff;
        padding-left: 0.5rem;
        box-shadow: none;
        display: none;
        flex-direction: column;
    }

    .dropdown.open .dropdown-content {
        display: flex;
    }

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown-content a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        color: #714b27;
        margin-left: -32px;
    }

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

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: none;
        flex-direction: column;
        padding-left: 1rem;
        z-index: 999;
    }

    .dropdown.open .dropdown-content {
        display: flex;
    }

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown-content a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        color: #714b27;
        border-bottom: 1px solid #eee;
        
    }

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


}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 10px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.6;
    color: #6c8c6b;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #6c8c6b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #6c8c6b;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #355c34;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom .xl-logo {
    height: 30px;
    margin-right: 8px;
}

/* Responsive footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        font-size: 10px;
        padding: 15px 10px;
        flex-direction: column;
    }

    .footer-bottom .xl-logo {
        height: 20px;
    }

    /* Make footer-bottom links always underlined on mobile */
    .footer-bottom a::after {
        width: 100%;
    }
}
/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 30px;
    z-index: 999;
    background-color:#714B27; /* brown tone */
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none; /* hidden initially */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#scrollToTopBtn img {
    width: 24px;
    height: 24px;
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}
