*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f9fa;
    color:#222;
}

/* ================= NAVBAR ================= */

.navbar{
    width:100%;
    padding:16px 8%;

    background:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:fixed;
    top:0;
    left:0;

    z-index:1000;

    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO */

.logo img{
    height:65px;
    width:auto;
    object-fit:contain;
}

/* DESKTOP NAV */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;

    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#222;

    font-size:17px;
    font-weight:500;

    transition:0.3s;
}

.nav-links a:hover{
    color:#1b8f4d;
}

/* HAMBURGER */

.hamburger{
    width:35px;
    height:28px;

    display:none;

    flex-direction:column;
    justify-content:space-between;

    cursor:pointer;
}

.hamburger span{
    width:100%;
    height:4px;

    background:#1b1b1b;

    border-radius:10px;

    transition:0.3s;
}

/* MOBILE MENU */

.mobile-menu{
    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:white;

    z-index:2000;

    padding:40px 30px;

    transition:0.4s ease;

    box-shadow:-5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active{
    right:0;
}

/* CLOSE BUTTON */

.close-btn{
    font-size:30px;
    cursor:pointer;

    margin-bottom:50px;

    text-align:right;
}

/* MOBILE LINKS */

.mobile-menu ul{
    list-style:none;
}

.mobile-menu ul li{
    margin-bottom:30px;
}

.mobile-menu ul li a{
    text-decoration:none;

    color:#222;

    font-size:22px;
    font-weight:500;

    transition:0.3s;
}

.mobile-menu ul li a:hover{
    color:#1b8f4d;
}

/* OVERLAY */

.menu-overlay{
    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.4);

    opacity:0;
    visibility:hidden;

    transition:0.3s;

    z-index:1500;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .logo img{
        height:55px;
    }

    .navbar{
        padding:14px 6%;
    }
}


/* HERO IMAGE SECTION */

.hero-image{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    margin-top:90px;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* DARK OVERLAY */

.hero-image::after{
    content:'';
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.45);
}

/* TEXT CONTENT */

.hero-overlay{
    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
    z-index:2;

    text-align:center;
    color:white;

    width:90%;
    max-width:900px;
}

.hero-overlay h1{
    font-size:72px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;

    text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.hero-overlay p{
    font-size:34px;
    font-weight:500;

    text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .hero-image{
        height:100vh;
        margin-top:78px;
    }

    .hero-overlay{
        width:90%;
    }

    .hero-overlay h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero-overlay p{
        font-size:22px;
    }

    .logo img{
        height:48px;
    }

    .navbar{
        padding:12px 5%;
    }
}

/* ABOUT / INTRO SECTION */

.expand-section{
    width:100%;
    padding:100px 8%;
    background:#f8f9fa;
}

.expand-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* TEXT */

.text-content{
    flex:1;
}

.text-content h2{
    font-size:52px;
    color:#1b8f4d;
    margin-bottom:25px;
    line-height:1.2;
}

.text-content p{
    font-size:18px;
    line-height:2;
    color:#444;
}

/* IMAGE */

.image-content{
    flex:1;
}

.image-content img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:18px;
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

    .expand-card{
        flex-direction:column-reverse;
        gap:40px;
    }

    .text-content h2{
        font-size:36px;
        text-align:center;
    }

    .text-content p{
        font-size:16px;
        line-height:1.8;
        text-align:center;
    }

    .image-content img{
        height:auto;
    }
}

/* ABOUT SECTION */

.about-section{
    width:100%;
    padding:100px 8%;
    background:#f8f9fa;
}

/* TOP IMAGE */

.about-top-image{
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:50px;
}

