html{
    scroll-behavior: smooth;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior: smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0B1D26;
}

/* ================= NAVBAR ================= */

.navbar{
    width:100%;
    padding:30px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:absolute;
    top:0;
    left:0;
    z-index:1000;
}

.logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.logo-main{
    position:relative;
    width:90px;
    height:90px;
}

.logo-main span{
    position:absolute;
    font-family:'Playfair Display', serif;
    font-size:78px;
    font-weight:800;

    background:linear-gradient(90deg,#B8860B,#FFD700,#FFF8DC,#FFD700);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo-main span:first-child{
    left:0;
    top:0;
}

.logo-main span:last-child{
    left:35px;
    top:20px;
}

.logo-sub{
    margin-top:14px;
    font-size:20px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#d7d7d7;
}


.nav-links{
    display:flex;
    gap:68px;
    list-style:none;
}

    .nav-links a{
    text-decoration:none;
  margin-bottom:30px;
    line-height:1.2;
    color:#ccdddf;
    font-size:28px;
    font-weight:600;
   

}

.nav-links a:hover{
    color:#2E8B57;
}

.nav-btn{
    text-decoration:none;
    color:#fff;
   background: linear-gradient(90deg,#2E8B57,#B8A16A);
    padding:16px 32px;
    border-radius:35px;
    font-weight:600;
    font-size:24px;
    transition:0.3s ease;
}

.nav-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(200,169,126,0.4);
}

/* ================= HERO SECTION ================= */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:120px 8% 60px; /* navbar space */
    box-sizing:border-box;

    background:
    linear-gradient(rgba(11,29,38,0.75), rgba(22,58,69,0.65)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1600');
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width: 900px;
    width: 100%;
}

.hero-content h1{
    background: linear-gradient(90deg, #c8a97e, #F5E6C8);
    -webkit-background-clip: text;
    background-clip: text;
    font-size:68px;
    color: transparent;
}


.hero-content p{
    font-size:28px;
    color:#bec7d2;
    line-height:1.8;
    margin-bottom:45px;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:25px;
}

.btn-primary{
   text-decoration:none;
    border:2px solid #C8A97E;
    color:#fff;
    padding:20px 45px;
    border-radius:40px;
    font-weight:600;
   font-size:26px;
    transition:0.3s;
}

.btn-secondary{
    text-decoration:none;
    border:2px solid #C8A97E;
    color:#fff;
    padding:20px 45px;
    border-radius:40px;
    font-weight:600;
    font-size:26px;
    transition:0.3s;
}
.btn-primary:hover
.btn-secondary:hover{
    transform:translateY(-5px);
}
.btn-primary{
    background: linear-gradient(90deg,#2E8B57,#B8A16A);
}
.btn-primary:hover{
    box-shadow:0 8px 20px rgba(200,169,126,0.4);
}

.btn-secondary{
     background: linear-gradient(90deg,#2E8B57,#B8A16A);
}

.btn-secondary:hover{
    box-shadow:0 8px 20px rgba(200,169,126,0.4);
    }
    
/* ================= RESPONSIVE DESIGN ================= */

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero {
        min-height: 100vh;
        padding: 0 5%;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 18px;
        text-align: center;
    }
}
/* ================= STATS SECTION ================= */

.stats{
    padding:100px 8%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    background:#111827;
}
.stat-card i{
    font-size:50px;
    color:#2E8B57;
    margin-bottom:25px;
    text-shadow:0 0 15px rgba(46,139,87,0.5);
}

.stat-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);

    padding:50px 30px;
    text-align:center;

    border-radius:20px;

    transition:0.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:#C8A97E;
    box-shadow:0 10px 30px rgba(200,169,126,0.3);
}

.stat-card h2{
    font-size:40px;

    background:linear-gradient(90deg,#2E8B57,#B8A16A,#F5F5DC);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:20px;
    font-weight:700;

}

.stat-card p{
    color:#CBD5E1;
    font-size:28px;
}
@media(max-width:992px){

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .stats{
        grid-template-columns:1fr;
    }
}



/* ================= SERVICES SECTION ================= */

.services{
    padding:100px 8%;
    background:#163A45;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:60px;
    color:#dedea5;
    margin-bottom:20px;
    font-family:'Playfair Display', serif;
}

.section-title p{
    color:#d1d5db;
    font-size:22px;
}

.services-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,0.05);
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.1);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#B8A16A;
    box-shadow:0 10px 30px rgba(184,161,106,0.4);
}

