
  /* =========================================================
   PREMIUM CLASSIC STEEL HEADER
========================================================= */

* {
    box-sizing: border-box;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background:
        rgba(2, 6, 23, 0.94);

    border-bottom:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    transition:
        background .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


/* SCROLLED HEADER */

.header.scrolled {
    background:
        rgba(2, 6, 23, 0.98);

    border-bottom-color:
        rgba(249,115,22,.20);

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.22);
}


/* HEADER INNER */

.header-inner {
    width: min(94%, 1380px);

    min-height: 78px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #fff;

    white-space: nowrap;
}


/* LOGO MARK */

.logo-mark {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #f97316,
            #c2410c
        );

    color: #fff;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.25),

        0 7px 20px
        rgba(249,115,22,.20);

    position: relative;

    overflow: hidden;
}


/* STEEL SHINE */

.logo-mark::after {
    content: "";

    position: absolute;

    top: -40%;
    left: -80%;

    width: 50%;
    height: 180%;

    background:
        rgba(255,255,255,.35);

    transform:
        rotate(25deg);

    transition:
        .6s ease;
}

.logo:hover .logo-mark::after {
    left: 130%;
}


/* LOGO TEXT */

.logo > span {
    color: #fff !important;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: .4px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.nav-desktop {
    display: flex;

    align-items: center;

    gap: 4px;
}


/* NAV LINK */

.nav-link {
    position: relative;

    display: flex;

    align-items: center;

    padding:
        29px 15px;

    color:
        #cbd5e1;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .3px;

    transition:
        color .3s ease;
}


.nav-link::after {
    content: "";

    position: absolute;

    bottom: 19px;

    left: 15px;

    width: 0;

    height: 2px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #f97316,
            #facc15
        );

    transition:
        width .3s ease;
}


.nav-link:hover {
    color: #fff;
}


.nav-link:hover::after {
    width: calc(100% - 30px);
}

/* =========================================
   PREMIUM CLASSIC GET QUOTE BUTTON
========================================= */

.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 145px;
    padding: 12px 20px;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;

    background:
        linear-gradient(
            135deg,
            #f97316 0%,
            #ea580c 50%,
            #c2410c 100%
        );

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;

    box-shadow:
        0 8px 20px rgba(249,115,22,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* Top shine */
.nav-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

/* Gold bottom accent */
.nav-cta::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 0;

    height: 2px;

    background: #facc15;

    opacity: 0.9;
}

/* Icon */
.quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);

    font-size: 14px;

    transition: transform 0.3s ease;
}

/* Hover */
.nav-cta:hover {
    color: #fff;

    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #fb923c,
            #f97316,
            #ea580c
        );

    box-shadow:
        0 14px 30px rgba(249,115,22,0.38),
        0 0 0 1px rgba(249,115,22,0.2),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.nav-cta:hover::before {
    left: 140%;
}

.nav-cta:hover .quote-icon {
    transform: rotate(45deg);
}

/* Click */
.nav-cta:active {
    transform: translateY(0) scale(0.97);
}


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

@media (max-width: 768px) {

    .nav-cta {
        min-width: 135px;
        padding: 11px 17px;
        font-size: 12px;
    }

    .quote-icon {
        width: 23px;
        height: 23px;
    }
}

/* =========================================================
   MEGA MENU
========================================================= */

.has-mega {
    position: relative;
}


/* SMALL ARROW */

.has-mega > .nav-link::before {
    content: "⌄";

    margin-left: 7px;

    order: 2;

    color: #f97316;

    font-size: 12px;

    transition:
        transform .3s ease;
}


.has-mega:hover > .nav-link::before {
    transform:
        rotate(180deg);
}


/* MENU */

.mega-menu {
    position: absolute;

    top: calc(100% + 1px);

    left: 50%;

    width: 820px;

    transform:
        translate(-50%, 15px);

    background:
        rgba(5, 15, 35, .98);

    border:
        1px solid
        rgba(255,255,255,.10);

    border-top:
        2px solid #f97316;

    border-radius:
        0 0 16px 16px;

    padding: 28px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.35);

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;

    backdrop-filter:
        blur(20px);
}


.has-mega:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0);
}


/* GRID */

.mega-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr 1.3fr;

    gap: 30px;
}


/* COLUMN */