.about-top-image img{
    width:100%;
    max-width:900px;
    height:450px;

    object-fit:cover;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* CONTENT */

.about-content{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.about-content h2{
    font-size:52px;
    color:#1b8f4d;
    margin-bottom:30px;
}

.about-content p{
    font-size:18px;
    line-height:2;
    color:#444;
    margin-bottom:25px;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .about-section{
        padding:80px 6%;
    }

    .about-top-image img{
        height:250px;
        border-radius:14px;
    }

    .about-content h2{
        font-size:36px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.9;
        text-align:justify;
    }
}


/* PHOTOS SECTION */

.photos-section{
    width:100%;
    padding:100px 8%;
    background:#f8f9fa;
}

.photos-section h2{
    text-align:center;
    font-size:52px;
    color:#1b8f4d;
    margin-bottom:60px;
}

/* GRID */

.photo-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* IMAGE BOX */

.photo-item{
    width:100%;
    overflow:hidden;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    background:white;
}

.photo-item img{
    width:100%;
    height:320px;

    object-fit:cover;
    display:block;

    transition:0.4s ease;
}

/* HOVER EFFECT */

.photo-item:hover img{
    transform:scale(1.05);
}

/* TABLET */

@media(max-width:900px){

    .photo-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .photos-section h2{
        font-size:40px;
    }
}

/* MOBILE */

@media(max-width:600px){

    .photos-section{
        padding:80px 6%;
    }

    .photo-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .photo-item img{
        height:250px;
    }

    .photos-section h2{
        font-size:34px;
        margin-bottom:40px;
    }
}


/* COMMON SECTION */

.section{
    padding:100px 8%;
    text-align:center;
}

.section h2{
    font-size:42px;
    margin-bottom:30px;
    color:#1b8f4d;
}

/* ================= PHOTOS SECTION ================= */

.photo-grid{
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:40px;
}

/* IMAGE BOX */

.photo-box{
    width:100%;
    height:280px;

    border-radius:18px;
    overflow:hidden;

    background:#ddd;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;
    font-weight:600;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* IMAGE */

.photo-box img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* TABLET */

@media(max-width:1000px){

    .photo-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:600px){

    .photo-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .photo-box{
        height:260px;
    }
}
/* CONTACT SECTION */

.contact-section{
    width:100%;
    padding:100px 8%;
    background:#f8f9fa;
}

/* SECTION TITLE */

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    display:inline-block;
    padding:8px 18px;
    background:#e6f7ee;
    color:#1b8f4d;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:52px;
    color:#1b8f4d;
    margin-bottom:20px;
    line-height:1.2;
}

.section-heading p{
    max-width:750px;
    margin:auto;
    color:#555;
    font-size:18px;
    line-height:1.8;
}

/* CONTACT CONTAINER */

/* CONTACT SECTION */

.contact-section{
    width:100%;
    padding:100px 8%;
    background:#f8f9fa;
}

.contact-container{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:50px;
}

/* LEFT SIDE */

.contact-left{
    flex:1;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e6f7ef;
    color:#1b8f4d;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.contact-left h2{
    font-size:48px;
    line-height:1.2;
    color:#111;
    margin-bottom:20px;
}

.contact-left > p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:40px;
}

/* CONTACT DETAILS */

.contact-details{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* CARD */

.contact-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:24px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.contact-card:hover{
    transform:translateY(-5px);
}

.contact-icon{
    min-width:60px;
    height:60px;
    background:#1b8f4d;
    color:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.contact-info h3{
    font-size:22px;
    color:#111;
    margin-bottom:8px;
}

.contact-info p{
    font-size:16px;
    color:#666;
    line-height:1.8;
}

.contact-info a{
    color:#666;
    text-decoration:none;
    transition:0.3s;
}

.contact-info a:hover{
    color:#1b8f4d;
}

/* RIGHT SIDE MAP */

.contact-right{
    flex:1;
    position:sticky;
    top:100px;
}

.map-box{
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    background:#fff;
}

.map-box iframe{
    width:100%;
    height:650px;
    border:0;
    display:block;
}

/* TABLET */

@media(max-width:992px){

    .contact-container{
        flex-direction:column;
    }

    .contact-left h2{
        font-size:40px;
    }

    .contact-right{
        width:100%;
        position:relative;
        top:0;
    }

    .map-box iframe{
        height:450px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .contact-section{
        padding:80px 5%;
    }

    .contact-left h2{
        font-size:32px;
    }

    .contact-left > p{
        font-size:15px;
    }

    .contact-card{
        padding:18px;
        gap:15px;
    }

    .contact-icon{
        min-width:52px;
        height:52px;
        font-size:20px;
    }

    .contact-info h3{
        font-size:18px;
    }

    .contact-info p{
        font-size:14px;
    }

    .map-box iframe{
        height:320px;
    }
}

/* ================= FOOTER ================= */

.footer{
    width:100%;
    background:#06142d;
    color:white;
    padding-top:70px;
    margin-top:0;
}

/* CONTAINER */

.footer-container{
    width:100%;
    max-width:1400px;

    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;

    gap:80px;

    padding:0 8% 60px;
}

/* COLUMN */

.footer-column h2{
    font-size:48px;
    margin-bottom:30px;
    line-height:1.2;
}

/* FOOTER LOGO */ 
.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.footer-logo-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    padding: 6px;
    border-radius: 14px;
}

.footer-logo-box h2 {
    margin-bottom: 0;
}

.footer-column h3{
    font-size:34px;
    margin-bottom:30px;
}

/* PARAGRAPH */

.footer-column p{
    font-size:18px;
    line-height:2;
    color:#d6d6d6;
}

/* LINKS */

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:18px;
}

.footer-column ul li a{
    text-decoration:none;
    color:#d6d6d6;
    font-size:18px;

    transition:0.3s;
}

.footer-column ul li a:hover{
    color:#1b8f4d;
}

/* CONTACT ITEMS */

.footer-contact-item{
    margin-bottom:35px;
}

.footer-contact-item h4{
    font-size:22px;
    color:white;
    margin-bottom:12px;
    font-weight:600;
}

.footer-contact-item p{
    font-size:17px;
    line-height:1.9;
    color:#d6d6d6;
}

/* BOTTOM */

.footer-bottom {
    text-align: center;
    padding: 15px 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: #00c896;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* TABLET */

@media(max-width:1000px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }
}

/* MOBILE */

@media(max-width:700px){

    .footer{
        padding-top:50px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:50px;

        padding:0 6% 40px;
    }

    .footer-column h2{
        font-size:34px;
    }

    .footer-column h3{
        font-size:28px;
    }

    .footer-column p,
    .footer-column ul li a,
    .footer-contact-item p{
        font-size:16px;
    }

    .footer-contact-item h4{
        font-size:20px;
    }

    .footer-bottom p{
        font-size:14px;
    }
.footer-logo-box{
    gap:14px;
}

.footer-logo-box img{
    width:68px;
    height:68px;
}

.footer-logo-box h2{
    font-size:28px;
    line-height:1.2;
}

}