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

html, body {
    width: 100%;
    background: #dfe7dc; 
    font-family: 'Poppins', sans-serif;
}

.header {
    width: 100%;
    background: #113313; 
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.container.nav {
    display: flex;
    height: 132px;
    max-width: 1200px;
    margin: 0 auto;
    
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 220px;
    width: 322px;
    margin-left: -150px;
    margin-top: 30px;
    border-radius: 50%;
    object-fit: cover;
}

#navMenu {
    display: flex;
    gap: 48px; 
    margin-top: 10px;
    margin-right: -100px;
}

#navMenu a {
    text-decoration: none;
    color: #F5F5F5;
    font-size: 22px;
    font-family: "IBM Plex Serif", serif;;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 6px 0;
}

#navMenu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #D4AF37;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

#navMenu a:hover {
    color: #D4AF37;
}

#navMenu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 32px; 
    color: #D4AF37;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 1400px) {

    /* Reduce header height */
    .container.nav {
        height: 90px;
    }
    .logo-img {
        height: 130px;
    }
    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    .logo-img {
        margin-left: -70px;
    }

    #navMenu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #113313;

        flex-direction: column;
        align-items: center;
        gap: 20px;

        padding: 30px 0;

        display: none; /* hidden initially */
    }

    /* Show nav when active */
    #navMenu.active {
        display: flex;
    }

    /* Mobile nav links */
    #navMenu a {
        font-size: 18px;
        color: #ffffff;
    }

    #navMenu a::after {
        display: none; /* remove underline on mobile */
    }
    
}



.hero-banner {
    width: 100%;
    height: 55vh;
    background-image: url('img/products.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative; /* IMPORTANT */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* overlay for better readability (optional but premium) */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-banner h1 {
    position: relative;
    color: white;
    font-size: 48px;
    font-family: 'Playfair Display', sans-serif;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 150px;
    line-height: 1.2;
    z-index: 2;
}

/* Tablets */
@media (max-width: 768px){
    .hero-banner {
        height: 45vh;
    }

    .hero-banner h1 {
        font-size: 32px;
        margin-top: 80px;
    }
}

/* Mobile */
@media (max-width: 480px){
    .hero-banner {
        height: 40vh;
    }

    .hero-banner h1 {
        font-size: 24px;
        margin-top: 80px;
    }
}

.nova-about-section{
    padding:120px 8%;
}

.nova-about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.nova-about-images{
    position:relative;
}

.main-img img{
    width:80%;
    height:500px;
    object-fit:cover;
    border-radius:28px;
}

.small-img{
    position:absolute;
    bottom:-50px;
    right:30px;
}

.small-img img{
    width:260px;
    height:260px;
    object-fit:cover;
    border-radius:24px;
    border:8px solid #fff;
}

.exp-card{
    position:absolute;
    top:60px;
    right:70px;
        background: linear-gradient(135deg, #f5c542, #d89b00);
    color:#000000;
    padding:30px 34px;
    border-radius:24px;
    z-index:2;
}

.exp-card h2{
    font-size:54px;
    margin-bottom:10px;
}

.exp-card span{
    line-height:1.7;
}

.section-mini{
    color:#eb0000;
    font-size:17px;
    font-weight:600;
    letter-spacing:2px;
}

.nova-about-content h2{
    font-size:54px;
    line-height:1.2;
    color:#1b1b1b;
    margin:20px 0 28px;
    font-family:'Playfair Display',serif;
}

.nova-about-content p{
    color:#666;
    line-height:2;
    margin-bottom:22px;
}

.nova-list-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:35px 0;
}

.nova-point{
    color:#222;
    font-weight:500;
}

.nova-main-btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:50px;
    background: #d39a2c;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   STATS
========================= */

.nova-stats{
    background:#efe2cf;
    padding:60px 8%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-box{
    text-align:center;
    color:#050505;
}

.stat-box h2{
    font-size:52px;
    margin-bottom:12px;
    color: #000;
}

.stat-box span{
    color:rgba(255,255,255,0.8);
    color: #000;
}

/* =========================
   MISSION
========================= */

.nova-mission{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.mission-content h2{
    font-size:54px;
    line-height:1.2;
    margin:20px 0 24px;
    color:#1b1b1b;
    font-family:'Playfair Display',serif;
}

.mission-content p{
    color:#666;
    line-height:2;
}

.mission-tabs{
    display:flex;
    gap:14px;
    margin:35px 0;
}

.mission-tabs button{
    border:none;
    padding:14px 28px;
    border-radius:50px;
    background:#f4f4f4;
    cursor:pointer;
    font-weight:600;
}

.active-tab{
        background: #d39a2c !important;
    color:#fff;
}

.mission-card{
    background:#fff;
    padding:34px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.mission-card h3{
    margin-bottom:16px;
    color:#222;
}

.mission-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:28px;
}


/* =========================
   TABLETS (1024px)
========================= */
@media (max-width: 1024px){

  .nova-about-wrapper{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .nova-about-images{
    display: flex;
    justify-content: center;
  }

  .main-img img{
    width: 100%;
    height: auto;
    max-height: 450px;
  }

  .small-img{
    position: absolute;
    right: 10%;
    bottom: -40px;
  }

  .exp-card{
    top: 30px;
    right: 20px;
  }

  .nova-about-content{
    text-align: center;
  }

  .nova-list-grid{
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

}


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

  .nova-about-section{
    padding: 80px 5%;
  }

  .nova-about-content h2{
    font-size: 36px;
  }

  .nova-about-content p{
    font-size: 15px;
    line-height: 1.8;
  }

  .nova-list-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .small-img{
    display: none; /* avoids clutter */
  }

  .exp-card{
    position: relative;
    margin: 20px auto;
    right: auto;
    top: auto;
  }

  .main-img img{
    height: auto;
  }

  .nova-stats{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 5%;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .nova-about-content h2{
    font-size: 28px;
  }

  .exp-card h2{
    font-size: 40px;
  }

  .exp-card{
    padding: 22px;
  }

  .main-img img{
    border-radius: 18px;
  }

  .nova-main-btn{
    padding: 14px 28px;
  }

}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background: #113313; 
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

/* underline animation */
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #d4af37;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #f5d77a;
}

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

/* LEFT */
.footer-left {
    text-align: left;
    opacity: 0.9;
}

/* RIGHT */
.footer-right {
    text-align: right;
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER (premium subtle touch) */
.footer-right:hover {
    opacity: 1;
    color: #d4af37;
}

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

  .footer{
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 6%;
  }

  .footer-left,
  .footer-right{
    text-align: center;
    opacity: 0.9;
  }

  .footer-right{
    opacity: 0.8;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .footer{
    font-size: 14px;
    padding: 20px 5%;
  }

  .footer-left,
  .footer-right{
    line-height: 1.6;
  }

}