.service-card i{
    font-size:60px;
    color:#2E8B57;
    margin-bottom:20px;
}

.service-card h3{
    color:#F5F5DC;
    font-size:28px;
    margin-bottom:15px;
}

.service-card p{
    color:#CBD5E1;
     font-size:20px;
    line-height:1.8;
}

/* ================= PROJECTS SECTION ================= */
body{
    margin: 0;
    padding: 0;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.projects{
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 8%;
    background: #0B1D26;
    margin-top: 80px;
}

.projects .section-title{
    text-align:center;
    margin-bottom:70px;
}

.projects .section-title h2{
    font-size:65px;
    color:#F5F5DC;
    font-family:'Playfair Display', serif;
    margin-bottom:15px;
}

.projects .section-title p{
    color:#CBD5E1;
    font-size:22px;
}

.projects-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    width:100%;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:450px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    transition:0.5s;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.project-card:hover{
    transform: translateY(-10px) scale(1.02);
    border: 2px solid #D4AF37;

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.7),
        0 0 40px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.3);
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,0.95)
    );
}

.project-overlay h3{
    color:#fff;
    font-size:28px;
    font-weight:600;
}

/* Responsive */

@media(max-width:992px){

    .projects-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .projects-container{
        grid-template-columns:1fr;
    }

    .projects .section-title h2{
        font-size:45px;
    }

}
.project-card::before,
.team-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.8s;
    z-index: 10;
}

.project-card:hover::before,
.team-card:hover::before{
    left: 150%;
}
/* ================= ABOUT SECTION ================= */

.about{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 8%;
  
    background:#102A34;
}

.about-content{
    flex:1;
}

.about-content span{
    color:#D4AF37;
    letter-spacing:3px;
    font-size:40px;
    font-weight:600;
}

.about-content h2{
    font-size:55px;
    color:#fff;
    margin:20px 0;
    line-height:1.2;
}

.about-content p{
    color:#CBD5E1;
    font-size:28px;
    line-height:1.8;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;
     color: #fff;
    padding:15px 35px;
    background: linear-gradient(90deg,#2E8B57,#B8A16A);
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    font-size:20px; /* Increase font size */
    transition:all 0.5s ease;

}

.about-btn:hover{
     color: #fff;
    transform: translateY(-5px);
    border: 2px solid #D4AF37;

    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);

    cursor: pointer;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:25px;
    transition:0.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}
@media(max-width:992px){

    .about{
        flex-direction:column;
        text-align:center;
    }

}
/* ================= TESTIMONIALS SECTION ================= */

.testimonials{
    padding:120px 8%;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background:#0B1D26;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.5s;
    border:2px solid transparent;
}

.testimonial-card img{
    width:200px;
    height:200px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #D4AF37;
    margin-bottom:25px;
}

.testimonial-card p{
    color:#CBD5E1;
    font-size:26px;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:8px;
}

.testimonial-card span{
    color:#D4AF37;
    font-size:20px;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border:2px solid #D4AF37;

    box-shadow:
        0 0 20px rgba(212,175,55,0.7),
        0 0 40px rgba(212,175,55,0.4);
}

/* Responsive */

@media(max-width:992px){
    .testimonial-container{
        grid-template-columns:1fr;
    }
}
/* ================= CONTACT SECTION (FINAL PREMIUM) ================= */
section{
    display:block;
}
.contact{
    padding:120px 8% 200px;  /* bottom extra space */
       min-height:85vh;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background:#102A34;
}

/* Title */
.contact .section-title{
    text-align:center;
    margin-bottom:20px;
}

