/* ================= GLOBAL RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f4f6f9;
  color:#222;
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* new css style for home page */
/* HEADER ONLY ON HERO (NOT STICKY) */
.simple-header{
  position:absolute;      /* 👈 key change */
  top:0;
  left:0;
  width:100%;
  background:transparent;
  z-index:10;
}



.simple-nav{
  max-width:1400px;
  margin:auto;
  padding:18px 36px;

  display:flex;
  align-items:center;         /* 🔥 one line */
  justify-content:space-between;
}
.nav-logo img,
.nav-menu li,
.theme-btn,
.lang-btn{
  line-height:1;
}

/* LOGO */
.nav-logo{
  display:flex;
  align-items:center;
}

.nav-logo img{
  height: 120px;       /* 🔥 INCREASED */
  width:auto;
  transform:scale(1.15); /* 🔥 slight zoom forward */
}


/* MENU */
.nav-menu{
  list-style:none;
  display:flex;
  align-items:center;     /* 🔥 fix */
  justify-content:center;
  gap:34px;
}

.nav-menu li{
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  position:relative;
  color:#fff;
  transition:color .3s ease;
}

.nav-menu li:hover,
.nav-menu li.active{
  color:#59d1f9;
}

.contact{
  color:#59d1f9;
}
/* small underline */
/* .nav-menu li.active::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  transform:translateX(-50%);
  width:22px;
  height:2px;
  background:#4dd2ff;
  border-radius:10px;
} */

/* RIGHT ACTIONS */
.nav-actions{
  display:flex;
  align-items:center;
  gap:18px;
}

.theme-btn,
.lang-btn{
  background:transparent !important;   /* ❌ NO WHITE */
  border:1px solid rgba(255,255,255,0.4);
  color:#fff;
  font-size:15px;
  padding:8px 14px;
  border-radius:50px;
  cursor:pointer;
  transition:0.3s ease;
}

.theme-btn:hover,
.lang-btn:hover{
  background:rgba(255,255,255,0.15);
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
}

.lang-label{
  font-size:14px;
  color:#fff;
  opacity:0.85;
}

.lang-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.5);
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  cursor:pointer;
}

.lang-btn:hover{
  background:rgba(255,255,255,0.15);
}

/* language dropdown (used on contact page) */
.lang-dropdown{
  background:#ff9f1a;
  color:#08142a;
  border:none;
  padding:6px 12px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  margin-left:8px;
}

