:root{

--green:#6aa84f;
--dark:#111111;
--light:#ffffff;
--gray:#f5f5f5;
--bg-dark:#0f1318;
--card-bg:#181d24;
--green:#76b852;
--white:#ffffff;
}
*,
*::before,
*::after{
    box-sizing:border-box;
}

.project-explorer,
.project-explorer *{
    max-width:100%;
}

.explorer-wrapper,
.project-info,
.project-gallery,
.project-details,
.main-image-container,
.thumbnail-track{
    min-width:0;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#11161c;
    /* overflow-x: hidden; */

}
html
{
    scroll-behavior: smooth;
}
.container{
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
}
.reveal{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    .8s ease;

}
.reveal.active{

    opacity:1;

    transform:
    translateY(0);

}


.navbar{

position:fixed;
width:100%;
top:20px;
z-index:1002;
padding:0 30px;

}

.nav-container{
max-width:1400px;
margin:auto;
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 30px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(20px);
border-radius:24px;
border:1px solid rgba(255,255,255,.15);

}

.logo img{
height:55px;
}

.nav-menu{

display:flex;
gap:35px;
align-items:center;

}

.nav-menu a{

text-decoration:none;
color:white;
font-weight:500;

transition:.3s;

}

.nav-menu a:hover{
color:var(--green);
}

.nav-dropdown{
position:relative;
display:flex;
align-items:center;
}

.nav-dropdown-toggle{
border:none;
background:none;
font:inherit;
color:inherit;
cursor:pointer;
display:inline-flex;
align-items:center;
gap:8px;
}

.nav-dropdown-toggle::after{
content:"▾";
font-size:.75rem;
line-height:1;
transition:.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after{
transform:rotate(180deg);
}

.nav-dropdown-menu{
position:absolute;
top:100%;
left:0;
min-width:220px;
padding:14px 0 0;
border-radius:18px;
background:rgba(17,17,17,.96);
border:1px solid rgba(255,255,255,.12);
box-shadow:0 24px 50px rgba(0,0,0,.28);
display:grid;
gap:8px;
opacity:0;
visibility:hidden;
transform:translateY(12px);
pointer-events:none;
transition:.25s ease;
z-index:1000;
}

.nav-dropdown-menu a{
margin:0 12px;
padding:10px 12px;
border-radius:12px;
white-space:nowrap;
}

.nav-dropdown-menu a:hover{
background:rgba(255,255,255,.08);
color:var(--green);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
opacity:1;
visibility:visible;
transform:translateY(0);
pointer-events:auto;
}

.nav-btn{
background:var(--green);
color:white;
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.nav-btn:hover{

transform:translateY(-3px);

}

.hamburger{
    display:none;
    position:relative;
    z-index:1003;
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:5px;

}

.hamburger span{

    width:28px;
    height:3px;
    background:white;
    border-radius:50px;
    transition:.3s;

}




.hamburger.active span:nth-child(1){

    transform:
    rotate(45deg)
    translate(6px,6px);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(6px,-6px);

}
.navbar{
transition:.4s;
}

.navbar.active{
/* padding:0; */
}

.navbar.active .nav-container{
background:
rgba(17, 17, 17, 0.658);
}
.nav-dropdown-toggle{

    appearance:none;
    -webkit-appearance:none;

    background:none;
    border:none;

    color:white;
    font-weight:500;
    font-size:inherit;
    font-family:inherit;

    cursor:pointer;

    padding:0;

}




.service-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:120px;

}
.service-glow{

    position:absolute;

    will-change:transform;

    border-radius:50%;

    background:var(--green);

    filter:blur(180px);

    opacity:.12;

}
.glow-1{

    width:550px;
    height:550px;

    top:-250px;
    right:-150px;

}
.glow-2{

    width:450px;
    height:450px;

    bottom:-200px;
    left:-100px;

}
.service-grid{

    display:grid;

    grid-template-columns:
    1.2fr 1fr;
    
    gap:80px;

    align-items:center;

}
.service-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.2);

    color:var(--green);

    margin-bottom:25px;

}
.service-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--green);

    animation:pulse 2s infinite;

}
.service-content h1{

    font-size:
    clamp(3.5rem,7vw,6.5rem);

    line-height:1;

    color:white;

    margin-bottom:25px;

}
.service-content h1 span{

    display:block;

    color:var(--green);

}
.service-content p{

    font-size:1.15rem;

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;

}
.hero-stats{

    display:flex;

    gap:20px;

    margin-bottom:45px;

    flex-wrap:wrap;

}
.hero-stat{

    padding:20px 25px;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

}
.hero-stat strong{

    display:block;

    color:var(--green);

    font-size:1.8rem;

}
.hero-stat span{

    color:
    rgba(255,255,255,.65);

}
.hero-actions{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}
.btn-primary{

    padding:18px 35px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #76b852,
    #4d9232
    );

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}
.btn-primary:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px rgba(118,184,82,.25);

}
.btn-secondary{

    padding:18px 35px;

    border-radius:60px;

    border:
    1px solid rgba(255,255,255,.12);

    color:white;

    text-decoration:none;

    backdrop-filter:blur(20px);

}
.visual-card{

    position:relative;

}
.visual-card img{

    width:100%;

    will-change:transform;

    transition:transform .2s ease-out;

    border-radius:40px;

    display:block;

    box-shadow:
    0 40px 80px rgba(0,0,0,.4);

}
.floating-badge{

    position:absolute;

    will-change:transform;

    transition:transform .2s ease-out;

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px 20px;

    border-radius:20px;

    background:
    rgba(24,29,36,.92);

    backdrop-filter:blur(25px);

    border:
    1px solid rgba(118,184,82,.15);

    color:white;

}
.badge-1{

    top:40px;
    left:-40px;

}
.badge-2{

    bottom:40px;
    right:-30px;

}

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

}
.scroll-indicator span{

    display:block;

    width:2px;
    height:60px;

    background:
    linear-gradient(
    transparent,
    var(--green)
    );

    animation:scrollLine 2s infinite;

}