.contact-subtext{
    text-align:center;
    color:#CBD5E1;
    font-size:24px;
    margin-bottom:60px;
}

/* Layout */
.contact-container{
      min-height:500px;
    display:flex;
    justify-content:space-between;
    gap:80px;
    align-items:flex-start;
}

/* LEFT SIDE */
.contact-info{
    width:50%;
}

.contact-info h3{
    color:#dfdf9e;
    font-size:28px;
    margin-bottom:15px;
}

.contact-info p{
    color:#CBD5E1;
    font-size:24px;
    line-height:1.6;
    margin-bottom:8px;
}

/* Info boxes (if you still use icons style) */
.info-box{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.info-box i{
    width:60px;
    height:60px;
    background:#D4AF37;
    color:#000;
    font-size:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.info-box h3{
    color:#fff;
    margin-bottom:5px;
    font-size:28px;
}

.info-box p{
    color:#CBD5E1;
    font-size:23px;
}

/* WHY LIST */
.why-list{
    margin-top:15px;
    padding-left:20px;
}

.why-list li{
    color:#CBD5E1;
    font-size:24px;
    margin-bottom:10px;
}

/* RIGHT SIDE FORM */
.contact-form{
    width:50%;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:18px;
    border:none;
    outline:none;
    border-radius:12px;
    background:rgba(255, 255, 255, 0.163);
    color:#060606e6;
    font-size:25px;
}

/* Button */
.contact-form button{
    padding:18px;
    border:none;
    border-radius:50px;
    background: linear-gradient(90deg,#2E8B57,#B8A16A);
    font-size:25px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
  color:#fff;
}

.contact-form button:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(212,175,55,0.6);
}

/* Privacy text */
.privacy{
    font-size:19px;
    color:#9CA3AF;
    text-align:center;
    margin-top:5px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .contact-container{
        flex-direction:column;
    }

    .contact-info,
    .contact-form{
        width:100%;
    }
}
.consultation{
     width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding:120px 8%;
    background:linear-gradient(135deg,#0B1D26,#111827);
    text-align:center;
}

.consultation-content h2{
    font-size:55px;
    color:#fff;
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.consultation-content p{
    font-size:22px;
    color:#CBD5E1;
    margin-bottom:40px;
}

.cta-btn{
    display:inline-block;
    padding:18px 40px;
   background: linear-gradient(90deg,#2E8B57,#B8A16A);
    color:#000;
    font-size:20px;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    transition:0.4s;
}

.cta-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px rgba(212,175,55,0.5);
}

section:last-of-type{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

html, body{
    margin:0;
    padding:0;
}
body{
    display:block;
}
.footer{
    background:#0B1D26;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding:80px 8% 30px;
    color:#CBD5E1;
    margin-top:0;
}

/* Top section */
.footer-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    margin-bottom:46px;
    text-align:center;
    align-items:start;
}
.footer-box{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.footer-box h2{
    color:#e3e69c;
    font-size:35px;
    margin-bottom:18px;
}

.footer-box h3{
    color:#e3e69c;
    font-size:30px;
    margin-bottom:18px;
    
    text-align:center;   /* IMPORTANT */
}

.footer-box p{
    font-size:25px;
    line-height:1.6;
    margin-bottom:16px;
}

/* Links */
.footer-box a{
    display:block;
    color:#CBD5E1;
    text-decoration:none;
    margin-bottom:10px;
    font-size:23px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#37d444;
    transform:translateY(-3px);
}
/* Bottom */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:20px;
    text-align:center;
    font-size:24px;
    color:#9CA3AF;
}

/* Responsive */
@media(max-width:992px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}
.social-icons{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#CBD5E1;
    font-size:18px;
    transition:0.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#86d352;
    color:#000;
    transform:translateY(-5px);
}
#topBtn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #D4AF37;
    cursor: pointer;
    display: none;
    z-index: 1000;
}
/* ================= DESIGN PROCESS SECTION ================= */

.process{
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 8%;
    background: #163A45;
}

.process-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
}

.process-card:hover{
    transform: translateY(-10px);
    border-color: #B8A16A;
    box-shadow: 0 10px 30px rgba(184,161,106,0.4);
}

.process-card i{
    font-size: 60px;
    color: #2E8B57;
    margin-bottom: 25px;
}

.process-card h3{
    color: #F5F5DC;
    font-size: 28px;
    margin-bottom: 15px;
}

.process-card p{
    color: #CBD5E1;
    font-size: 20px;
    line-height: 1.8;
}

@media(max-width:992px){

    .process-container{
        grid-template-columns: repeat(2,1fr);
    }

}

@media(max-width:768px){

    .process-container{
        grid-template-columns: 1fr;
    }

}
/* ================= TEAM SECTION ================= */

.team{
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 120px 8%;
    background: #102A34;
}

.team-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
}

.team-card:hover{
    transform: translateY(-10px);
    border-color: #D4AF37;

    box-shadow:
        0 0 20px rgba(212,175,55,0.5),
        0 0 40px rgba(212,175,55,0.3);
}

.team-card img{
    width: 100%;
    height: 800px;   /* Exact size */
    object-fit: cover;
}
.team-card:hover img{
    transform: scale(1.05);
}

.team-card h3{
    color: #fff;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.team-card span{
    color: #D4AF37;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 25px;
}

/* Responsive */

@media(max-width:992px){

    .team-container{
        grid-template-columns: 1fr;
    }

}
/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#102A34;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(#D4AF37,#F5E6A9);
    border-radius:10px;
}
#preloader{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#0B1D26;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#preloader h1{
    color:#D4AF37;
    font-size:60px;
    font-family:'Playfair Display', serif;
}
.hero-content{
    animation: fadeUp 1.5s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero{
    animation: heroZoom 2s ease;
}

@keyframes heroZoom{
    from{
        transform:scale(1.1);
    }
    to{
        transform:scale(1);
    }
}
header{
    animation: navDown 1s ease;
}

@keyframes navDown{
    from{
        opacity:0;
        transform:translateY(-100px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.scroll-down{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:#D4AF37;
    font-size:30px;
    animation:bounce 2s infinite;
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform:translate(-50%,0);
    }
    40%{
        transform:translate(-50%,-15px);
    }
    60%{
        transform:translate(-50%,-8px);
    }
}
nav ul li a{
    position: relative;
}

nav ul li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: .4s;
}

nav ul li a:hover::after{
    width: 100%;
}
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px){

    .hero-content h1{
        font-size:55px;
    }

    .hero-content p{
        font-size:22px;
    }

    .services-container,
    .projects-container,
    .team-container,
    .testimonial-container{
        grid-template-columns:1fr;
    }

    .process-container{
        grid-template-columns:repeat(2,1fr);
    }

    .about{
        flex-direction:column;
        text-align:center;
    }

    .contact-container{
        flex-direction:column;
    }

    .contact-info,
    .contact-form{
        width:100%;
    }

    .footer-container{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
        padding:20px 5%;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .nav-links a{
        font-size:20px;
    }

    .hero{
        padding:140px 5% 80px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:250px;
        font-size:18px;
        padding:15px 25px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .services-container,
    .projects-container,
    .process-container,
    .team-container,
    .testimonial-container{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:40px;
    }
}
@media (max-width: 768px){

    .navbar{
        flex-direction: column;
        gap: 15px;
        padding: 20px 5%;
    }

    .logo-main{
        width: 70px;
        height: 70px;
    }

    .logo-main span{
        font-size: 55px;
    }

    .logo-sub{
        font-size: 16px;
    }

    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links a{
        font-size: 8px;
        margin-bottom: 0;
    }

    .nav-btn{
        font-size: 18px;
        padding: 12px 24px;
    }

    .hero{
        padding-top: 320px;
    }
}
@media (max-width:768px){

    .navbar{
        flex-wrap: wrap;        /* allows safe fitting */
        justify-content: center;
        gap: 10px;
        padding: 15px 5%;
    }

    .logo{
        flex: 1 1 100%;
        text-align: center;
    }

    .logo-main{
        width: 60px;
        height: 60px;
        margin: auto;
    }

    .logo-main span{
        font-size: 40px;
    }

    .logo-sub{
        font-size: 12px;
        margin-top: 5px;
        text-align: center;
    }

    .nav-links{
        flex: 1 1 100%;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-links a{
        font-size: 14px;
    }

    .nav-btn{
        flex: 1 1 100%;
        text-align: center;
        font-size: 14px;
        padding: 10px 16px;
        margin-top: 5px;
    }
}
@media (max-width:768px){

    .navbar{
        display:flex;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:12px 5%;
        flex-wrap:nowrap;   /* IMPORTANT */
    }

    /* LEFT - LOGO */
    .logo{
        flex:1;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
    }

    .logo-main{
         position:relative;
        width:60px;
        height:60px;
    }

    .logo-main span{
        font-size:40px;
    }
    .logo-main span:first-child{
    left:0;
    top:0;
}

.logo-main span:last-child{
    left:17px;   /* reduced from 35px */
    top:9px;    /* slight tighten */
}

    .logo-sub{
        font-size:7px;
    }

    /* MIDDLE - NAV LINKS */
    .nav-links{
        flex:2;
        display:flex;
        justify-content:center;
        gap:7px;
    }

    .nav-links a{
        font-size:8px;
        white-space:nowrap;
    }

    /* RIGHT - BUTTON */
    .nav-btn{
        flex:1;
        display:flex;
        justify-content:flex-end;
        font-size:9px;
        padding:6px 10px;
        white-space:nowrap;
    }
}
@media (max-width: 768px){

    .navbar{
        flex-direction: row;   /* IMPORTANT */
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        gap: 10px;
    }

    /* LOGO small */
    .logo-main{
        width: 60px;
        height: 60px;
    }

    .logo-main span{
        font-size: 40px;
    }

    .logo-sub{
        font-size: 9px;
    }

    /* NAV LINKS center lo */
    .nav-links{
        gap: 8px;
        font-size: 7px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .nav-links a{
        font-size: 8px;
    }

    /* BUTTON small */
    .nav-btn{
        padding: 10px 14px;
        font-size: 10px;
        border-radius: 20px;
        white-space: nowrap;
    }
}
@media (max-width: 768px){

    .navbar{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 5%;
    }

    /* LOGO - compact */
    .logo-main{
        width: 50px;
        height: 50px;
    }

    .logo-main span{
        font-size: 30px;
    }

    .logo-sub{
        font-size: 6px;
        letter-spacing: 1px;
        margin-top: 1px;
    }

    /* NAV LINKS - small + single line */
    .nav-links{
        gap: 6px;
        flex-wrap: nowrap;
    }

    .nav-links a{
        font-size: 10px;
        font-weight: 500;
    }

    /* BUTTON - compact */
    .nav-btn{
        padding: 8px 12px;
        font-size: 7px;
        border-radius: 19px;
        white-space: nowrap;
    }
}
.hamburger{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.hamburger span{
    width:22px;
    height:2px;
    background:#fff;
}

/* MOBILE */
@media (max-width:768px){

    .hero{
        padding:120px 5% 60px;
        height:auto;
        min-height:100vh;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:250px;
        font-size:14px;
        padding:12px 18px;
    }
}
.hero{
    padding-top:120px;   /* NAVBAR space hack */
    min-height:100vh;
    box-sizing:border-box;
}
@media (max-width:768px){

    .hero{
        padding-top:140px;  /* navbar ki safe gap */
        min-height:100vh;
        height:auto;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:10px;
    }
}
@media (max-width:768px){

    .hero{
        padding:140px 5% 60px;
        min-height:100vh;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:260px;
    }
}
@media (max-width:768px){

    .hero{
        padding:140px 5% 60px;
        min-height:100vh;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:260px;
    }
}
section{
    padding:100px 8%;
    box-sizing:border-box;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:0 auto;
}