html{
  scroll-behavior:smooth;
}
html, body{
  width:100%;
  overflow-x:hidden;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, sans-serif;
  line-height:1.7;
  color:#111827;
  background:#ffffff;
}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:#0B1220;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 8%;
}

.logo{ 
    display:flex;
    align-items:left; 
    gap:10px; 
    font-weight:700; 
    font-size:1.3rem; 
    color:white; 
} 
.nav-logo{ 
    height:48px; 
    width:auto; 
    display:block; 
    border-radius:8px; 
}
.navbar .logo{
    display:flex; 
    align-items:left; 
    gap:10px; 
} 
.nav-logo{
    height:38px; 
    width:auto; 
    display:block; 
    border-radius:6px; 
} 
@media (max-width:768px){
    .navbar .logo{ justify-content:left; text-align:left; width:100%; } .nav-logo{ height:60px; } .navbar .logo span{ font-size:1.5rem; } }
.logo{
    font-weight:700; 
    font-size:1.3rem; 
}
nav a{
  color:white;
  text-decoration:none;
  margin-left:22px;
  font-weight:500;
}

/* HERO */
.hero{
  background:#0B1220;
  color:white;
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  padding:80px 8%;
  flex-wrap:wrap;
}

.hero-text{
  flex:1;
  min-width:300px;
}

.hero-text h1{
  font-size:3.3rem;
  line-height:1.15;
  margin-bottom:20px;
}

.hero-text p{
  color:#CBD5E1;
  font-size:1.08rem;
  margin-bottom:28px;
  max-width:620px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-image{
  flex:1;
  min-width:300px;
}

.hero-image img{
  width:100%;
  border-radius:22px;
  display:block;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* BUTTONS */
.btn{
  display:inline-block;
  padding:13px 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s ease;
}

.primary{
  background:#2563EB;
  color:white;
}

.primary:hover{
  background:#1D4ED8;
}

.whatsapp{
  background:#22C55E;
  color:white;
}

.whatsapp:hover{
  background:#16A34A;
}

/* SECTIONS */
.section{
  padding:80px 20px;
}

.aboutandpouch{
  display: flex;
}
.white{
  flex:1;
  min-width:0;
  border-radius:20px;
  background:#c5c9d6;
}
/* ===== About Section Typography Upgrade ===== */

#about{
    font-family:'Poppins', Arial, sans-serif;
    text-align: left;
    font-size:16px;
    line-height:1.9;
    color:#1F2937;
}

#about h2{
    text-align: center;
    font-size:2rem;
    font-weight:800;
    margin-bottom:20px;
    color:#0B1220;
    letter-spacing:-0.5px;
}

#about div{
    /* text-align:justify ; */
    margin-bottom:18px;
    color:#374151;
    font-weight:400;
}

#about div:nth-of-type(1){
    font-size:17px;
    color:#111827;
}

#about div:nth-of-type(n+3){
    background:#ffffff;
    padding:14px 18px;
    border-radius:14px;
    border-left:4px solid #2563EB;
    box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.pouch-showcase{
    background:#07123A;
    padding:80px 20px;
    flex:1;
    min-width:0;
    display:flex;
    border-radius:20px;
}

.pouch-showcase h2{
    text-align:center;
    color:#fff !important;
    font-size:2.5rem;
    margin-bottom:45px;
}

.pouch-grid{
    display: grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:26px;
}

.pouch-card{
    position:relative;
    background:#E7E7E7;
    border-radius:18px;
    padding:24px 20px 22px;
    text-align:center;
    overflow:hidden;
    transition:all .35s ease;

}

.pouch-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.28);
}

.pouch-tag{
    position:absolute;
    top:0;
    right:0;
    background:#FF6A00;
    color:#fff;
    font-size:14px;
    font-weight:700;
    padding:10px 16px;
    border-bottom-left-radius:14px;
}

.pouch-card img{
    width:100%;
    height:140px;
    object-fit:contain;
    margin-bottom:18px;
    transition:transform .35s ease;
}

.pouch-card:hover img{
    transform:scale(1.06);
}

.pouch-card h3{
    color:#111;
    font-size:1.15rem;
    line-height:1.3;
    margin:0;
    font-weight:800;
}

@media(max-width:768px){

    .pouch-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .pouch-card{
        padding:18px 14px 18px;
    }

    .pouch-card img{
        height:130px;
    }

    .pouch-card h3{
        font-size:0.98rem;
    }

    .pouch-showcase h2{
        font-size:2rem;
    }
}


.light{
  background:#F8FAFC;
}


