/* ===============================
   HERO SLIDER (DESKTOP)
================================ */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 520px; /* CLS FIX */
    overflow: hidden;
}

/* SLIDE */
.hero-slider .slide {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

 /* Individual slides */
.slide-1 {
  background-image: url('../../img/home/slider1.webp');
}

.slide-2 {
  background-image: url('../../img/home/slider2.webp');
}

.slide-3 {
  background-image: url('../../img/home/slider3.webp');
}


/* OVERLAY */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 58, 0.55);
}

/* CONTENT */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    animation: fadeUp 1s ease;
}

.slide-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.3;
}

.hero-highlight {
    color: #19B8C6;
}

.slide-sub {
    font-size: 22px;
    margin-bottom: 20px;
    color: #E6F7FF;
}

/* BUTTONS */
.btn-hero-primary {
    background: #19B8C6;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-hero-primary:hover {
    background: #14a4b0;
}

.btn-hero-outline {
    border: 2px solid #19B8C6;
    color: #19B8C6;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
}
.btn-hero-outline:hover {
    background: #19B8C6;
    color: #fff;
}

/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================
   MOBILE PERFECT FIX (STATIC HERO)
===================================== */
@media (max-width: 768px) {

  /* Fixed height = NO CLS */
  .hero-slider {
    height: 260px;
    min-height: 260px;
  }

  /* ONLY FIRST SLIDE LOAD */
  .hero-slider .slide {
    height: 260px;
    opacity: 0;
    transition: none;
  }

  .hero-slider .slide-1 {
    opacity: 1 !important;
    z-index: 2;
  }

  .slide-2,
  .slide-3 {
    display: none !important;
  }

  .slide-overlay {
    background: rgba(0,0,0,0.45);
  }

  .slide-title {
    font-size: 22px;
    line-height: 28px;
  }

  .slide-sub {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 6px 16px;
    font-size: 12px;
  }
}



  /* ============= SERVICES =============== */
  .service-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 24px 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
  }

  .service-card:hover {
    transform: translateY(-6px);
    border-color: #19B8C6;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }

  .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 0 0, #19B8C6 0, rgba(25, 184, 198, 0.07) 55%, transparent 100%);
    color: #0A1A3A;
    font-size: 26px;
  }

  /* ============= WHY CHOOSE US =============== */
  .why-section {
    background: #F8FAFC;
  }

  .why-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .why-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #4b5563;
  }

  .why-list i {
    color: #19B8C6;
    margin-right: 8px;
  }

  .why-image-wrapper {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    border-radius: 18px;
    overflow: hidden;
  }

  /* Achievements Section Background */
  .achievements-section {
    background: #062444;
    /* Premium dark-blue */
    padding: 80px 0;
  }

  /* Title */
  .ach-title {
    font-size: 38px;
    color: #ffffff;
    position: relative;
  }

  /* Badge (TechnovaLabs) */
  .badge-achv {
    background: #19B8C6;
    color: #fff;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 700;
  }

  /* Underline */
  .ach-underline {
    width: 55px;
    height: 6px;
    background: #19B8C6;
    margin: 12px auto 0;
    border-radius: 8px;
  }

  /* Numbers */
  .ach-number {
    font-size: 48px;
    font-weight: 700;
  }

  /* Percentage Color */
  .accent-text {
    color: #19B8C6;
  }

  /* Text under numbers */
  .ach-text {
    font-size: 18px;
    opacity: 0.9;
    margin-top: -5px;
  }

  /* Hover Effect */
  .ach-card {
    transition: 0.3s ease;
  }

  .ach-card:hover {
    transform: translateY(-6px);
  }


/* =============================
   HOVER EFFECT FOR CARDS
============================= */
.card-hover {
    transition: 0.3s ease;
    background: #fff;
    border-radius: 8px;
}
.card-hover:hover {
    transform: translateY(-6px);
    border-color: #19B8C6 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15) !important;
}



  /* ============= ABOUT ================== */
  .about-title {
    color: #19B8C6;
    line-height: 1.5;
  }

  /* Parallax Background */
.highlight-section {
    background: url('../../img/home/business-bg.jpg') center/cover no-repeat fixed;
    padding: 50px 0;
    position: relative;
}

/* Dark overlay */
.highlight-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 58, 0.70); /* transparent navy blue */
}

.highlight-section .container {
    position: relative;
    z-index: 2;
    
}

/* Main Title */
.highlight-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.4;
}

/* Green highlighted line */
.highlight-sub {
    display: inline-block;
    margin-top: 4px;
    background: #19B8C6; /* TechnovaLabs green-blue */
    color: #ffffff;
    padding: 8px 20px;
    font-size: 26px;
    font-weight: 700;
    border-radius: 4px;
}

/* Underline */
.highlight-underline {
    width: 60px;
    height: 6px;
    margin: 18px auto 0;
    background: #19B8C6;
    border-radius: 10px;
}

  /* NEWS WRAPPER */
.news-section {
  background: #f8fafc;
}

/* CARD */
.news-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  height: 100%;
}

/* Hover → lift + strong shadow */
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* IMAGE AREA */
.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover → Zoom image */
.news-card:hover .news-image img {
  transform: scale(1.12);
}

/* TAG */
.news-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #19B8C6;
  padding: 5px 14px;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* CONTENT */
.news-content {
  padding: 16px;
}

.news-content h6 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  color: #0A1A3A;
  transition: color 0.3s ease;
}

/* Hover → Title color change */
.news-card:hover h6 {
  color: #19B8C6;
}

/* Accent Text */
.accent-text {
  color: #19B8C6;
  font-weight: 800;
}
.news-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ============================
   CONTACT CTA SECTION
============================= */
.cta-section {
    position: relative;
    background: url('../../img/home/bg-1.jpg')
                center/cover no-repeat;
    padding: 85px 0;
    color: white;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.10);   /* सिर्फ 10% opacity */
    z-index: 0;
}


.cta-section .container {
  position: relative;
  z-index: 2;
}



.cta-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
}

.cta-sub {
  font-size: 18px;
  color: #cfd9e8;
  margin: 10px 0 25px;
}

.cta-btn {
  background: #19B8C6;
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(25,184,198,0.5);
}

.cta-btn:hover {
  background: #14a4b0;
  box-shadow: 0 0 18px rgba(25,184,198,0.8);
}

/* Mobile */
@media (max-width: 576px) {
  .cta-title { font-size: 26px; }
  .cta-sub { font-size: 15px; }
  .cta-btn { font-size: 15px; padding: 10px 22px; }
}


  /* ============= RESPONSIVE =============== */
  @media (max-width: 767.98px) {
    .hero-section {
      height: 70vh;
      min-height: 460px;
    }

    .section-heading {
      font-size: 26px;
    }
  }