*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html{
    scroll-behavior: smooth;
}

/* HEADER */
.header {
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    background: linear-gradient(90deg, #002100 0%, #01492F 100%);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_text {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Language */
.language {
    position: relative;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

.selected-lang {
    padding: 5px 10px;
}

.lang-dropdown {
    position: absolute;
    top: 35px;
    right: 0;
    background: rgb(255, 255, 255);
    list-style: none;
    padding: 10px 0;
    display: none;
    border-radius: 4px;
    min-width: 140px;
    border: solid 1px rgba(0, 0, 0, 0.13);
}

.lang-dropdown li {
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3s;
    color: #002100;
}

.lang-dropdown li:hover {
    background: rgba(217, 217, 217, 1);
}

/* Socials */
.socials a {
    color: white;
    margin-left: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.socials a img{
    width: 24px;
    height: 24px;
    margin-left: 10px;
    object-fit: contain;
    transition: 0.3s;
}

.socials a:hover {
    color: #c9a869;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media(max-width: 768px) {
    .socials {
        display: none;
    }

    .language {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}












/* CONTACT STRIP */
.contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid rgba(1, 60, 32, 1);
    padding: 25px 20px;
    position: relative;
}

/* Left Image */
.strip-image img {
    width: auto;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

/* Middle Content */
.strip-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.strip-content h2 {
    color: rgba(1, 60, 32, 1);
    font-size: 24px;
    font-weight: bolder;
}

.contact-icons{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
}

/* Contact Icons */
.contact-icons a {
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.contact-icons a img{
    width: 35px;
    height: 35px;
    margin-left: 5px;
    object-fit: contain;
    transition: 0.3s;
}

.contact-icons a:hover {
    transform: translateY(-3px);
}

/* Right Menu */
.strip-menu {
    position: relative;
}

.strip-menu-header{
    position: relative;
    display: none;
}

/* Hamburger Box */
.hamburger {
    width: 50px;
    height: 50px;
    background: rgba(1, 60, 32, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
}

.hamburger span {
    width: 22px;
    height: 3px;
    background: white;
    margin: 3px 0;
}


.hamburger_sec {
    width: 50px;
    height: 50px;
    background: rgba(1, 60, 32, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
}

.hamburger_sec span {
    width: 22px;
    height: 3px;
    background: white;
    margin: 3px 0;
}

/* Dropdown */
.strip-dropdown {
    position: absolute;
    right: 0;
    top: 60px;
    background: #ffffff;
    border: solid 2px rgba(0, 0, 0, 0.13);
    display: none;
    flex-direction: column;
    min-width: 160px;
    z-index: 2;
}

.strip-dropdown a {
    padding: 12px;
    color: rgba(1, 60, 32, 1);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    font-weight: bolder;
    font-size: 14px;
}

.strip-dropdown a:hover {
    background: rgba(217, 217, 217, 1);
}


/* Dropdown */
.strip-dropdown_sec {
    position: absolute;
    right: 0;
    top: 60px;
    background: #ffffff;
    border: solid 2px rgba(0, 0, 0, 0.13);
    display: none;
    flex-direction: column;
    min-width: 160px;
    z-index: 2;
}

.strip-dropdown_sec a {
    padding: 12px;
    color: rgba(1, 60, 32, 1);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
    font-weight: bolder;
    font-size: 14px;
}

.strip-dropdown_sec a:hover {
    background: rgba(217, 217, 217, 1);
}

/* Responsive */
@media(max-width: 768px) {
    .contact-strip {
        flex-direction: row;
        gap: 20px;
        text-align: center;
    }

    .strip-content-title{
        display: none;
    }

    .strip-menu{
        display: none;
    }

    .strip-menu-header{
        display: block;
    }

    .strip-content {
        flex-direction: column;
    }
}



.banner {
    width: 100%;
    height: 60vh; /* responsive height */
    min-height: 350px;
    background-image: url(../images/sec2a1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}







/* INFO SECTION */
.info-section {
    display: flex;
    gap: 60px;
    padding: 60px 20%;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* Cards */
.info-card {
    flex: 1;
    min-height: 500px;
    border: 2px solid #d1d5db;
    border-radius: 32px;
    background: #fff;
    transition: 0.3s ease;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* SLIDER CARD */
.slider-card {
    padding: 20px;
}

/* Slider Container */
.slider {
    position: relative;
    width: 100%;
    height: 450px;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 20px;
}

/* Slides */
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

/* Arrows */
.prev,
.next {
    height: 40px;
    width: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover,
.next:hover {
    background: rgba(1, 60, 32, 1);
}

.info-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.info-card p {
    color: #555;
    line-height: 1.6;
}

/* Hover Effect */
.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(1, 60, 32, 1);
}

/* Responsive */
@media(max-width: 768px) {
    .info-section {
        flex-direction: column;
    }
}

/* Feature Rows */
.feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    width: 80%;
}

.feature-row img {
    width: 45px;
    height: 45px;
}

.feature-row span {
    color: rgba(1, 60, 32, 1);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
}


/* Tablet */
@media (max-width: 1024px) {
    .info-section {
        gap: 40px;
        padding: 50px 6%;
    }

    .slider {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .info-section {
        flex-direction: column;
        padding: 40px 5%;
        gap: 40px;
    }

    .info-card {
        min-height: auto;
        padding: 25px;
    }

    .slider {
        height: 300px;
    }

    .feature-row span {
        font-size: 16px;
    }

    .feature-row img {
        width: 38px;
        height: 38px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .slider {
        height: 250px;
    }

    .feature-row span {
        font-size: 14px;
    }
}













/* ABOUT SECTION */
.about-section {
    padding: 80px 8%;
    text-align: center;
}

/* Label */
.about-label {
    text-align: left;
    font-size: 25px;
    letter-spacing: 2px;
    color: rgba(92, 154, 51, 1);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Content */
.about-content {
    max-width: 2500px;
    margin: 0 auto;
}

.about-text {
    font-size: 22px;
    line-height: 1.8;
    text-align: left;
    font-weight: bold;
}

/* Hidden Extra Text */
.more-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.more-text p{
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
}

/* Toggle Button */
.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: rgba(1, 60, 32, 1);
    font-weight: 600;
    margin-top: 15px;
    float: left;
}

.toggle-btn .arrow {
    transition: transform 0.3s ease;
}

/* Active State */
.about-content.active .more-text {
    max-height: 300px;
}

.about-content.active .arrow {
    transform: rotate(180deg);
}

.system-more p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:20px;
    text-align:left;
    font-weight:bold;
}


/* Responsive */
@media(max-width: 768px) {
    .about-text {
        font-size: 17px;
    }
    .more-text p{
        font-size: 17px;
    }
    .system-more p{
        font-size: 17px;
    }
}

.toggle-text{
    padding: 10px 10px;
    background-color: rgba(1, 60, 32, 1);
    color: white;
}











/* GALLERY SECTION */

.gallery-section{
    padding:20px 8%;
}

.gallery-slider{
    position:relative;
    display:flex;
    align-items:center;
}

.gallery-track{
    display:flex;
    gap:25px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.gallery-item{
    min-width:220px;
    cursor:pointer;
    text-align:center;
}

.gallery-item img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:12px;
    border:2px solid #e5e5e5;
    transition:.3s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

.gallery-item p{
    margin-top:10px;
    font-weight:600;
    color:rgba(1,60,32,1);
}

/* arrows */

.g-prev,
.g-next{
    height:40px;
    width:40px;
    border:none;
    background:rgba(1,60,32,1);
    color:white;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    position: absolute;
}

.g-prev{
    margin-right:10px;
    left: -5%;
}

.g-next{
    margin-left:10px;
    right: -5%;
}


/* Hide child images in slider */
.gallery-item .child_images {
    display: none;
}

/* Popup overlay */
.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    box-sizing: border-box;
}

/* Popup box */
.popup-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh; /* prevent overflow */
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Close button */
.popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Title */
.popup-title {
    color: rgba(1,60,32,1);
    margin-bottom: 10px;
    font-size: 22px;
    text-align: left;
}

/* Popup content (main image + text + thumbnails) */
.popup-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Main image */
.popup-img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

/* Text under main image */
.popup-text {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* Thumbnails container */
.popup-thumbs {
    display: flex;
    gap: 10px;
    padding-bottom: 5px;
}

/* Individual thumbnails */
.popup-thumbs img.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-shrink: 0;
}

.popup-thumbs img.thumb.active {
    border-color: #4caf50;
}

/* Scrollbar styling (optional) */
.popup-thumbs::-webkit-scrollbar {
    height: 6px;
}

.popup-thumbs::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}



.gallery-track{
    scroll-snap-type: x mandatory;
}

.gallery-item{
    scroll-snap-align: start;
}


.gallery-track_sec{
    scroll-snap-type: x mandatory;
}

.gallery-item_sec{
    scroll-snap-align: start;
}


/* SYSTEM SECTION */

.system-section{
    padding:80px 8%;
    text-align:center;
}

.system-label{
    text-align:left;
    font-size:25px;
    letter-spacing:2px;
    color:rgba(92,154,51,1);
    font-weight:600;
    margin-bottom:20px;
}

.system-content{
    max-width:2500px;
    margin:20px auto;
}

.system-text{
    font-size:22px;
    line-height:1.8;
    text-align:left;
    font-weight:bold;
}

/* hidden text */

.system-more{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

/* toggle button */

.system-toggle{
    display:inline-flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    color:rgba(1,60,32,1);
    font-weight:600;
    margin-top:15px;
    float:left;
}

.system-toggle-text{
    padding:10px 10px;
    background:rgba(1,60,32,1);
    color:white;
}

.system-arrow{
    transition:transform .3s ease;
}

/* active state */

.system-content.active .system-more{
    max-height:300px;
}

.system-content.active .system-arrow{
    transform:rotate(180deg);
}

/* responsive */

@media(max-width:768px){

.system-section{
    padding:60px 6%;
}

.system-text{
    font-size:17px;
}

}


/* SYSTEM SECTION */

.system-section{
    padding:80px 8%;
}

.system-label{
    font-size:25px;
    letter-spacing:2px;
    color:rgba(92,154,51,1);
    font-weight:600;
    margin-bottom:30px;
}

/* layout */

.system-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

/* TEXT */

.system-content{
    flex:1;
}

/* IMAGE */

.system-image{
    flex:1;
    transition: .3s;
}

.system-image:hover{
    transform: scale(1.2);
}

.system-image img{
    width:100%;
    height:auto;
    border-radius:20px;
    object-fit:cover;
}

/* hidden text */

.system-more{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

/* button */

.system-toggle{
    display:inline-flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    margin-top:10px;
}

.system-toggle-text{
    padding:10px 14px;
    background:rgba(1,60,32,1);
    color:white;
    font-weight:600;
}

.system-arrow{
    transition:transform .3s;
}

.system-content.active .system-more{
    max-height:300px;
}

.system-content.active .system-arrow{
    transform:rotate(180deg);
}

/* TABLET */

@media(max-width:1024px){

.system-wrapper{
    gap:30px;
}

}

/* MOBILE */

@media(max-width:768px){

.system-wrapper{
    flex-direction:column;
}

.system-image{
    order:-1;
}

.system-text{
    font-size:17px;
}

}










.images-strip{
    width:100%;
    margin-top: 20px;
}

.images-image{
    width:100%;
}

.images-image img{
    width:100%;
    height:auto;
    display:block;
}







.images-strip-sec{
    width: 100%;
    padding: 60px 5%;
    background: #f8f8f8;
}

.images-image-children{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: auto;
}

.images-image-children img{
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 14px;
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Hover effect */
.images-image-children img:hover{
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}


/* Tablet */
@media (max-width: 900px){
    .images-image-children{
        grid-template-columns: repeat(2, 1fr);
    }

    .images-image-children img{
        height: 260px;
    }
}

/* Mobile */
@media (max-width: 600px){
    
    .images-image-children{
        grid-template-columns: 1fr;
    }

    .images-image-children img{
        height: 220px;
    }
}

.images-image-children_sec{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}




/* GALLERY SECTION */

.gallery-section_sec{
    padding:80px 8%;
}

.gallery-slider_sec{
    position:relative;
    display:flex;
    align-items:center;
}

.gallery-track_sec{
    display:flex;
    gap:25px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.gallery-item_sec{
    min-width:220px;
    cursor:pointer;
    text-align:center;
}

.gallery-item_sec img{
    width:100%;
    height:300px;
    object-fit:contain;
    border-radius:12px;
    border:2px solid #e5e5e5;
    transition:.3s;
}

.gallery-item_sec img:hover{
    transform:scale(1.05);
}

.gallery-item_sec:hover img{
    transform: scale(1.05);
}

.gallery-item_sec:hover p{
    margin-top: 10px;
}

.gallery-item_sec p{
    font-weight: 600;
    color: white;
    background: grey;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    transition:.3s;
}

/* arrows */

.g-prev_sec,
.g-next_sec{
    height:40px;
    width:40px;
    border:none;
    background:rgba(1,60,32,1);
    color:white;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    position: absolute;
}

.g-prev_sec{
    margin-right:10px;
    left: -5%;
}

.g-next_sec{
    margin-left:10px;
    right: -5%;
}


/* POPUP */

.gallery-popup_sec{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.6);
    z-index:2000;
    padding:20px;
}

.popup-box_sec{
    background:white;
    padding:30px;
    border-radius:10px;
    max-width:900px;
    width:90%;
    max-height:80vh;
    overflow-y:auto;
    position:relative;
}

.popup-close_sec{
    position:absolute;
    right:15px;
    top:10px;
    font-size:28px;
    cursor:pointer;
}

.popup-title_sec{
    margin-bottom:20px;
    color:rgba(1,60,32,1);
}

.popup-content_sec{
    display:flex;
    flex-direction: column;
    gap:25px;
}

.popup-img_sec{
    width:50%;
    max-width:30%;
    height:auto;
    border-radius:8px;
    object-fit:cover;
}

.popup-text_sec{
    flex:1;
    min-width:0;
    line-height:1.6;
}


/* MOBILE */

@media(max-width:768px){

.popup-content_sec{
    flex-direction:column;
    gap:15px;
}

.popup-img_sec{
    width:100%;
}

.popup-box_sec{
    padding:20px;
}

.popup-title_sec{
    font-size:20px;
}

}







.slider_section{
    width:100%;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    padding: 0 10px; /* small padding on mobile */
}

.slider_container{
    overflow-y:auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider_container::-webkit-scrollbar{
    display: none;
}

.popup-box_sec::-webkit-scrollbar{
    display: none;
}

.slider_track{
    display:flex;
    transition:transform 0.5s ease;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: nowrap;
}

.slide_third{
    flex: 0 0 calc(25% - 20px); /* 4 slides per row on desktop */
    box-sizing:border-box;
    background:#fff;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide_third:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.slide_third img{
    width:100%;
    height:auto; /* keep aspect ratio */
    object-fit:contain;
    border-radius:14px;
    display:block;
}

.partner-label{
    font-size: 25px;
    letter-spacing: 2px;
    color: rgba(92, 154, 51, 1);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px){
    .slide_third{
        flex: 0 0 calc(15% - 20px); /* 3 slides per row */
    }
}

@media (max-width: 768px){
    .slide_third{
        flex: 0 0 calc(25% - 20px); /* 2 slides per row */
    }
}

@media (max-width: 480px){
    .slide_third{
        flex: 0 0 calc(50% - 20px); /* 1 slide per row */
    }
}










.contact_section{
    width: 100%;
    padding: 40px 10px;
    box-sizing: border-box;
}

.contact_container{
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    border-radius: 60px;
    border: solid 1px rgb(188, 188, 188);
    padding: 60px 60px;
}

.contact_map{
    flex: 1 1 40%;
    border: 1px solid rgba(0,0,0,0.22);
    border-radius: 50px;
    overflow: hidden;
}

.contact_map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact_content{
    flex: 1 1 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_title{
    color: rgba(92,154,51,1);
    font-size: clamp(22px, 2.5vw, 32px);
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.contact_subtitle{
    color: rgba(0,64,36,1);
    font-size: clamp(16px, 1.8vw, 22px);
    margin-bottom: 25px;
    line-height: 1.4;
    text-align: center;
    font-weight: bolder;
}

.contact_info{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.info_box{
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f8f8;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info_icon{
    font-size: 20px;
}

.info_icon img{
    height: 25px;
    width: 25px;
}

.footer_icon img{
    height: 20px;
    width: 20px;
}

.contact_social a img{
    height: 30px;
    width: 30px;
}

.social_small a img{
    height: 30px;
    width: 30px;
}

.info_text{
    font-size: 16px;
    color: #004024;
    word-break: break-word;
    text-decoration: none;
}

.info_text_white{
    font-size: 16px;
    color: white;
    word-break: break-word;
    text-decoration: none;
}

.contact_social{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact_social a i{
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 30px;
    color: #004024;
}

/* Responsive adjustments */
@media (max-width: 1024px){
    .contact_container{
        flex-direction: column;
    }
    .contact_map{
        border-radius: 20px 20px 0 0;
        height: 250px;
    }
}

@media (max-width: 480px){
    .contact_content{
        padding: 20px 10px;
    }
    .info_box{
        flex-direction: column;
        align-items: flex-start;
    }
    .contact_social img{
        width: 35px;
        height: 35px;
    }
}




.footer{
    background-color: #004024; /* dark green */
    color: #fff;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_left, .footer_right{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer_icon{
    font-size: 18px;
}

.footer_center{
    display: flex;
    justify-content: center;
    flex: 1;
}

.footer_logo{
    max-height: 100px;
}

.footer_right{
    flex-direction: row;
    gap: 15px;
}

.footer_right img, .social_small img{
    width: 25px;
    height: 25px;
}

/* Small social icons inside phone row */
.social_small{
    display: flex;
    gap: 8px;
    margin-left: 10px;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 1024px){
    .footer_container{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer_left{
        flex-direction: column;
        gap: 20px;
        margin-bottom: 15px;
    }
    .footer_item{
        text-align: center;
        
        justify-content: center;
    }
    .social_small{
        margin-left: 5px;
    }
}

@media (max-width: 480px){
    .footer_logo{
        max-height: 100px;
    }
    .footer_right img, .social_small img{
        width: 20px;
        height: 20px;
    }
}

.social_small i{
    color: white;
}

.quick-links {
    background-color: transparent;
    padding: 20px 0;
    width: 100%;
}

.quick-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center on small screens */
    gap: 25px; /* space between links */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 20px;
}

.quick-links-container a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: clamp(10px,1.5vw,14px);
    transition: all 0.3s ease;
}

.quick-links-container a:hover {
    color: rgba(92,154,51,1);
    transform: translateY(-2px);
}

/* Responsive: stack on very small screens */
@media(max-width:500px){
    .quick-links-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}




/* Mobile responsiveness */
@media (max-width: 768px) {
    .popup-box {
        max-height: 70vh;
        padding: 15px;
        max-width: 95%;
    }

    .popup-img {
        max-height: 250px;
    }

    .popup-title {
        font-size: 18px;
    }

    .popup-text {
        font-size: 14px;
    }

    .popup-thumbs img.thumb {
        width: 50px;
        height: 50px;
    }
    
    .gallery-item img{
        height: 250px;
        width: 100%;
    }
    
    .gallery-item{
        min-width: 100%;
    }
    
    .gallery-item_sec{
        min-width: 100% !important;
    }
    
    .contact-icons a img{
        width: 20px;
        height: 20px;
    }
    
    .contact-icons{
        gap: 1px;
    }
    
    .contact-icons a{
        width: 20px;
        height: 20px;
    }
    
    .social_small{
        gap: 0px;
    }
}