.dark{
  background:#0B1220;
  color:white;
}

.section h2{
  text-align:center;
  font-size:2.2rem;
  margin-bottom:16px;
  color:#0B1220;
}

.dark h2{
  color:white;
}

.section-subtitle{
  text-align:center;
  color:#6B7280;
  max-width:760px;
  margin:0 auto 40px;
}
#about{
  font-size: 20px;
  text-align: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;  
}

/* MACHINE CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
  margin-top:35px;
}

.card{
  background:white;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  transition:0.3s ease;
  padding: 20px;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 42px rgba(37,99,235,0.18);
}

.card img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
  margin: 5px;
}

.card-content{
  padding:22px;
}

.card h3{
  font-size:1.35rem;
  color:#0B1220;
  margin-bottom:10px;
}

.card p{
  color:#2563EB;
  font-weight:700;
  margin-bottom:18px;
}

.card a{
  display:inline-block;
  background:#2563EB;
  color:white;
  text-decoration:none;
  padding:11px 18px;
  border-radius:10px;
  font-weight:700;
}

/* SERVICES */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap: 28px;
}

.service{
  background:white;
  padding:28px;
  border-radius:20px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
}

.service h3{
  color:#0B1220;
  margin-bottom:12px;
}

/* CONTACT FORM */
.contact-form{
  max-width:720px;
  margin:0 auto 40px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  padding:14px 16px;
  border:1px solid #D1D5DB;
  border-radius:12px;
  font-size:15px;
  background:white;
}

.contact-form textarea{
  min-height:130px;
  resize:vertical;
}

.contact-form button{
  background:#2563EB;
  color:white;
  border:none;
  padding:14px;
  border-radius:12px;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
}

.contact-info{
  text-align:center;
  color:#CBD5E1;
  line-height:1.9;
}

/* FOOTER */
.footer{
  background:#050A14;
  color:white;
  text-align:center;
  padding:50px 20px;
}

.footer h3{
  font-size:1.6rem;
  margin-bottom:12px;
}

.footer p{
  color:#CBD5E1;
  margin:8px 0;
}

/* FLOATING WHATSAPP */
.floating-whatsapp{
  position:fixed;
  bottom:22px;
  right:22px;
  width:64px;
  height:64px;
  background:#22C55E;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  text-decoration:none;
  box-shadow:0 10px 28px rgba(0,0,0,0.25);
  z-index:9999;
}

/* RESPONSIVE */
@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:14px;
    padding:16px 20px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
  }

  nav a{
    margin-left:0;
  }

  .hero{
    text-align:center;
    min-height:80vh;
    padding:60px 20px;
  }

  .hero-text h1{
    font-size:2.2rem;
  }

  .hero-buttons{
    justify-content:center;
  }

  .section{
    padding:60px 18px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .card img{
    height:220px;
  }
}
/* ===== Leadership Section ===== */

.leadership{
    background:#07123A;
    padding:90px 20px;
}

.leadership .leadership-title{
    text-align:center;
    font-size:2.8rem;
    font-weight:800;
    color:#ffffff !important;
    margin-bottom:60px;
    position:relative;
}

.leadership .leadership-title::after{
    content:'';
    width:100px;
    height:4px;
    background:#ff7a00;
    display:block;
    margin:16px auto 0;
    border-radius:20px;
}

.leader-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
    gap:60px;
    align-items:center;
}

.leadership .leader-card{
    display:flex;
    align-items:center;
    gap:28px;
    background:transparent !important;
    box-shadow:none !important;
    padding:0 !important;
    border-radius:0 !important;
    transform:none !important;
}

.leader-image-wrap{
    position:relative;
    width:300px;
    flex-shrink:0;
}

.leader-shape{
    position:absolute;
    inset:-10px;
    border:2px solid #ff7a00;
    border-radius:26px;
    transform:rotate(-6deg);
    transition:transform .45s ease;
    z-index:0;
}

.leader-image-wrap img{
    width:100%;
    display:block;
    border-radius:22px;
    position:relative;
    z-index:1;
}

.leader-card:hover .leader-shape{
    transform:rotate(-14deg);
}

.leader-content h3{
    font-size:2rem;
    margin-bottom:10px;
    color:#ffffff;
}

.leader-content span{
    display:inline-block;
    color:#ff7a00;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.leader-content p{
    color:#d7d9e6;
    line-height:1.8;
    max-width:340px;
}