/* When the menu is opened we add subtle brightness to menu items and important CTA buttons */
body.menu-bright .menu a,
body.menu-bright .hero-buttons a,
body.menu-bright .btn,
body.menu-bright .btn-primary,
body.menu-bright .btn-outline{
  filter: brightness(1.08);
  transition: filter .18s ease, box-shadow .18s ease, transform .18s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

body.dark{
  background:#0b1d39;
  color:#fff;
}

body.dark .products,
body.dark .highlights{
  background:#08142a;
}

body.dark .product-card,
body.dark .highlight-card{
  background:#132b52;
  color:#fff;
}


/* MENU */
.menu{
  list-style:none;
  display:flex;
  gap:12px;
}

.menu a{
  color:white;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  padding:8px 20px;
  border-radius:25px;
  transition:0.3s ease;
}

.menu a:hover,
.menu a.active{
  background:#ff9f1a;
  color:#08142a;
}
/* ================================================= */
/* ✅ FULL RESPONSIVE NAVBAR */
/* ================================================= */

/* 📱 MOBILE (max 576px) */
@media (max-width:576px){

  .simple-nav{
    padding:12px 20px;
  }

  .nav-logo img{
    height:70px;
    transform:none;
  }

  .nav-menu{
    display:none;
  }

  .nav-actions{
    gap:8px;
  }

  .theme-btn,
  .lang-btn{
    font-size:12px;
    padding:6px 10px;
  }

  /* move the hamburger/menu button to the far right on mobile */
  .menu-toggle{
    margin-left:auto;
    order:3; /* ensure it sits after nav items and actions */
    z-index:11;
    cursor:pointer;
  }

  /* hide the brightness/theme button entirely on mobile per request----------------------------------------------------------------------------------- */
  .theme-btn{ display:none !important; }
}

  /* When the hamburger toggles the menu, show it stacked vertically */
  .menu.show{
    display:flex; /* override default display:none on small screens */
    flex-direction:column;
    position:fixed; /* keep it above page content */
    top:70px; /* below header */
    left:0;
    width:100%;
    gap:6px;
    padding:12px 18px;
    background:rgba(0,0,0,0.55); /* semi-transparent, doesn't change item colors */
    z-index:9999; /* ensure it's above header and hero */
    animation: slideDown 0.28s ease forwards;
  }

  /* mobile-controls inside the menu: hidden on desktop, visible inside the opened mobile menu */
  .menu .mobile-controls{ display:none; }

  .menu.show li{ width:100%; }
  .menu.show a{
    display:block;
    padding:12px 14px;
    border-radius:8px;
    text-decoration:none;
    color:inherit; /* keep existing color rules */
    font-weight:600;
  }

  /* hide the theme (lightness) button while menu is open on mobile */
  .menu.show ~ .nav-actions .theme-btn{ display:none; }

  /* hide language switch while menu open */
  .menu.show ~ .nav-actions .lang-switch{ display:none; }

  @keyframes slideDown{
    0%{ transform:translateY(-8px); opacity:0; }
    100%{ transform:translateY(0); opacity:1; }
  }

  /* show the mobile controls when menu is open */
  .menu.show .mobile-controls{
    display:block;
    padding-top:12px;
    margin-top:8px;
    border-top:1px solid rgba(255,255,255,0.06);
  }

  .menu .mobile-controls-inner{
    display:flex;
    gap:10px;
    align-items:center;
    justify-content:flex-start;
    padding:6px 6px 12px 6px;
  }

  .mobile-theme-btn{
    background:transparent;
    border:1px solid rgba(255,255,255,0.18);
    color:#fff;
    padding:8px 12px;
    border-radius:10px;
    cursor:pointer;
  }

  .mobile-lang .lang-label{ display:none; }
  .mobile-lang .lang-dropdown{ margin-left:0; }


/* 📱 TABLET (577px – 992px) */
@media (min-width:577px) and (max-width:992px){

  .nav-logo img{
    height:90px;
    transform:none;
  }

  .nav-menu{
    gap:18px;
  }

  .nav-menu li{
    font-size:13px;
  }

  .theme-btn,
  .lang-btn{
    font-size:13px;
    padding:7px 12px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width:993px) and (max-width:1200px){

  .nav-logo img{
    height:100px;
  }

  .nav-menu{
    gap:26px;
  }

  .nav-menu li{
    font-size:14px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width:1200px){

  .simple-nav{
    padding:20px 60px;
  }

  .nav-logo img{
    height:120px;
  }

  .nav-menu{
    gap:34px;
  }

  .nav-menu li{
    font-size:15px;
  }
}


/* ================= HERO ================= */

.hero{
  position:relative;   /* IMPORTANT */
  height:100vh;
  overflow:hidden;
}

.hero video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.72);   /* stronger contrast */
}


.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:white;
  width:90%;
}

.hero-content h1{
  font-size:20px;
  line-height:1.4;
  letter-spacing:1px;
}

.hero-content p{
  margin:18px 0 35px;
  font-size:20px;
  color:#ffffff;
  text-shadow:0 2px 10px rgba(0,0,0,0.8);
}

.hero-buttons a{
  margin:0 10px;
}

.btn-primary{
  background:#ff9f1a;
  padding:12px 32px;
  border-radius:30px;
  color:#08142a;
  font-weight:600;
  text-decoration:none;
}

.btn-outline{
  border:2px solid #fff;
  padding:12px 32px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
}


/* ================================================= */
/* ✅ HERO SECTION - FULL RESPONSIVE */
/* ================================================= */

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  width:85%;
  max-width:1100px;
}

.hero-content h1{
  font-weight:700;
  letter-spacing:2px;
  text-shadow:0 4px 20px rgba(0,0,0,0.8);
}

.hero-content p{
  margin:20px 0 35px;
  text-shadow:0 2px 10px rgba(0,0,0,0.8);
}

.hero-buttons a{
  margin:0 12px;
  display:inline-block;
}

.btn-primary{
  background:#ff9f1a;
  padding:14px 34px;
  border-radius:30px;
  color:#08142a;
  font-weight:600;
  text-decoration:none;
}

.btn-outline{
  border:2px solid #fff;
  padding:14px 34px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
}

/* ================================================= */
/* 📱 MOBILE (max 576px) */
/* ================================================= */

@media (max-width:576px){

  /* Keep hero full-screen on small screens so content overlays the video/image */
  .hero{
    position:relative;
    height:100vh;
    overflow:hidden;
  }

  .hero video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .hero-overlay{
    display:block; /* ensure overlay is visible for contrast */
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
  }

  .hero-content{
    position:absolute;
    /* nudge down so content visually sits beneath the header/logo on phones */
    top:64%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    width:90%;
    max-width:900px;
    padding:0 12px;
  }

  .hero-content h1{
    font-size:18px; /* smaller headline on phones */
    letter-spacing:0.5px;
    line-height:0.5px;
    font-weight:600;
  }

  .hero-content p{
    font-size:10px;
    margin:10px 0 16px;
  }

  .hero-buttons a{
    display:inline-block;
    margin:6px 8px;
    min-width:140px;
  }

  .btn-primary,
  .btn-outline{
    padding:9px 18px;
    font-size:13px;
  }
}