@keyframes pulse{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.25);

    }

}
@keyframes scrollLine{

    0%{

        opacity:.2;

        transform:
        translateY(-10px);

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:.2;

        transform:
        translateY(10px);

    }

}
@keyframes float{

    0%,100%{

        transform:
        translateY(0);

    }

    50%{

        transform:
        translateY(-12px);

    }

}
.badge-1,
.badge-2{

    animation:
    float 4s ease-in-out infinite;

}




















.service-overview{

    position:relative;

    padding:140px 0;

    overflow:hidden;

}
.overview-glow{

    position:absolute;

    border-radius:50%;

    background:#76b852;

    filter:blur(180px);
    
    opacity:.08;

}
.glow-left{

    width:500px;
    height:500px;

    top:-150px;
    left:-200px;

}
.glow-right{

    width:500px;
    height:500px;

    bottom:-150px;
    right:-200px;

}
.overview-header{

    max-width:850px;

    text-align:center;

    margin:0 auto 90px;

}
.overview-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.2);

    color:#76b852;

    margin-bottom:25px;

}
.overview-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#76b852;

}
.overview-header h2{

    color:white;

    font-size:
    clamp(3rem,5vw,5rem);

    line-height:1.1;

    margin-bottom:25px;

}
.overview-header h2 span{

    color:#76b852;

}
.overview-header p{

    color:
    rgba(255,255,255,.72);

    line-height:1.9;

    font-size:1.1rem;

}
.overview-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;

}
.overview-image{

    position:relative;

}
.overview-image img{

    width:100%;

    border-radius:36px;

    display:block;

}
.image-badge{

    position:absolute;

    left:30px;
    bottom:30px;

    padding:18px 22px;

    border-radius:20px;

    background:
    rgba(24,29,36,.95);

    backdrop-filter:blur(20px);

    color:white;

}
.overview-content{

    display:grid;

    gap:20px;

}
.benefit-card{

    display:flex;

    gap:20px;

    padding:25px;

    border-radius:24px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.06);

    transition:.4s;

}
.benefit-card:hover{

    transform:
    translateX(10px);

    border-color:
    rgba(118,184,82,.3);

}
.benefit-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:
    rgba(118,184,82,.12);

    display:flex;

    align-items:center;
    justify-content:center;

    color:#76b852;

    flex-shrink:0;

}
.benefit-card h3{

    color:white;

    margin-bottom:10px;

}
.benefit-card p{

    color:
    rgba(255,255,255,.7);

}
.overview-stats{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;

    margin-top:90px;

}
.overview-stat{

    text-align:center;

    padding:35px;

    border-radius:24px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(255,255,255,.05);

}
.overview-stat strong{

    display:block;

    color:#76b852;

    font-size:2.3rem;

    margin-bottom:8px;

}
.overview-stat span{

    color:
    rgba(255,255,255,.7);

}