@media(max-width:768px){

    .leader-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .leadership .leader-card{
        flex-direction:column;
        text-align:center;
    }

    .leader-image-wrap{
        width:220px;
    }

    .leader-content p{
        max-width:100%;
    }

    .leadership .leadership-title{
        font-size:2rem;
    }
}

/* ===== Machine Videos Section ===== */

.machine-videos{
    background:#07123A;
    padding:80px 20px;
}

.machine-videos h2{
    text-align:center;
    color:#fff;
    font-size:2.5rem;
    margin-bottom:45px;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.video-card{
    position:relative;
    background:#E7E7E7;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    transition:all .35s ease;
    color:#111;
}

.video-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.28);
}

.video-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    display:block;
}

.play-btn{
    position:absolute;
    top:85px;
    left:50%;
    transform:translateX(-50%);
    width:62px;
    height:62px;
    background:#FF6A00;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    box-shadow:0 8px 18px rgba(0,0,0,0.3);
}

.video-content{
    padding:22px;
}

.video-content h3{
    margin:0 0 12px;
    font-size:1.25rem;
    font-weight:800;
}

.video-content p{
    margin:0;
    color:#444;
    line-height:1.7;
    font-size:0.95rem;
}

@media(max-width:768px){

    .machine-videos h2{
        font-size:2rem;
    }

    .video-grid{
        grid-template-columns:1fr;
    }

    .video-card img{
        height:200px;
    }
}
@media (max-width: 768px){

  /* About + Pouch become vertical */
  .aboutandpouch{
    flex-direction:column;
    gap:20px;
  }

  .white,
  .pouch-showcase{
    width:100%;
    border-radius:18px;
  }

  /* About section */
  #about{
    font-size:15px;
    line-height:1.8;
    text-align:left;
    padding:0 5px;
  }

  #about h2{
    text-align:center;
    font-size:1.5rem;
    margin-bottom:18px;
  }

  #about div{
    margin-bottom:14px;
  }

  /* Pouch section */
  .pouch-showcase{
    padding:40px 15px;
  }

  .pouch-showcase h2{
    font-size:1.6rem;
    margin-bottom:28px;
  }

  .pouch-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .pouch-card{
    padding:14px 10px;
    border-radius:14px;
  }

  .pouch-card img{
    height:90px;
    margin-bottom:10px;
  }

  .pouch-card h3{
    font-size:0.85rem;
    line-height:1.25;
  }

  /* Hero */
  .hero{
    padding:50px 20px;
    gap:30px;
  }

  .hero-text h1{
    font-size:2rem;
  }

  .hero-text p{
    font-size:0.95rem;
  }

  /* Machine cards */
  .cards{
    grid-template-columns:1fr;
    gap:20px;
  }

  .card{
    padding:16px;
  }

  .card img{
    height:200px;
    margin:0 0 14px 0;
  }

  .card h3{
    font-size:1.15rem;
  }

  .card p{
    font-size:0.95rem;
  }

  /* Videos */
  .machine-videos{
    padding:50px 15px;
  }

  .machine-videos h2{
    font-size:1.6rem;
  }

  .video-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .video-card img{
    height:180px;
  }

  .video-content{
    padding:16px;
  }

  .video-content h3{
    font-size:1.05rem;
  }

  .video-content p{
    font-size:0.9rem;
  }

  /* Leadership */
  .leadership{
    padding:55px 15px;
  }

  .leadership .leadership-title{
    font-size:1.8rem;
    margin-bottom:35px;
  }

  .leader-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .leadership .leader-card{
    flex-direction:column;
    text-align:center;
    gap:18px;
  }

  .leader-image-wrap{
    width:190px;
  }

  .leader-content h3{
    font-size:1.4rem;
  }

  .leader-content p{
    font-size:0.95rem;
    line-height:1.7;
    max-width:100%;
  }

  /* Contact */
  .contact-form{
    gap:14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea{
    font-size:16px;
  }

  /* Navbar */
  .navbar{
    padding:14px 16px;
  }

  .logo{
    font-size:1rem;
  }

  nav a{
    font-size:0.9rem;
  }

  /* Section spacing */
  .section{
    padding:55px 16px;
  }

  .section h2{
    font-size:1.7rem;
  }
}
@media (max-width:768px){

  .aboutandpouch{
    flex-direction:column;
    gap:20px;
  }

  .white,
  .pouch-showcase{
    width:100%;
    flex:none;
  }

  .pouch-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .leader-grid{
    grid-template-columns:1fr;
  }

  .video-grid{
    grid-template-columns:1fr;
  }

  .cards{
    grid-template-columns:1fr;
  }
}