/* ================================================= */
/* 📱 TABLET (577px – 992px) */
/* ================================================= */

@media (min-width:577px) and (max-width:992px){

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:17px;
  }

  .btn-primary,
  .btn-outline{
    padding:12px 28px;
  }
}

/* ================================================= */
/* 💻 SMALL LAPTOP (993px – 1200px) */
/* ================================================= */

@media (min-width:993px) and (max-width:1200px){

  .hero-content h1{
    font-size:46px;
  }

  .hero-content p{
    font-size:19px;
  }
}

/* ================================================= */
/* 🖥 LARGE SCREENS (1200px+) */
/* ================================================= */

@media (min-width:1200px){

  .hero-content h1{
    font-size:60px;
  }

  .hero-content p{
    font-size:22px;
  }
}



/* ================= HIGHLIGHTS ================= */
.highlights{
  padding:80px 60px;
   background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
background-size:200% 200%;
  animation: moltenFlow 18s ease-in-out infinite;
  z-index:-1;
}
 


@keyframes highlightsGradient{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}


.highlights::before{
  content:"";
  position:absolute;
  top:-120px;
  left:0;
  width:100%;
  height:120px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
  pointer-events:none;
}


.highlights::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at top center,
    rgba(255,255,255,0.12),
    transparent 60%
  );
  pointer-events:none;
}


.highlights h2{
  text-align:center;
  font-size:34px;
  margin-bottom:50px;
  color:whitesmoke;
  font-weight:700;
  letter-spacing:0.6px;
}

.highlights h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#ff9f1a;
  margin:14px auto 0;
  border-radius:4px;
}


.highlight-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}


.highlight-card{
  position:relative;
  /* background: linear-gradient(
    180deg,
    rgba(255,255,255,0.94),
    rgba(240,246,250,0.96)
  ); */
  background-color: white;

  padding:15px;
  border-radius:14px;
  border-left:5px solid #ff9f1a;
  box-shadow:0 18px 45px rgba(0,0,0,0.35);
  transition:all 0.45s ease;
  cursor:pointer;
  overflow:hidden;
}


.highlight-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,159,26,0.25),
    transparent
  );
  opacity:0;
  transition:0.45s;
}

.highlight-card:hover::before{
  opacity:1;
}

.highlight-card:hover{
  transform:translateY(-14px);
  box-shadow:0 30px 70px rgba(255,159,26,0.45);
}

.img-box{
  height:260px;
  overflow:hidden;
  border-radius:10px;
}

.img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.highlight-card:hover img{
  transform:scale(1.12);
}


.highlight-card h3,
.highlight-card p{
  position:relative;
  z-index:1;
}

.highlight-card h3{
  color:#0f2a44;
  margin-top:12px;
}

.highlight-card p{
  color:#475569;
}
/* about css========================================== */
.about-section{
  padding:100px 60px;
   background:#e6f2f8;   /* light blue instead of grey */
}


.about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