.mega-column h4 {

    color: #fff;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin:
        0 0 16px;

    padding-bottom: 10px;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.mega-column ul {

    list-style: none;

    padding: 0;

    margin: 0;
}


/* MEGA LINK */

.mega-link {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        10px 11px;

    margin-bottom: 3px;

    color: #94a3b8;

    text-decoration: none;

    font-size: 12px;

    border-radius: 7px;

    transition:
        .25s ease;
}


.mega-link:hover {

    color: #fff;

    background:
        rgba(249,115,22,.10);

    padding-left: 16px;
}


.mega-link::after {

    content: "→";

    color: #f97316;

    opacity: 0;

    transition:
        .25s ease;
}


.mega-link:hover::after {

    opacity: 1;
}


/* =========================================================
   MEGA IMAGES
========================================================= */

.mega-image {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;
}


.mega-image a {

    position: relative;

    height: 155px;

    overflow: hidden;

    border-radius: 10px;

    text-decoration: none;

    background: #020617;

    border:
        1px solid
        rgba(255,255,255,.08);
}


.mega-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: .65;

    transition:
        transform .5s ease,
        opacity .5s ease;
}


.mega-image a:hover img {

    transform:
        scale(1.08);

    opacity: .85;
}


.mega-image a::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(2,6,23,.85),
            transparent 60%
        );
}


.mega-image span {

    position: absolute;

    z-index: 2;

    left: 12px;

    bottom: 12px;

    color: #fff;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   QUOTE BUTTON
========================================================= */

.nav-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-left: 12px;

    padding:
        11px 19px;

    border-radius: 8px;

    color: #fff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .4px;

    background:
        linear-gradient(
            135deg,
            #f97316,
            #ea580c
        );

    box-shadow:
        0 7px 20px
        rgba(249,115,22,.20);

    transition:
        .3s ease;
}


.nav-cta::after {

    content: " →";

    margin-left: 5px;

    transition:
        .25s ease;
}


.nav-cta:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(249,115,22,.30);
}


.nav-cta:hover::after {

    margin-left: 9px;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {

    width: 42px;
    height: 42px;

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 9px;

    cursor: pointer;

    background:
        rgba(255,255,255,.04);
}


.hamburger span {

    display: block;

    width: 20px;
    height: 2px;

    background: #fff;

    border-radius: 3px;

    transition:
        .3s ease;
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

.mobile-overlay {

    position: fixed;

    inset: 0;

    z-index: 9998;

    background:
        rgba(2,6,23,.97);

    backdrop-filter:
        blur(15px);

    transform:
        translateX(100%);

    opacity: 0;

    visibility: hidden;

    transition:
        .35s ease;

    overflow-y: auto;
}


.mobile-overlay.active {

    transform:
        translateX(0);

    opacity: 1;

    visibility: visible;
}


.mobile-nav {

    width: 90%;

    max-width: 500px;

    margin:
        100px auto 40px;
}


/* MOBILE LINKS */

.mobile-link {

    display: flex;

    align-items: center;

    min-height: 54px;

    padding:
        0 5px;

    color: #e2e8f0;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    transition:
        .25s ease;
}


.mobile-link:hover {

    color: #f97316;

    padding-left: 8px;
}


/* MOBILE MEGA */

.mobile-mega {

    margin:
        5px 0 12px;

    padding:
        8px 0 8px 15px;

    border-left:
        2px solid
        rgba(249,115,22,.35);
}


.mobile-mega-title {

    color: #f97316;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin:
        14px 0 7px;
}


.mobile-mega-link {

    display: block;

    padding:
        9px 0;

    color: #94a3b8;

    text-decoration: none;

    font-size: 12px;

    transition:
        .25s ease;
}


.mobile-mega-link:hover {

    color: #fff;

    padding-left: 7px;
}


/* MOBILE CTA */

.mobile-cta {

    width: 100%;

    margin-top: 25px;

    padding: 14px;

    border: none;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #f97316,
            #ea580c
        );

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(249,115,22,.20);
}


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

@media(max-width:1050px) {

    .nav-link {
        padding-left: 9px;
        padding-right: 9px;
    }

    .nav-cta {
        margin-left: 5px;
        padding:
            10px 13px;
    }

}


@media(max-width:850px) {

    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        min-height: 70px;
    }

    .logo > span {
        font-size: 14px;
    }

}

    /* 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 ================= */
    
    /* 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);
  }
}
