  @media (min-width: 768px) {
  .modal-dialog {
    width: 400px;
    margin: 30px auto;
  }
}
.blinking-button {
  /* Basic button styling */
  padding: 10px 20px;
  background-color: #010e06;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0px;
  font-size: 20px;

  /* Animation properties */
  animation: blink 1s infinite alternate; /* Name, duration, iteration, direction */
}

@keyframes blink {
  0% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Fully transparent */
  }
  100% {
    opacity: 1; /* Fully visible again */
  }
}

.marquee-topline {
  background-color: #010e06;
  color: #fff;
  font-size: 20px;
  font-weight: bold!important;
}
.marquee-topline p {
  padding: 10px 20px 6px;
  margin: 0;
  color: #fff;
}
.marquee-topline p a{color: #fff;}
.marquee-topline span {
  color: #73e19d;
  font-weight: bold;
}
.marquee-topline span:hover{color: #d4f25a;}

.banner-slider {
  height: 600px;
}

.banner-slider .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}


/* RESET */

/* MAIN SECTION */
.pcb-section {
  max-width: 1250px;
  margin: auto;
  padding: 60px 20px;
}

/* GRID TOP */
.pcb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* PREMIUM CARD STYLE */
.pcb-col {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.pcb-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* HEADINGS */
.pcb-col h3 {
  font-size: 22px;
  margin-bottom: 2px;
  color: #fff;
  font-weight: 600;
  background-color:#123019;
  padding: 14px;
  border-radius:14px;
}

/* LIST */
.pcb-col ul {
  list-style: none;
  padding: 20px;
}

.pcb-col li {
  font-size: 15px;
  margin-bottom: 2px;
  padding-left: 18px;
  position: relative;
  color: #555;
  
}

/* BULLET */
.pcb-col li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 2px;
  color: #0f3d2e;
}

/* DIVIDER */
.divider {
  margin: 60px 0;
  border: none;
  border-top: 1px solid #e5e5e5;
}

/* INDUSTRIES */
.industries h2 {
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #0f3d2e;
}

/* GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

/* PREMIUM CARD */
.industry-card {
  background: linear-gradient(145deg, #2c6e3d, #112c17);
  color: white;
  text-align: center;
  padding: 22px 10px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  vertical-align: middle;
}

/* ICON */
.industry-card i {
  font-size: 32px;
  margin-bottom: 4px;
  opacity: 0.95;
  padding-top: 20px;
}

/* TEXT */
.industry-card p {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
  color:#fff
}

/* GLOW EFFECT */
.industry-card::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.industry-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.industry-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */

/* TABLET */
@media (max-width: 992px) {
  .pcb-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .pcb-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pcb-col {
    padding: 20px;
  }
}


/* ════════════════════════════
       HERO SECTION
    ════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* ── RESPONSIVE VIDEO ──
       width: 100% + height: 100% + object-fit: cover
       = every screen size pe perfectly fill hoga     */
    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      z-index: 0;
      pointer-events: none;
    }

    /* Dark overlay */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    /* Center Content */
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 860px;
      padding: 0 24px;
    }

    .hero-content h1 {
      font-size: clamp(28px, 5.5vw, 66px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-content p {
      font-size: clamp(13px, 1.6vw, 17px);
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.8;
      max-width: 680px;
      margin: 0 auto 36px;
    }

    /* CTA Button */
    .btn-cta {
      display: inline-block;
      padding: 14px 40px;
      background: #123019;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      letter-spacing: 0.4px;
      border: none;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-cta:hover {
      background: #123019;
      transform: translateY(-2px);
      color:#73e19d
    }

    .btn-cta:active { transform: translateY(0); }

    /* Scroll Down */
    .scroll-down {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.7);
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      animation: bounce 2s infinite;
    }

    .scroll-circle {
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(255,255,255,0.45);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .scroll-circle svg {
      fill: none;
      stroke: #fff;
      stroke-width: 2;
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(7px); }
    }

    /* ════════════════════════════
       RESPONSIVE BREAKPOINTS
    ════════════════════════════ */

    /* Tablet ≤ 768px */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: clamp(24px, 6vw, 42px);
        line-height: 1.2;
      }
      .hero-content p {
        font-size: clamp(13px, 2.2vw, 15px);
        margin-bottom: 28px;
      }
      .btn-cta { padding: 12px 32px; font-size: 14px; }
      .scroll-down { bottom: 20px; }
    }

    /* Mobile ≤ 480px */
    @media (max-width: 480px) {
      .hero { min-height: 460px; }
      .hero-content h1 {
        font-size: clamp(20px, 7.5vw, 32px);
        letter-spacing: -0.2px;
      }
      .hero-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 24px;
      }
      .btn-cta { padding: 11px 26px; font-size: 13.5px; }
      .scroll-down { display: none; }
    }

    /* Very small ≤ 360px */
    @media (max-width: 360px) {
      .hero-content h1 { font-size: 19px; }
      .hero-content p  { font-size: 12px; }
      .btn-cta { padding: 10px 22px; font-size: 13px; }
    }