.project-explorer{

    padding:140px 0;

    background:#f8f7f4;

    position:relative;

    overflow:hidden;

}
.explorer-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 90px;

}
.explorer-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(118,184,82,.08);

    border:
    1px solid rgba(118,184,82,.15);

    color:#76b852;

    margin-bottom:25px;

}
.explorer-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#76b852;

}
.explorer-header h2{

    font-size:
    clamp(3rem,5vw,5rem);

    line-height:1.05;

    color:#111;

    margin-bottom:25px;

}
.explorer-header h2 span{

    display:block;

    color:#76b852;

}
.explorer-header p{

    color:#66707a;

    line-height:1.9;

}
.explorer-wrapper{

     display:grid;

    grid-template-columns:
    minmax(0, 450px) minmax(0, 1fr);

    gap:60px;

    align-items:center;

}
.project-info{

    position:relative;

}
.project-counter{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:40px;

}
.project-counter span{

    font-size:2rem;

    font-weight:700;

    color:#76b852;

}
.counter-line{

    flex:1;

    height:2px;

    background:#d8d8d8;

}
.project-details h3{

    font-size:3rem;

    line-height:1.1;

    margin-bottom:20px;

    color:#111;

}
.project-details p{

    color:#66707a;

    line-height:1.9;

    margin-bottom:30px;

}
.project-location{

    display:flex;

    gap:12px;

    align-items:center;

    color:#76b852;

    margin-bottom:30px;

}
.project-features{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:40px;

}
.project-features span{

    padding:12px 18px;

    border-radius:50px;

    background:white;

    border:1px solid #ececec;

    font-size:.9rem;

}
.explorer-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;

    color:white;

    font-weight:700;

    background:
    linear-gradient(
    135deg,
    #76b852,
    #4c8d33
    );

    transition:.4s;

}
.explorer-btn:hover{

    transform:
    translateY(-5px);

}
.project-gallery{

    position:relative;

}
.main-image-container{

    position:relative;

    overflow:hidden;

    border-radius:36px;

    height:700px;

}
#mainImage{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;

}
.main-image-container:hover #mainImage{

    transform:scale(1.05);

}
.image-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.55),
    transparent 50%
    );

}
.overlay-badge{

    position:absolute;

    left:30px;
    bottom:30px;

    padding:14px 20px;

    border-radius:50px;

    background:
    rgba(255,255,255,.9);

    backdrop-filter:blur(20px);

    font-weight:600;

}
.gallery-controls{

    position:absolute;

    top:30px;
    right:30px;

    display:flex;

    gap:12px;

}
.gallery-controls button{

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:white;

    transition:.3s;

}
.gallery-controls button:hover{

    background:#76b852;

    color:white;

}
.thumbnail-track{

    display:flex;

    gap:12px;

    margin-top:25px;

    overflow-x:auto;

    padding-bottom:10px;

}
.thumbnail-track::-webkit-scrollbar{

    height:6px;

}
.thumbnail-track::-webkit-scrollbar-thumb{

    background:#76b852;

}
.thumbnail{

    width:120px;
    height:80px;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    flex-shrink:0;

    opacity:.55;

    transition:.4s;

    border:3px solid transparent;

}
.thumbnail.active{

    opacity:1;

    border-color:#76b852;

}
.thumbnail img{

    width:100%;
    height:100%;

    object-fit:cover;

}



























.footer{

    position:relative;

    background:#11161c;

    color:white;

    padding:
    140px 0 40px;

    overflow:hidden;

}

