 :root {
      --tn-blue: #1a56db;
      --tn-blue-dark: #0b3fa8;
      --tn-blue-deep: #0a1f44;
      --tn-navy: #071633;
      --tn-light: #eef3ff;
      --tn-ink: #0f172a;
      --tn-muted: #64748b;
    }

    * { font-family: 'Poppins', sans-serif; }

    body {
      color: var(--tn-ink);
      overflow-x: hidden;
    }

    .text-tn-blue { color: var(--tn-blue) !important; }
    .bg-tn-blue { background-color: var(--tn-blue) !important; }
    .bg-tn-light { background-color: var(--tn-light) !important; }

    /* ---------- Navbar ---------- */
    .navbar { padding-top: 1rem; padding-bottom: 1rem; }
    .brand-logo {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--tn-blue), #4f8bff);
      border-radius: 9px;
      display: inline-flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem;
      transform: rotate(0deg);
    }
    .brand-name { font-weight: 700; font-size: 1.35rem; line-height: 1; }
    .brand-name .nova { color: var(--tn-blue); }
    .brand-tag { font-size: .62rem; letter-spacing: .04em; color: var(--tn-muted); margin-top: 2px; }

    .navbar .nav-link {
      color: #1f2937; font-weight: 500; font-size: .95rem;
      margin: 0 .35rem; position: relative;
    }
    .navbar .nav-link.active { color: var(--tn-blue); }
    .navbar .nav-link.active::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
      height: 2px; background: var(--tn-blue); border-radius: 2px;
    }
    .btn-tn {
      background: var(--tn-blue); color: #fff; font-weight: 500;
      border-radius: 30px; padding: .6rem 1.4rem; border: none;
    }
    .btn-tn:hover { background: var(--tn-blue-dark); color: #fff; }

    /* ---------- Hero ---------- */
    .hero { padding: 3.5rem 0 4rem; position: relative; }
    .eyebrow { color: var(--tn-blue); font-weight: 600; letter-spacing: .12em; font-size: .8rem; }
    .hero h1 { font-weight: 800; font-size: 3.4rem; line-height: 1.1; letter-spacing: -.5px; }
    .hero p.lead-text { color: var(--tn-muted); font-size: 1.02rem; max-width: 420px; }
    .btn-outline-tn {
      border: 1.5px solid #cbd5e1; color: var(--tn-ink); font-weight: 500;
      border-radius: 30px; padding: .6rem 1.4rem; background: #fff;
    }
    .btn-outline-tn:hover { border-color: var(--tn-blue); color: var(--tn-blue); }

    .trust-label { color: var(--tn-muted); font-size: .85rem; }
    .logo-row img, .logo-row span { filter: grayscale(1); opacity: .7; }
    .brand-item { color: #334155; font-weight: 700; font-size: 1.05rem; display: inline-flex; align-items: center; gap: .4rem; }

    .hero-img { width: 100%; height: auto; }

    /* ---------- Services ---------- */
    .section-eyebrow { color: var(--tn-blue); font-weight: 600; letter-spacing: .12em; font-size: .8rem; }
    .section-title { font-weight: 700; font-size: 2rem; }

    .service-card {
      background: #fff; border: 1px solid #eef1f6; border-radius: 12px;
      padding: 1.6rem 1.4rem; height: 100%; transition: .25s ease;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,42,102,.10); border-color: transparent; }
    .service-ico {
      width: 52px; height: 52px; border-radius: 12px; background: var(--tn-light);
      display: flex; align-items: center; justify-content: center;
      color: var(--tn-blue); font-size: 1.5rem; margin-bottom: 1.1rem;
    }
    .service-card h5 { font-weight: 600; font-size: 1.05rem; }
    .service-card p { color: var(--tn-muted); font-size: .875rem; }
    /*.learn-more { color: var(--tn-blue); font-weight: 500; font-size: .875rem; text-decoration: none; }*/
    .learn-more { color: #fff; font-weight: 500; font-size: .875rem; text-decoration: none; }
    /*.learn-more:hover { color: var(--tn-blue-dark); }*/
    

    /* ---------- Stats bar ---------- */
    .stats-bar { background: var(--tn-blue); color: #fff; }
    .stat-num { font-weight: 700; font-size: 2rem; line-height: 1; }
    .stat-label { font-size: .85rem; opacity: .9; }
    .stat-ico { font-size: 2rem; opacity: .95; }
    .stat-col + .stat-col { border-left: 1px solid rgba(255,255,255,.18); }

    /* ---------- Why choose us ---------- */
    .check-ico {
      width: 30px; height: 30px; border-radius: 50%; background: var(--tn-blue);
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-size: .85rem; flex: 0 0 auto;
    }
    .feature-title { font-weight: 600; font-size: 1rem; }
    .feature-desc { color: var(--tn-muted); font-size: .875rem; }

    .why-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
    .why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .watch-badge {
      position: absolute; left: 24px; bottom: 24px;
      background: #fff; border-radius: 12px; padding: .6rem .9rem;
      display: flex; align-items: center; gap: .7rem; box-shadow: 0 12px 30px rgba(0,0,0,.18);
    }
    .watch-play {
      width: 38px; height: 38px; border-radius: 50%; background: var(--tn-blue);
      color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .watch-badge b { font-size: .9rem; }
    .watch-badge small { color: var(--tn-muted); font-size: .75rem; }

    @media (max-width: 991px) {
      .hero h1 { font-size: 2.5rem; }
      .stat-col + .stat-col { border-left: none; }
    }
    
   .image-marquee {
  animation: marquee 15s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}


.client-hero { background: #ffffff; overflow: hidden; } .client-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 3px; color: #6c757d; margin-bottom: 8px; } .client-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #111827; margin-bottom: 8px; } .client-subtitle { color: #6b7280; font-size: 15px; margin-bottom: 0; } /* ================================ MARQUEE ================================ */ .client-marquee { position: relative; width: 100%; overflow: hidden; padding: 25px 0; } /* Fade edges */ .client-marquee::before, .client-marquee::after { content: ""; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; pointer-events: none; } .client-marquee::before { left: 0; background: linear-gradient( to right, #ffffff, rgba(255,255,255,0) ); } .client-marquee::after { right: 0; background: linear-gradient( to left, #ffffff, rgba(255,255,255,0) ); } /* Moving track */ .client-track { display: flex; align-items: center; width: max-content; gap: 28px; animation: clientMarquee 25s linear infinite; } /* Individual card */ 
.client-item { width: 150px; height: 150px; flex: 0 0 150px; display: flex; align-items: center; justify-content: center; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 0%; padding: 8px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); transition: transform 0.35s ease, box-shadow 0.35s ease; } /* Circular image */ 
.client-image { 
    width: 75%; 
    height: 100%; 
    /*object-fit: cover; */
    border-radius: 5%; 
    display: block; 
    
} 
/* Hover effect */ .client-item:hover { transform: translateY(-8px) scale(1.04); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); border-color: #d1d5db; } /* Infinite animation */ @keyframes clientMarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 14px)); } } /* Pause on hover */ .client-marquee:hover .client-track { animation-play-state: paused; } /* ================================ TABLET ================================ */ @media (max-width: 768px) { .client-track { gap: 20px; animation-duration: 20s; } .client-item { width: 110px; height: 110px; flex-basis: 110px; } .client-marquee::before, .client-marquee::after { width: 60px; } } /* ================================ MOBILE ================================ */ @media (max-width: 480px) { .hero .container { padding-top: 35px !important; padding-bottom: 35px !important; } 
.client-title { font-size: 26px; }.who-client-title { font-size: 16px;font-weight:bold; } .client-subtitle { font-size: 14px; } .client-track { gap: 16px; animation-duration: 16s; } .client-item { width: 85px; height: 85px; flex-basis: 85px; padding: 5px; } }








.products-section {
    background: #f8fafc;
}


/* ================================
   FEATURED PRODUCT IMAGE
================================ */

.featured-image {
    width: 100%;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ================================
   PRODUCT MARQUEE
================================ */

.client-marquee {
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
}

.client-track {
    display: flex;
    align-items: center;
    width: max-content;

    animation: clientScroll 25s linear infinite;
}

.client-marquee:hover .client-track {
    animation-play-state: paused;
}

.client-item {
    flex: 0 0 auto;

    width: 200px;
    height: 130px;

    margin-right: 20px;

    overflow: hidden;

    border-radius: 14px;

    background: #fff;

    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);

    transition: transform .3s ease,
                box-shadow .3s ease;
}

.client-item:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.client-image {
    width: 75%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ================================
   MARQUEE
================================ */

@keyframes clientScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 991.98px) {

    .client-item {
        width: 180px;
        height: 115px;
    }

}


@media (max-width: 767.98px) {

    .client-item {
        width: 160px;
        height: 105px;
    }

    .client-track {
        animation-duration: 20s;
    }

}





.about-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border: 2px solid #e5e5e5;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Colored line */
.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff, #7b2cff);
    transition: width 0.5s ease;
}

/* Hover effect */
.about-card:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.18);
}

.about-card:hover::before {
    width: 100%;
}

.about-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-card b {
    color: #007bff;
}

.common-info-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border: 2px solid #e5e5e5;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Top colored line */
.common-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #007bff,
        #00c6ff,
        #7b2cff
    );
    transition: width 0.5s ease;
}

/* Hover */
.common-info-card:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.18);
}

.common-info-card:hover::before {
    width: 100%;
}

/* Paragraph */
.common-info-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Mobile */
@media (max-width: 767px) {
    .common-info-card {
        padding: 25px 20px;
    }

    .common-info-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}


.opd-image {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.opd-image-one {
    /*height: 200px;*/
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
}
.opd-image-one:hover {
    transform: scale(1.03);
}
.opd-image:hover {
    transform: scale(1.03);
}