/* IMAGE */
.about-image{
  position:relative;
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:24px;
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* EXPERIENCE CARD */
.experience-box{
  position:absolute;
  bottom:-40px;
  right:-40px;
  background:#173a34;
  color:#fff;
  padding:40px 35px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.experience-box h2{
  font-size:48px;
  margin:0;
}

.experience-box p{
  margin-top:10px;
  font-size:16px;
  line-height:1.4;
}

/* CONTENT */
.about-content{
  flex:1;
}

.about-content .tag{
  font-size:14px;
  font-weight:600;
  color:#4b7f6a;
  letter-spacing:2px;
}

.about-content h2{
  font-size:42px;
  margin:15px 0 20px;
  color:#173a34;
}

.about-content p{
  font-size:17px;
  color:#555;
  line-height:1.7;
}

.about-content ul{
  margin:25px 0;
  padding:0;
  list-style:none;
}

.about-content ul li{
  margin-bottom:12px;
  padding-left:28px;
  position:relative;
  color:#173a34;
  font-weight:500;
}

.about-content ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#f4b400;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  border:2px solid #173a34;
  border-radius:30px;
  color:#173a34;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  background:#173a34;
  color:#fff;
}

/* ========================================= */
/*        COMPLETE RESPONSIVE CSS            */
/* ========================================= */

/* 📱 MOBILE DEVICES (max 576px) */
@media (max-width: 576px){

  /* ===== Highlights Section ===== */
  .highlights{
    padding:60px 20px;
  }

  .highlights h2{
    font-size:24px;
    margin-bottom:30px;
  }

  .highlight-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .img-box{
    height:200px;
  }

  /* ===== About Section ===== */
  .about-section{
    padding:60px 20px;
  }

  .about-container{
    flex-direction:column;
    gap:40px;
  }

  .about-content h2{
    font-size:28px;
  }

  .about-content p{
    font-size:15px;
  }

  .experience-box{
    position:relative;
    bottom:0;
    right:0;
    margin-top:20px;
    padding:25px;
  }

  .experience-box h2{
    font-size:32px;
  }
}


/* 📱 TABLET DEVICES (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px){

  .highlights{
    padding:70px 40px;
  }

  .highlight-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .img-box{
    height:220px;
  }

  .about-section{
    padding:80px 40px;
  }

  .about-container{
    flex-direction:column;
    gap:50px;
  }

  .about-content h2{
    font-size:34px;
  }

  .experience-box{
    bottom:-20px;
    right:-20px;
    padding:30px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px){

  .highlights{
    padding:80px 50px;
  }

  .highlight-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .img-box{
    height:240px;
  }

  .about-section{
    padding:90px 50px;
  }

  .about-content h2{
    font-size:38px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width: 1200px){

  .highlight-grid{
    gap:35px;
  }

  .img-box{
    height:280px;
  }

  .about-container{
    max-width:1300px;
  }

  .about-content h2{
    font-size:46px;
  }
}


/* ================= PRODUCTS =================--------------------------- */
 /* UNIQUE INDUSTRIAL PRODUCTS SECTION */

.products-neo{
  position:relative;
  padding:120px 8%;
  overflow:hidden;
  text-align:center;
  color:#fff;
}

.neo-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
  background-size:200% 200%;
  animation: moltenFlow 18s ease-in-out infinite;
  z-index:-1;
}