.footer-glow{

    position:absolute;

    width:600px;
    height:600px;

    background:#8DCD3B;

    opacity:.12;


    border-radius:50%;

    top:-250px;
    right:-250px;

    filter:blur(220px);

}
.footer-cta{

    text-align:center;

    max-width:850px;

    margin:
    0 auto 100px;

}

.footer-tag{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.2);

    color:#76b852;

    margin-bottom:25px;

}

.footer-cta h2{

    font-size:
    clamp(3rem,5vw,5rem);

    line-height:1.1;

}

.footer-cta h2 span{

    display:block;

    color:#8DCD3B;

}

.footer-cta p{

    color:#b6bcc2;

    max-width:700px;

    margin:
    25px auto;

    line-height:1.8;

}
.footer-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
    18px 36px;

    border-radius:100px;

    background:
    linear-gradient(
    135deg,
    #76b852,
    #5ea63e
    );

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.footer-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px
    rgba(118,184,82,.3);

}

.footer-grid{

    display:grid;

    grid-template-columns:
1.8fr
1fr
1fr
1fr;

    gap:50px;

    padding-bottom:60px;

    border-bottom:
    1px solid rgba(255,255,255,.08);

}

.footer-logo{

    position:relative;
}
.footer-logo::after{
    content:"";

    position:absolute;

    width:200px;
    height:200px;

    background:#99ff62ab;


    border-radius:50%;

    top:-50px;
    left:-50px;

    filter:blur(120px);
}

.footer-badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;
    margin-bottom:20px;

}
.footer-badges span{

    padding:10px 16px;

    border-radius:50px;

    background:
    rgba(141,205,59,.1);

    border:
    1px solid rgba(141,205,59,.2);

    color:#8DCD3B;

    font-size:.85rem;

}

.footer-column h4{

    margin-bottom:25px;

    color:white;

}

.footer-column a{

    display:block;

    color:#b6bcc2;

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;

}

.footer-column a:hover{

    color:#76b852;

    transform:
    translateX(5px);

}

