
  
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* Header & Mobile Menu (same as before - working perfectly) */
  .mobile-overlay {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(3, 21, 100, 0.98); backdrop-filter: blur(20px);
      z-index: 999; opacity: 0; visibility: hidden; transform: translateX(100%);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      padding: 120px 24px 40px; overflow-y: auto;
    }

    .mobile-overlay.active { opacity: 1; visibility: visible; transform: translateX(0); }

    .mobile-nav { display: flex; flex-direction: column; gap: 20px; }
    .mobile-link { font-size: 20px; font-weight: 500; padding: 15px 0; border-bottom: 1px solid rgba(148, 163, 184, 0.2); color: #e5e7eb; display: block; }
    .mobile-link:hover { color: #1a1919; }
    .mobile-mega { margin-top: 10px; padding-left: 20px; border-left: 2px solid rgba(249, 115, 22, 0.4); }
    .mobile-mega-title { font-size: 16px; font-weight: 600; color: #9ca3af; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
    .mobile-mega-link { font-size: 16px; padding: 10px 0; color: #9ca3af; display: block; }
    .mobile-mega-link:hover { color: #f9fafb; }
    .mobile-cta { margin-top: 30px; padding: 18px 24px; background: linear-gradient(135deg, #1a1919, #1a1919); border-radius: 999px; text-align: center; font-size: 18px; font-weight: 600; text-transform: uppercase; border: none; cursor: pointer; }

    .header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(20px); background: rgba(1, 3, 78, 0.95); border-bottom: 1px solid rgba(148, 163, 184, 0.2); transition: all 0.3s ease; }
    .header.scrolled { background: rgba(2, 10, 83, 0.98); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
    .header-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
    .logo { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 700; }
    .logo-mark { width: 40px; height: 40px; background: linear-gradient(135deg, #1a1919, #facc15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-weight: 700; font-size: 16px; }
    .nav-desktop { display: flex; align-items: center; gap: 30px; }
    .nav-link { position: relative; padding: 10px 0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: #e5e7eb; transition: color 0.3s ease; cursor: pointer; }
    .nav-link:hover { color: #42f70b; }
    .nav-cta { padding: 12px 24px; background: linear-gradient(135deg, #05741d, #167403); border-radius: 999px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.3s ease; }
    .nav-cta:hover { transform: translateY(-2px); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
    .hamburger span { width: 25px; height: 3px; background: #e5e7eb; border-radius: 3px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); transform-origin: center; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -5px); }

    /* Mega Menu Desktop */
    .mega-menu { position: absolute; top: 100%; left: 0; right: 0; background: rgba(3, 19, 94, 0.98); border-top: 1px solid rgba(148, 163, 184, 0.2); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; padding: 30px 0; backdrop-filter: blur(20px); z-index: 101; }
    .has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .mega-grid { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
    .mega-column h4 { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: #f9fafb; }
    .mega-column ul { list-style: none; }
    .mega-link { display: block; padding: 8px 0; color: #9ca3af; transition: color 0.3s ease; border-bottom: 1px solid transparent; }
    .mega-link:hover { color: #e00404; border-bottom-color: rgba(249, 115, 22, 0.3); }
    .mega-image { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(148, 163, 184, 0.2); }
    .mega-image a { position: relative; border-radius: 12px; overflow: hidden; height: 180px; }
    .mega-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .mega-image a:hover img { transform: scale(1.05); }
    .mega-image span { position: absolute; bottom: 15px; left: 15px; right: 15px; background: rgba(238, 228, 228, 0.8); color: rgb(10, 10, 10); padding: 8px 12px; border-radius: 6px; font-size: 13px; font-weight: 500; }


    /* Fullscreen Hero Slider (same as before) */
    .fullscreen-hero { position: relative; height: 100vh; width: 100vw; overflow: hidden; }
    .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transform: scale(1.05); transition: opacity 1s ease, transform 1s ease; }
    .hero-slide.active { opacity: 1; transform: scale(1); }
    .hero-slide img { width: 100%; height: 100%; object-fit: cover; transform-origin: center; transition: transform 4s ease-out; }
    .hero-slide.active img { transform: scale(1.08); }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, transparent 40%); pointer-events: none; }
    .hero-content { position: absolute; bottom: 15%; left: 5%; right: 5%; max-width: 800px; z-index: 10; color: white; }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; background: rgba(249, 115, 22, 0.2); padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(249, 250, 251, 0.3); margin-bottom: 20px; backdrop-filter: blur(10px); }
    .hero-title { font-size: clamp(40px, 6vw, 68px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
    .hero-title span { background: linear-gradient(to right, #f97316, #facc15); -webkit-background-clip: text; color: transparent; }
    .hero-subtitle { font-size: 18px; margin-bottom: 30px; opacity: 0.95; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
    .hero-cta { display: inline-flex; align-items: center; gap: 12px; padding: 15px 28px; background: linear-gradient(135deg, #f97316, #ea580c); border-radius: 999px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; box-shadow: 0 20px 50px rgba(249, 115, 22, 0.5); transition: all 0.4s ease; }
    .hero-cta:hover { transform: translateY(-3px); box-shadow: 0 25px 60px rgba(249, 115, 22, 0.7); }
    .slider-controls { position: absolute; top: 50%; right: 4%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 20px; z-index: 10; }
    .slider-arrow { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; backdrop-filter: blur(10px); }
    .slider-arrow:hover { background: rgba(255,255,255,0.4); transform: scale(1.1); }
    .slider-dots { display: flex; flex-direction: column; gap: 10px; }
    .slider-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s ease; }
    .slider-dot.active { width: 20px; height: 20px; background: #f97316; box-shadow: 0 0 20px rgba(249, 115, 22, 0.8); }

    /* ================= CONTAINER & MAIN SECTIONS ================= */
   

/* ------------whatapp icon---------------------------- */
    /* ================= FOOTER ================= */
       footer { background: rgba(1, 3, 78, 0.95); border-top: 1px solid rgba(31, 41, 55, 0.5); padding: 80px 0 40px; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 40px; }
    .footer-brand h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
    .footer-brand p { color: #9ca3af; line-height: 1.6; }
    .footer-location h4 { font-size: 16px; font-weight: 600; color: #f9fafb; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.1em; }
    .footer-location address { color: #9ca3af; font-style: normal; line-height: 1.8; }
    .footer-location strong { color: #e5e7eb; }
    .footer-contact a { color: #1a1919; font-weight: 500; }
    .footer-bottom { border-top: 1px solid rgba(31, 41, 55, 0.5); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 14px; color: #6b7280; }
    .footer-links { display: flex; gap: 30px; }
    .footer-links a { text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s ease; }
    .footer-links a:hover { color: #f2f1f7; }
    
    /* Responsive */
    @media (max-width: 768px) {
      .nav-desktop { display: none !important; }
      .hamburger { display: flex !important; }
      .slider-controls { right: 20px; }
      .slider-arrow { width: 40px; height: 40px; font-size: 16px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .about-image { height: 300px; }
      .products-track { gap: 15px; }
      .product-card { min-width: 250px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .clients-logos { gap: 30px; flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
       .clients-logos {
    display: grid;
     /* 2 columns grid-template-columns: repeat(2, 1fr);*/
    gap: 8px;
 object-fit: cover; 
    overflow: hidden;
     /* 🔥 Add it HERE */
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .client-logo {
    width: 100%;
    height: 150px;
  }
    }

    /* dhiyanshi infotech underline */
.dev-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.dev-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ffcc00;
}

/* ===== PREMIUM ANIMATION UPGRADE ===== */

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient Animated Text */
.gradient-text {
  background: linear-gradient(270deg, #f97316, #facc15, #22c55e);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientMove 6s ease infinite;
}
@keyframes gradientMove {
  0% { background-position: 0% }
  50% { background-position: 100% }
  100% { background-position: 0% }
}

/* Premium Feature Card */
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(249,115,22,0.25), transparent);
  opacity: 0;
  transition: 0.4s;
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-12px) scale(1.05);
}

/* Product Card Glow */
.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 80px rgba(249, 115, 22, 0.3);
}

/* Button Shine Effect */
.ie-btn {
  position: relative;
  overflow: hidden;
}
.ie-btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255,255,255,0.2);
  transition: 0.4s;
}
.ie-btn:hover::before {
  width: 100%;
}

/* Developer link FIX */
.dev-link::after {
  bottom: -4px;
}

/* Smooth image hover */
.about-image img {
  transition: transform 1s ease;
}
.about-image:hover img {
  transform: scale(1.08);
}
/* Premium Heading */
.premium-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
}

/* Animated Gradient Word */
.text-animate {
  background: linear-gradient(270deg, #f97316, #facc15, #22c55e);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientMove 5s ease infinite;
}

/* Fade + Slide Text */
.fade-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Animations */
@keyframes gradientMove {
  0% { background-position: 0% }
  50% { background-position: 100% }
  100% { background-position: 0% }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