@keyframes moltenFlow{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.neo-header h2{
  font-size:42px;
  margin-bottom:10px;
  background:linear-gradient(90deg,#ffffff,#ffda79,#ffffff);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  letter-spacing:1px;
}

.neo-header p{
  color:#ddd;
  margin-bottom:60px;
}

.neo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.neo-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 25px rgba(0,245,255,0.15);
  transition:0.4s;
}

.neo-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:20px;
  background:linear-gradient(120deg,#ff7a18,#00f5ff,#7b2cff);
  opacity:0;
  transition:0.4s;
}

.neo-card:hover::before{
  opacity:0.25;
}

.neo-card:hover{
  transform:translateY(-15px) scale(1.03);
}

.neo-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.neo-info{
  padding:18px;
}

.neo-info h3{
  font-size:20px;
}

.neo-info span{
  font-size:14px;
  color:#ffda79;
}

.explore-btn{
  display:inline-block;
  margin-top:60px;
  padding:14px 36px;
  border-radius:40px;
  background:linear-gradient(120deg,#d6a05f,#b87333);
  color:#ffffff;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}


.explore-btn:hover{
  transform:translateY(-4px);
}

/* rating ================================================== for home page*/
.testimonials{
  padding:100px 8%;
  text-align:center;
  background:#f8fafc;
}

.small-title{
  color:#0f766e;
  font-weight:600;
  letter-spacing:2px;
  font-size:13px;
}

.testimonials h2{
  font-size:42px;
  margin:20px 0 60px;
  color:#06302b;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.testimonial-card{
  background:#fff;
  padding:35px 28px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  text-align:left;
  position:relative;
  transition:0.4s;
}

.testimonial-card:hover{
  transform:translateY(-12px);
}

.stars{
  color:#fbbf24;
  font-size:18px;
}

.quote{
  position:absolute;
  top:20px;
  right:20px;
  font-size:70px;
  color:#0f766e;
  opacity:0.15;
}

.testimonial-card h3{
  margin:15px 0 10px;
  color:#06302b;
}

.testimonial-card p{
  color:#555;
  line-height:1.6;
}

.client{
  display:flex;
  align-items:center;
  margin-top:20px;
}

.client img{
  width:48px;
  height:48px;
  border-radius:50%;
  margin-right:12px;
}

.client span{
  font-weight:600;
  color:#06302b;
}
/* ========================================= */
/*        PRODUCTS + TESTIMONIALS RESPONSIVE */
/* ========================================= */

/* 📱 MOBILE (max 576px) */
@media (max-width: 576px){

  /* ===== Products Section ===== */
  .products-neo{
    padding:70px 20px;
  }

  .neo-header h2{
    font-size:26px;
  }

  .neo-header p{
    font-size:14px;
    margin-bottom:40px;
  }

  .neo-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .neo-card img{
    height:180px;
  }

  .explore-btn{
    margin-top:40px;
    padding:12px 24px;
    font-size:14px;
  }

  /* ===== Testimonials ===== */
  .testimonials{
    padding:70px 20px;
  }

  .testimonials h2{
    font-size:26px;
    margin:15px 0 40px;
  }

  .testimonial-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .testimonial-card{
    padding:25px 20px;
  }

  .quote{
    font-size:50px;
  }
}


/* 📱 TABLET (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px){

  .products-neo{
    padding:90px 40px;
  }

  .neo-header h2{
    font-size:34px;
  }

  .neo-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .neo-card img{
    height:190px;
  }

  .explore-btn{
    margin-top:50px;
  }

  .testimonials{
    padding:90px 40px;
  }

  .testimonials h2{
    font-size:34px;
  }

  .testimonial-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px){

  .products-neo{
    padding:110px 6%;
  }

  .neo-header h2{
    font-size:38px;
  }

  .neo-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .neo-card img{
    height:200px;
  }

  .testimonials{
    padding:100px 6%;
  }

  .testimonials h2{
    font-size:38px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width: 1200px){

  .neo-grid{
    gap:35px;
  }

  .neo-card img{
    height:220px;
  }

  .neo-header h2{
    font-size:46px;
  }

  .testimonials h2{
    font-size:46px;
  }

  .testimonial-grid{
    gap:35px;
  }
}

/* ================= WHY US ================= */
.heros-like{
  position:relative;
  min-height:420px;
  background:url("images/hero.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.heros-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
}

.heros-inner{
  position:relative;
  z-index:1;
  width:100%;
  padding:0 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.heros-text{
  max-width:550px;
  color:#fff;
}

.heros-text h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:15px;
}

.heros-text p{
  font-size:16px;
  line-height:1.6;
  color:#e6f4f3;
}

.heros-btn{
  background:#c9ff4d;
  color:#1b3a3c;
  padding:16px 36px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
  letter-spacing:1px;
  transition:0.3s;
}

.heros-btn:hover{
  transform:scale(1.05);
  background:#b6f53d;
}
/* ========================================= */
/*            HEROS RESPONSIVE CSS           */
/* ========================================= */

/* 📱 MOBILE (max 576px) */
@media (max-width: 576px){

  .heros-like{
    min-height:350px;
    text-align:center;
  }

  .heros-inner{
    flex-direction:column;
    justify-content:center;
    gap:25px;
    padding:0 20px;
  }

  .heros-text{
    max-width:100%;
  }

  .heros-text h1{
    font-size:26px;
  }

  .heros-text p{
    font-size:14px;
  }

  .heros-btn{
    padding:12px 26px;
    font-size:14px;
  }
}


/* 📱 TABLET (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px){

  .heros-like{
    min-height:380px;
  }

  .heros-inner{
    flex-direction:column;
    gap:30px;
    text-align:center;
  }

  .heros-text h1{
    font-size:34px;
  }

  .heros-text p{
    font-size:15px;
  }

  .heros-btn{
    padding:14px 30px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width: 993px) and (max-width: 1200px){

  .heros-text h1{
    font-size:40px;
  }

  .heros-text p{
    font-size:16px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width: 1200px){

  .heros-text h1{
    font-size:52px;
  }

  .heros-text p{
    font-size:18px;
  }

  .heros-like{
    min-height:480px;
  }
}


/* ================= FOOTER ================= */
.footer{
  background:#234561;
  color:#fff;
  padding:60px 0 0;
}

.footer-wrapper{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr 1.6fr;
  gap:40px;
  padding:0 20px;
}

.footer-left-shift{
  padding-left:30px;
}

.footer-logo{
  width:280px;
  margin-bottom:15px;
}

.footer-box h3{
  margin:20px 0 12px;
}

.footer-box a{
  color:#cfd8e3;
  text-decoration:none;
}

.footer-links{
  list-style:none;
  margin-top:15px;
}

.footer-links li{
  margin-bottom:10px;
}

/* SOCIAL ICONS */
.footer-social{
  margin-top:20px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:16px;
  color:#fff;
  transition:0.3s;
}

.footer-social a:nth-child(1){background:#0b5ed7;}
.footer-social a:nth-child(2){background:#25d366;}
.footer-social a:nth-child(3){background:#e1306c;}
.footer-social a:nth-child(4){background:#6c757d;}

.footer-social a:hover{
  transform:scale(1.15);
  background:orange;
}

/* MAP */
.large-map iframe{
  width:100%;
  height:320px;
  border-radius:16px;
  border:none;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

/* FOOTER BOTTOM */
.footer-bottom{
  margin-top:50px;
  padding:15px;
  text-align:center;
  background:#071a30;
  font-size:14px;
  color:#cfd8e3;
}
/* ================= FINAL MOBILE FIX ================= */
html, body{
  max-width:100%;
  overflow-x:hidden !important;
}

/* NAV POSITION FIX (VERY IMPORTANT) */
.nav{
  position:relative;
}

/* MENU TOGGLE */
.menu-toggle{
  display:none;
  font-size:26px;
  color:#ff9f1a;
  cursor:pointer;
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  /* HEADER */
  /* keep logo and hamburger visible on mobile, hide full nav links and actions */
  .nav{
    padding:12px 16px;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .nav-logo{ display:flex; align-items:center; }

  .menu-toggle{
    display:block;
  }

  .nav-menu{ display:none; }
  .nav-actions{ display:none; }

  .menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b1d39;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
    z-index:9999;
  }

  .menu.show{
    /* show as a compact dropdown near the hamburger */
    position:fixed;
    top:58px; /* adjust to sit under header */
    right:12px;
    left:auto;
    width:220px;
    max-height:none;
    padding:8px 0;
    border-radius:8px;
    box-shadow:0 8px 24px rgba(0,0,0,0.45);
    background:#0b1d39;
    overflow:visible;
    z-index:9999;
  }

  .lang-switch{
    display:none;
  }

  /* HERO */
  .hero{
    position:relative;
    /* keep hero full-height so overlayed content (buttons) doesn't get clipped on mobile */
    height:100vh;
    overflow:visible;
  }

  .hero video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .hero-overlay{
    display:block;
  }

  .hero-content{
  /* keep hero content over the video (centered overlay) */
  position:absolute;
  /* nudge lower on slightly larger phones/tablets so header doesn't overlap; slightly lifted so buttons fit */
  top:60%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90%;
    max-width:900px;
    background:transparent; /* no gray background on mobile */
    padding:0 12px;
    display:block;
    text-align:center;
  }

  .hero-content h1{
    font-size:20px;
    line-height:1.08;
    font-weight:700;
  }

  .hero-content p{
    font-size:14px;
    margin:10px 0 16px;
  }

  .hero-buttons a{
    display:block;
    width:180px;
    margin:10px auto;
  }

  /* SECTIONS */
  .highlights,
  .products,
  .why-us{
    padding-left:16px;
    padding-right:16px;
  }

  .highlight-grid,
  .product-grid,
  .why-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .company-name{
    white-space:normal;   /* VERY IMPORTANT */
    font-size:16px;
    line-height:1.2;
  }
}
@media (max-width:768px){

  .header{
    overflow:visible;
  }

  .nav{
    align-items:center;
    gap:10px;
  }

  .logo img{
    height:34px;
  }
}
@media (max-width:768px){

  .menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b1d39;
    z-index:10000;
  }

  .menu li{
    width:100%;
    text-align:center;
  }

  .menu a{
    display:block;
    width:100%;
  }
}
/* ================= MOBILE menu setup ki ================= */
@media (max-width:768px){

  html, body{
    max-width:100%;
    overflow-x:hidden;
  }

  /* HEADER */
  .header{
    overflow:visible;
  }

  .nav{
    position:relative;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:12px;
    padding:12px 16px;
  }

  /* LOGO + COMPANY NAME STACK */
  .logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .logo img{
    height:34px;
  }

  .company-name{
    font-size:15px;
    line-height:1.2;
    white-space:normal;
  }

  /* MENU ICON */
  .menu-toggle{
    display:block;
    font-size:26px;
    color:#ff9f1a;
    cursor:pointer;
    align-self:start;
    margin-top:4px;
  }

  /* ensure hamburger is on top and clickable (avoid being covered by hero) */
  .menu-toggle{
    position:relative;
    z-index:10001;
    padding:6px; /* larger tap area */
    pointer-events:auto;
  }

  /* MOBILE MENU */
  .menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0b1d39;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
    z-index:9999;
  }

  .menu.show{
    /* show as a compact dropdown near the hamburger */
    position:fixed;
    top:58px; /* adjust to sit under header */
    right:12px;
    left:auto;
    width:220px;
    max-height:none;
    padding:8px 0;
    border-radius:8px;
    box-shadow:0 8px 24px rgba(0,0,0,0.45);
    background:#0b1d39;
    overflow:visible;
    z-index:10000; /* above hero */
    pointer-events:auto;
  }

  .menu li,
  .menu a{
    width:100%;
    text-align:center;
    display:block;
  }

  .lang-switch{
    display:none;
  }
}
/* ===== FOOTER MOBILE CENTER FIX ===== */
@media (max-width:768px){

  .footer-wrapper{
    grid-template-columns: 1fr;   /* single column */
    text-align: center;
    padding: 0 16px;
  }

  .footer-left-shift{
    padding-left: 0;             /* remove left shift */
  }

  .footer-logo{
    margin: 0 auto 15px;         /* center logo */
    display: block;
  }

  .footer-box{
    text-align: center;
  }

  .footer-social{
    justify-content: center;     /* center icons */
  }

  .large-map iframe{
    width:100%;
  }
}




/* ========================================= */
/*              FOOTER RESPONSIVE            */
/* ========================================= */

/* 📱 MOBILE (max 576px) */
@media (max-width:576px){

  footer{
    padding:50px 0 0;
  }

  .footer-wrapper{
    grid-template-columns:1fr;
    gap:35px;
    text-align:center;
    padding:0 16px;
  }

  .footer-left-shift{
    padding-left:0;
  }

  .footer-logo{
    width:200px;
    margin:0 auto 15px;
    display:block;
  }

  .footer-box h3{
    font-size:18px;
  }

  .footer-links li{
    margin-bottom:8px;
  }

  .footer-social{
    justify-content:center;
    margin-top:15px;
  }

  .large-map iframe{
    height:250px;
    border-radius:12px;
  }

  .footer-bottom{
    font-size:13px;
    padding:12px;
  }
}


/* 📱 TABLET (577px – 992px) */
@media (min-width:577px) and (max-width:992px){

  .footer-wrapper{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }

  .footer-left-shift{
    padding-left:0;
  }

  .footer-logo{
    width:230px;
  }

  .large-map{
    grid-column:1 / -1;   /* map full width */
  }

  .large-map iframe{
    height:280px;
  }
}


/* 💻 SMALL LAPTOP (993px – 1200px) */
@media (min-width:993px) and (max-width:1200px){

  .footer-wrapper{
    grid-template-columns:1.2fr 1fr 1.4fr;
    gap:35px;
  }

  .footer-logo{
    width:250px;
  }
}


/* 🖥 LARGE SCREENS (1200px+) */
@media (min-width:1200px){

  .footer-wrapper{
    max-width:1400px;
  }

  .footer-logo{
    width:280px;
  }
}
/* FULL DARK MODE */

body.dark {
  background:#0b1d39;
  color:white;
}

body.dark .about-section,
body.dark .testimonials,
body.dark .products-neo {
  background:#08142a;
}

body.dark .highlight-card,
body.dark .testimonial-card,
body.dark .neo-card {
  background:#132b52;
  color:white;
}

/* ================================================= */
/* ✅ COMPLETE FIXED DARK MODE (FINAL WORKING) */
/* ================================================= */

body.dark{
  background:#0b1d39 !important;
  color:#ffffff !important;
}

/* ===== HEADER ===== */
body.dark .nav-menu li{
  color:#ffffff;
}

body.dark .lang-label{
  color:#ffffff;
}

/* ===== ABOUT SECTION ===== */
body.dark .about-section{
  background:#08142a !important;
}

body.dark .about-content h2,
body.dark .about-content p,
body.dark .about-content ul li{
  color:#ffffff !important;
}

body.dark .about-content .tag{
  color:#59d1f9 !important;
}

body.dark .experience-box{
  background:#132b52 !important;
}

/* ===== HIGHLIGHTS ===== */
body.dark .highlight-card{
  background:#132b52 !important;
  color:#ffffff !important;
}

body.dark .highlight-card h3{
  color:#ffffff !important;
}

body.dark .highlight-card p{
  color:#cbd5e1 !important;
}

/* ===== PRODUCTS ===== */
body.dark .products-neo{
  background:#08142a !important;
}

body.dark .neo-card{
  background:#132b52 !important;
  color:#ffffff !important;
}

/* ===== TESTIMONIALS ===== */
body.dark .testimonials{
  background:#08142a !important;
}

body.dark .testimonial-card{
  background:#132b52 !important;
  color:#ffffff !important;
}

body.dark .testimonial-card h3,
body.dark .testimonial-card p,
body.dark .client span{
  color:#ffffff !important;
}

/* ===== FOOTER ===== */
body.dark .footer{
  background:#061426 !important;
}

body.dark .footer-bottom{
  background:#020c18 !important;
}
/* ===================================== */
/* EXTRA DARK MODE VISIBILITY FIXES */
/* ===================================== */

/* Fix section headings like: What Our Clients Say */
body.dark .testimonials h2{
  color:#ffffff !important;
}

/* Fix small section labels (About Us, Testimonials) */
body.dark .section-name{
  color:#59d1f9 !important;
}

/* Fix Learn More button */
body.dark .btn-outline{
  color:#ffffff !important;
  border:2px solid #59d1f9 !important;
}

body.dark .btn-outline:hover{
  background:#59d1f9 !important;
  color:#08142a !important;
}

/* Fix hero / general headings safety */
body.dark h1,
body.dark h2,
body.dark h3{
  color:#ffffff !important;
}

/* FIX ONLY LEARN MORE BUTTON IN DARK MODE */
body.dark .btn-outline,
body.dark .btn{
  color:#ffffff !important;
  border:2px solid #59d1f9 !important;
}

body.dark .btn-outline:hover,
body.dark .btn:hover{
  background:#59d1f9 !important;
  color:#08142a !important;
}

/* Hide theme button from header area only */
@media (max-width:768px){

  .nav-actions .theme-btn{
    display:none;
  }

  /* Show theme button inside hamburger menu */
  .menu .theme-btn{
    display:block;
    width:100%;
    padding:10px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,0.2);
    background:transparent;
    color:#fff;
    font-size:15px;
  }

}

/* ================= CHATBOT STYLES ================= */

/* Chatbot Icon */
.chatbot-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background:#ff9f1a;
  align-items: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.chatbot-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Chatbot Window */
.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 400px;
  height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Chatbot Header */
.chatbot-header {
 background:
    radial-gradient(circle at 20% 20%, rgba(255,165,0,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(0,150,136,0.12), transparent 60%),
    linear-gradient(
      180deg,
      #2b5068,   /* lighter top */
      #224359,   /* mid steel */
      #142a38    /* softer dark bottom */
    );
  color: white;
  padding: 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chatbot-close:hover {
  transform: scale(1.2);
}

/* Messages Container */
.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot-message {
  animation: slideIn 0.4s ease;
  padding: 12px 16px;
  border-radius: 8px;
  word-wrap: break-word;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.5;
}

.chatbot-message.bot {
  background: #f0f0f0;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.chatbot-message.bot.clickable-whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.chatbot-message.bot.clickable-whatsapp:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, #20ba5c, #1a9d50);
}

.chatbot-message.user {
  background: #ff9f1a;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chatbot Action Button */
.chatbot-action {
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

/* Chatbot Input Area */
.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 15px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 0 0 0 8px;
}

.chatbot-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.chatbot-input:focus {
  border-color: #ff9f1a;
}

.chatbot-send-btn {
  padding: 10px 14px;
  background: linear-gradient(135deg, #ff9f1a, #ff7f1a);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 159, 26, 0.3);
}

.chatbot-send-btn:active {
  transform: translateY(0);
}


.chatbot-whatsapp-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chatbot-whatsapp-btn:hover {
  background: #20ba5c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100% - 30px);
    height: 450px;
    bottom: 90px;
    right: 15px;
    max-height: 60vh;
  }

  .chatbot-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

  .chatbot-header h3 {
    font-size: 16px;
  }

  .chatbot-messages {
    padding: 15px;
    gap: 10px;
  }

  .chatbot-message {
    font-size: 13px;
    padding: 10px 12px;
  }

  .chatbot-input-area {
    padding: 10px 12px;
    gap: 6px;
  }

  .chatbot-input {
    padding: 8px 10px;
    font-size: 12px;
  }

  .chatbot-send-btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}

/* Tablet responsive */
@media (min-width: 481px) and (max-width: 768px) {
  .chatbot-window {
    width: 350px;
    height: 500px;
    bottom: 100px;
    right: 25px;
  }

  .chatbot-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
    bottom: 25px;
    right: 25px;
  }

  .chatbot-message {
    font-size: 13px;
  }
}

/* Laptop responsive */
@media (min-width: 769px) {
  .chatbot-window {
    bottom: 120px;
    right: 40px;
  }

  .chatbot-icon {
    bottom: 40px;
    right: 40px;
  }
}

/* Dark mode support */
body.dark .chatbot-window {
  background: #1e1e1e;
}

body.dark .chatbot-messages {
  background: #1e1e1e;
}

body.dark .chatbot-message.bot {
  background: #333;
  color: #fff;
}

body.dark .chatbot-message.bot.clickable-whatsapp {
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: white;
}

body.dark .chatbot-header {
  background: linear-gradient(135deg, #ff7f1a, #ff6f1a);
}

body.dark .chatbot-action {
  border-top-color: #333;
}

body.dark .chatbot-input-area {
  background: #2a2a2a;
  border-top-color: #333;
}

body.dark .chatbot-input {
  background: #333;
  color: #fff;
  border-color: #444;
}

body.dark .chatbot-input::placeholder {
  color: #999;
}