.social-links{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-links a{

    width:50px;
    height:50px;
    text-align: center;
    font-size: 2.5rem;
    border-radius:50%;

    backdrop-filter:blur(20px);

    background:
    rgba(255,255,255,.05);
    color:white;

}

.social-links a:hover{

    background:#76b852;

}

.footer-trust{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

    margin:
    50px 0;

}

.footer-trust div{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.06);

    padding:18px;

    border-radius:18px;

    text-align:center;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.footer-bottom p{

    color:#8b949e;

}

.footer-bottom a{

    color:#8b949e;

    text-decoration:none;

    margin-left:20px;

}
.footer-logo img{

    width:130px;

    height:auto;

}























@media(max-width:1200px){
     .project-explorer{
        padding:120px 0;
    }

    .explorer-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .project-info{
        max-width:850px;
        margin:0 auto;
    }

    .project-gallery{
        width:100%;
    }

    .main-image-container{
        height:550px;
        width:100%;
    }


}


@media (max-width:991px){
    .overview-grid{

    grid-template-columns:1fr;

}

.overview-stats{

    grid-template-columns:
    repeat(2,1fr);

}
    .service-grid{

    grid-template-columns:1fr;

    gap:50px;

}

.service-content{

    text-align:center;

}

.hero-stats{

    justify-content:center;

}

.hero-actions{

    justify-content:center;

}

.badge-1{

    left:10px;

}

.badge-2{

    right:10px;

}

    
    .nav-menu{

    position:fixed;

    top:0;
    right:-200%;

    width:min(320px, 100vw);
    height:100vh;

    background:#111;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:35px;

    padding:110px 32px 32px;

    overflow-y:auto;

    transition:.4s;

}

.nav-menu.active{

    right:0;

}

.hamburger{

    display:flex;

}

.nav-btn{

    display:none;

}

.nav-menu > a{
    width:100%;
    text-align:center;
}

.nav-dropdown{
    width:100%;
    flex-direction:column;
    align-items:center;
}

.nav-dropdown-toggle{
    width:100%;
    justify-content:center;
}

.nav-dropdown-menu{
    position:static;
    min-width:0;
    width:100%;
    margin-top:12px;
    padding:0;
    border:none;
    border-left:none;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    display: none;
    pointer-events:auto;
    justify-items:center;
}

.nav-dropdown-menu a{
    margin:0;
    width:100%;
    text-align:center;
}

.nav-dropdown.open .nav-dropdown-menu{
    display:grid;
}

    .nav-dropdown{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-dropdown-toggle{
        width:100%;
        text-align:left;
        padding:12px 0;
    }

    .nav-dropdown-menu{
        position:static;
        width:100%;
        margin-top:10px;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        pointer-events:auto;

        background:rgba(255,255,255,.04);
        border:none;
        box-shadow:none;
    }

    .nav-dropdown.open .nav-dropdown-menu{
        display:grid;
    }
     .project-explorer{
        padding:110px 0;
    }

    .explorer-header{
        margin-bottom:60px;
        padding:0 10px;
    }

    .explorer-header h2{
        font-size:clamp(2.3rem, 8vw, 3.5rem);
    }

    .explorer-header p{
        font-size:1rem;
        line-height:1.7;
    }

    .project-details h3{
        font-size:clamp(2rem, 7vw, 2.8rem);
    }

    .project-details p{
        font-size:1rem;
        line-height:1.7;
    }

    .main-image-container{
        height:460px;
        border-radius:28px;
    }

    .project-features{
        gap:10px;
    }

    .project-features span{
        font-size:.85rem;
        padding:10px 14px;
    }

}


@media (max-width:768px){
    .gallery-controls
    {
        display: none;
    }
   
   .project-explorer{
        padding:90px 0;
    }

    .explorer-wrapper{
        gap:40px;
    }

    .project-counter{
        margin-bottom:25px;
    }

    .project-counter span{
        font-size:1.5rem;
    }

    .project-details h3{
        font-size:2rem;
    }

    .main-image-container{
        height:380px;
        border-radius:24px;
    }

    .gallery-controls{
        top:auto;
        right:20px;
        bottom:20px;
    }

    .gallery-controls button{
        width:48px;
        height:48px;
    }

    .overlay-badge{
        left:20px;
        bottom:20px;
        font-size:.85rem;
        padding:11px 16px;
    }

    .thumbnail-track{
        width:100%;
        overflow-x:auto;
        gap:10px;
        padding-bottom:12px;
    }

    .thumbnail{
        width:95px;
        height:65px;
        border-radius:14px;
    }


    .service-overview{

    padding:100px 0;

}

.overview-header{

    margin-bottom:60px;

}

.overview-stats{

    grid-template-columns:1fr;

}

.benefit-card{

    flex-direction:column;

}

.benefit-icon{

    width:60px;
    height:60px;

}
    .hero-stats
    {
        display: none;
    }
    .service-content h1{

    font-size:3rem;

}

.hero-stat{

    width:100%;

}

.hero-actions{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    width:100%;

    text-align:center;

}

.floating-badge{

    display:none;

}
     .footer-grid{

        grid-template-columns:
        1fr;

    }

    .footer-trust{

        grid-template-columns:
        1fr;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }
}

@media(max-width:520px){

    .project-explorer{
        padding:80px 0;
    }

    .explorer-badge{
        padding:10px 16px;
        font-size:.8rem;
    }

    .explorer-header h2{
        font-size:2.2rem;
    }

    .explorer-header p{
        font-size:.95rem;
    }

    .project-details h3{
        font-size:1.8rem;
    }

    .project-details p{
        font-size:.95rem;
    }

    .project-features{
        display:grid;
        grid-template-columns:1fr;
    }

    .project-features span{
        width:100%;
        text-align:center;
    }

    .explorer-btn{
        width:100%;
        padding:16px 24px;
    }

    .main-image-container{
        height:320px;
        border-radius:22px;
    }

    .gallery-controls{
        right:16px;
        bottom:16px;
    }

    .gallery-controls button{
        width:44px;
        height:44px;
    }

    .thumbnail{
        width:85px;
        height:60px;
    }

}

@media(max-width:390px){

    .explorer-header h2{
        font-size:1.9rem;
    }

    .project-details h3{
        font-size:1.55rem;
    }

    .main-image-container{
        height:280px;
    }

    .overlay-badge{
        display:none;
    }

}