/* Western Networks Corporate Website Styles */

:root {
  --primary-blue: #003d75;
  --dark-blue: #003d75;
  --cta-yellow: #ffc107;
  --light-gray: #f8f9fa;
  --c: #003d75;
}

/* Global Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background-color: #ffffff!important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  color: rgb(0, 0, 0) !important;
}

.navbar-nav .nav-link {
  color: rgb(6, 6, 6) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--cta-yellow) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
  background-color: var(--light-gray);
  color: var(--primary-blue);
}

/* Buttons */
.btn-cta {
  background-color: var(--cta-yellow);
  border-color: var(--cta-yellow);
  color: #000;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 100px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.min-vh-75 {
  min-height: 75vh;
}

/* Product Category Cards */
.product-category-card {
  background: white;
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 86, 166, 0.15);
  border-color: var(--dark-blue);
}

.product-category-card .card-body {
  padding: 2rem;
}

/* Product Cards */
.product-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.product-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
  transform: scale(1.05);
}

.product-card .card-body {
  padding: 1.5rem;
}

.product-card .card-title {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Text Colors */
.text-primary {
  color: var(--primary-blue) !important;
}

.text-cta {
  color: var(--primary-blue) !important;
}

/* Sections */
.bg-light {
  background-color: var(--light-gray) !important;
}

.bg-primary {
  background-color: var(--primary-blue) !important;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5,
.footer h6 {
  font-weight: 600;
}

.footer a:hover {
  color: var(#ffffff) !important;
}

/* Carousel */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-blue);
  border-radius: 50%;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .product-category-card .card-body {
    padding: 1.5rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

/* Form Styles */
.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 166, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--primary-blue);
}

/* Contact Cards */
.contact-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.contact-card i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.team-card .card-body {
  padding: 1.5rem;
  text-align: center;
}

/* Solutions Cards */
.solution-card {
  background: white;
  border-left: 4px solid var(--primary-blue);
  border-radius: 5px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left-color: var(--cta-yellow);
}

.solution-card h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Map Container */
.map-container {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Utility Classes */
.text-balance {
  text-wrap: balance;
}

.shadow-custom {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.logo-img {
  height: 50px;    /* Navbar ke andar perfect fit */
  width: auto;     /* Stretch na ho */
  object-fit: contain;
}


  /* Card */
  .category-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3,61,117,0.06);
    border: 1px solid rgba(3,61,117,0.06);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  }
  .category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(3,61,117,0.14);
  }

  /* Media */
  .card-media { height: 200px; overflow:hidden; display:flex; align-items:center; justify-content:center; background:#f5fbff;}
  .card-media img { width:100%; height:100%; object-fit:cover; transition: transform .7s ease; }
  .category-card:hover .card-media img { transform: scale(1.06); }

  /* Text */
  .category-card h4 { letter-spacing: .2px; }
  .category-card p { color: rgba(0,0,0,0.6); }

  /* BUTTON — advanced animated fill + icon motion */
  .btn.btn-advanced {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    overflow: hidden;
    padding: 14px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #003d75;               /* default text color (blue) */
    background: transparent;
    border: 2px solid #003d75;    /* blue border */
    transition: color .35s ease, border-color .35s ease, box-shadow .35s ease, transform .18s ease;
  }

  /* background sliding layer (yellow fill) */
  .btn.btn-advanced .btn-bg {
    position: absolute;
    left: -4%;
    top: 0;
    width: 0%;
    height: 100%;
    background: #ffc107;         /* yellow fill */
    z-index: 0;
    transition: width .45s cubic-bezier(.2,.9,.3,1);
    border-radius: 999px;
  }

  /* content inside button above bg */
  .btn.btn-advanced .btn-text, .btn.btn-advanced .icon-left, .btn.btn-advanced .icon-right {
    position: relative;
    z-index: 2;
    transition: transform .35s cubic-bezier(.2,.9,.3,1);
  }

  .btn.btn-advanced .icon-left { transform: translateX(-6px); opacity: 0.95; }
  .btn.btn-advanced .icon-right { transform: translateX(6px); opacity: 0.95; }

  /* hover: expand yellow bg to full, change text color to black, move icons slightly */
  .btn.btn-advanced:hover,
  .btn.btn-advanced:focus {
    color: #000;                 /* text becomes black on yellow */
    border-color: #ffc107;
    box-shadow: 0 10px 30px rgba(255,193,7,0.12);
    transform: translateY(-2px);
    outline: none;
  }
  .btn.btn-advanced:hover .btn-bg,
  .btn.btn-advanced:focus .btn-bg {
    width: 110%;
    left: -5%;
  }
  .btn.btn-advanced:hover .icon-left { transform: translateX(-12px) scale(1.02); }
  .btn.btn-advanced:hover .icon-right { transform: translateX(12px) scale(1.02); }
  .btn.btn-advanced:hover .btn-text { transform: translateY(-1px); }

  /* active/click effect (quick shrink) */
  .btn.btn-advanced:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(3,61,117,0.08) inset;
  }

  /* keyboard focus visible */
  .btn.btn-advanced:focus-visible {
    box-shadow: 0 0 0 4px rgba(0,61,117,0.12);
  }

  /* subtle pulse after hover (pseudo ripple) */
  .btn.btn-advanced::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(255,193,7,0.0);
    transition: box-shadow .6s ease;
    z-index: 1;
  }
  .btn.btn-advanced:hover::after {
    box-shadow: 0 0 40px 8px rgba(255,193,7,0.06);
  }

  /* make all buttons the same fixed height for uniformity */
  .btn.btn-advanced { height:56px; padding: 0 26px; }

  /* ensure icons and text align vertically on mobile */
  @media (max-width:767.98px) {
    .btn.btn-advanced { height:52px; font-size:1rem; padding:0 18px; }
    .card-media { height:160px; }
  }

:root {
  --brand-blue: #003d75;
  --brand-yellow: #ffc107;
}

.prod-card {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.04);
  box-shadow:0 10px 30px rgba(3,61,117,0.06);
  transition:transform .35s ease, box-shadow .35s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}
.prod-card:hover { transform:translateY(-10px); box-shadow:0 22px 50px rgba(3,61,117,0.12); }

.prod-media { position:relative; height:276px; overflow:hidden; display:flex; align-items:center; justify-content:center; background:#f6fbff;}
.prod-media img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.prod-card:hover .prod-media img { transform:scale(1.06); }

.prod-media .tag { position:absolute; left:12px; top:12px; background:var(--brand-blue); color:#fff; padding:6px 10px; font-weight:700; border-radius:8px; font-size:.85rem; box-shadow:0 8px 20px rgba(3,61,117,0.08); }
.prod-media .tag-yellow { background:var(--brand-yellow); color:#000; }

.prod-body { padding:1.1rem 1.25rem 1.5rem; flex:1; display:flex; flex-direction:column; justify-content:flex-end; }
.prod-body h5 { color:var(--brand-blue); margin-bottom:.35rem; }
.prod-body p { color:rgba(0,0,0,0.6); margin-bottom:.8rem; }

.chip { background:#eef6ff; color:var(--brand-blue); padding:4px 8px; border-radius:999px; font-weight:700; font-size:.8rem; }

/* ===========================
   ADVANCED BUTTON STYLE
=========================== */
.btn-product {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 50px;
  overflow: hidden;
  transition: all .35s ease;
  z-index: 1;
}

.btn-product .btn-bg {
  content: "";
  position: absolute;
  left: -5%;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--brand-yellow);
  z-index: 0;
  transition: width .4s cubic-bezier(.2,.9,.3,1);
  border-radius: 50px;
}

.btn-product span,
.btn-product i {
  position: relative;
  z-index: 2;
  transition: transform .35s ease;
}

/* Hover effect: yellow bg slides in */
.btn-product:hover {
  color: #000;
  border-color: var(--brand-yellow);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,193,7,0.12);
}

.btn-product:hover .btn-bg {
  width: 110%;
}

/* icon animations */
.btn-product:hover i:first-child { transform: translateX(-6px); }
.btn-product:hover i:last-child { transform: translateX(6px); }

/* responsive spacing */
@media (max-width:991.98px) {
  .prod-media { height:210px; }
}
@media (max-width:575.98px) {
  .prod-media { height:250px; }
}

/* indicators */
.carousel-indicators [data-bs-target="#featuredCarousel"] {
  background-color: rgba(0,0,0,0.25);
}
.carousel-indicators .active {
  background-color: var(--brand-blue);
}


.hero-text {
  margin-top: 150px;
}

   :root{
      --accent: #ffc107;
      --primary-dark: #003d75;
    }

    /* Industry Cards */
    .sn-industry-card {
      height: 280px;
      border-radius: 12px;
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .sn-industry-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 26px rgba(0,61,117,0.25);
    }

    .sn-industry-img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .sn-industry-card:hover .sn-industry-img {
      transform: scale(1.1);
    }

    .sn-industry-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,61,117,0) 20%, rgba(0,61,117,0.85) 100%);
      color: #fff;
      transition: background .3s ease;
    }
    .sn-industry-card:hover .sn-industry-overlay {
      background: linear-gradient(180deg, rgba(0,61,117,0.2) 0%, rgba(0,61,117,0.9) 100%);
    }

    .sn-industry-icon {
      font-size: 1.8rem;
      color: var(--accent);
    }

    .sn-link {
      font-weight: 600;
      text-decoration: none;
      color: #ffffff;
      transition: color .25s ease;
    }
    .sn-link:hover,
    .sn-link:focus {
      color: var(--accent) !important;
    }
@keyframes floatIcons {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.btn:hover {
  transform: translateY(-4px) scale(1.04);
}


  .sn-side-buttons {
      position: fixed;
      top: 40%;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 9999;
    }

    /* Hidden radio for click control */
    .sn-side-buttons input[type="radio"] {
      display: none;
    }

    .sn-side-btn {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 55px;
      height: 55px;
      border-radius: 30px 0 0 30px;
      font-size: 1.2rem;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      padding-left: 18px;
      overflow: hidden;
      transition: width .35s ease, background .3s ease, box-shadow .3s ease;
      cursor: pointer;
      color: #fff;
      position: relative;
    }

    .sn-side-btn i {
      min-width: 20px;
      text-align: center;
    }

    .sn-label {
      white-space: nowrap;
      margin-left: 12px;
      font-size: 0.95rem;
      font-weight: 600;
      opacity: 0;
      transition: opacity .25s ease;
    }

    /* Expand on hover */
    .sn-side-btn:hover {
      width: 200px;
    }
    .sn-side-btn:hover .sn-label {
      opacity: 1;
    }

    /* Expand on click (via radio:checked) */
    #contact:checked ~ .sn-side-buttons .sn-contact,
    #support:checked ~ .sn-side-buttons .sn-support {
      width: 200px;
    }
    #contact:checked ~ .sn-side-buttons .sn-contact .sn-label,
    #support:checked ~ .sn-side-buttons .sn-support .sn-label {
      opacity: 1;
    }

    /* Contact Button */
    .sn-contact {
      background: linear-gradient(135deg,#003d75,#001f3f);
      color: #fff; /* text white */
    }
    .sn-contact:hover,
    #contact:checked ~ .sn-side-buttons .sn-contact {
      background: linear-gradient(135deg,#004a9f,#003d75);
      box-shadow: 0 0 0 4px rgba(255,193,7,0.4), 0 8px 22px rgba(0,0,0,0.4);
    }

    /* Support Button */
    .sn-support {
      background: linear-gradient(135deg,#ffc107,#ff9800);
      color: #003d75; /* text blue */
    }
    .sn-support:hover,
    #support:checked ~ .sn-side-buttons .sn-support {
      background: linear-gradient(135deg,#ffb300,#ffc107);
      box-shadow: 0 0 0 4px rgba(0,61,117,0.3), 0 8px 22px rgba(0,0,0,0.35);
    }

    /* ----------------------
       Mobile view: bottom bar
    ----------------------- */
    @media (max-width: 768px) {
      .sn-side-buttons {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        justify-content: space-around;
        padding: 8px;
        background: #fff;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
      }
      .sn-side-btn {
        flex: 1;
        height: 50px;
        border-radius: 8px;
        justify-content: center;
        width: auto !important;
      }
      .sn-label {
        opacity: 1 !important;
        margin-left: 8px;
      }
      /* Mobile text colors fix */
      .sn-contact {
        color: #fff !important; /* blue bg → white text */
      }
      .sn-support {
        color: #003d75 !important; /* yellow bg → blue text */
      }
    }
.sn-btn-primary {
  background:#ffc107;
  color:#003d75;
  font-weight:600;
  padding:12px 32px;
  border-radius:50px;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
  transition:all .3s ease;
  border:none;
}
.sn-btn-primary {
  color: #ffffff !important;
}

.sn-btn-primary:hover {
  background:#003d75;
  color:#ffc107;
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
}

.sn-btn-secondary {
  border:2px solid #003d75;
  color:#003d75;
  font-weight:600;
  padding:12px 32px;
  border-radius:50px;
  transition:all .3s ease;
  background:transparent;
}
.sn-btn-secondary:hover {
  background:#ffc107;
  border-color:#ffc107;
  color:#003d75;
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
}

.sn-page-header {
  border-bottom: 1px solid rgba(0,61,117,0.1);
}

/* Network Animation Canvas */
#networkCanvas {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:1;
}


.sn-card {
  transition: all 0.3s ease;
}
.sn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,61,117,0.2);
}
.sn-icon-wrap {
  display: flex;
  justify-content: center;
}
.sn-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background:#003d75;
  color:#ffc107;
  font-size: 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 0 0 6px #ffc10744, 0 8px 18px rgba(0,0,0,0.15);
}

.sn-card {
  transition: all 0.3s ease;
}
.sn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 26px rgba(0,61,117,0.2);
}
.sn-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background:#003d75;
  color:#ffc107;
  font-size: 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  box-shadow: 0 0 0 6px #ffc10744, 0 8px 18px rgba(0,0,0,0.15);
}

.sn-team-card { transition: all 0.3s ease; border:none; }
.sn-team-card:hover { transform: translateY(-6px); box-shadow:0 12px 28px rgba(0,61,117,0.2); }
.sn-team-img { height:280px; overflow:hidden; }
.sn-team-img img { width:100%; height:100%; object-fit:cover; border-bottom:4px solid #ffc107; transition:transform 0.5s ease; }
.sn-team-card:hover img { transform:scale(1.08); }
.sn-team-overlay { position:absolute; inset:0; background:rgba(0,61,117,0.65); opacity:0; transition:0.3s; }
.sn-team-card:hover .sn-team-overlay { opacity:1; }
.sn-team-overlay a { color:#ffc107; font-size:1.2rem; }

.sn-card { transition: all 0.3s ease; }
.sn-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,61,117,0.15); }
.sn-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background:#003d75; color:#ffc107;
  font-size:1.8rem; display:flex; align-items:center; justify-content:center;
  margin:0 auto;
  box-shadow: 0 0 0 6px #ffc10744, 0 8px 18px rgba(0,0,0,0.15);
}
.plus {
  color:#ffc107;
  font-weight:700;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hover-zoom img {
  transition: transform .5s ease, box-shadow .5s ease;
}
.hover-zoom:hover img {
  transform: scale(1.07);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,61,117,0.15);
  opacity: 0;
  transition: opacity .4s ease;
}
.img-wrap:hover .img-overlay {
  opacity: 1;
}

/* Button */
.sn-btn {
  background:#003d75;
  color:#fff;
  border:none;
  border-radius:50px;
  padding:14px 34px;
  font-weight:600;
  position:relative;
  overflow:hidden;
  transition:all .3s ease;
}
.sn-btn:hover {
  background:linear-gradient(90deg,#003d75,#002a52);
  color:#ffc107;
  transform: translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.choose-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,61,117,0.1);
  transition: all .3s ease;
}
.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,61,117,0.2);
}
.icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #003d75;
  color: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all .3s ease;
}
.choose-card:hover .icon-wrap {
  background: #ffc107;
  color: #003d75;
  transform: scale(1.1);
}
  .product-card { background:#fff; transition: all .35s ease; }
  .product-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,.1); }
  .prod-img { height: 220px; overflow:hidden; }
  .prod-img img { height:100%; object-fit:cover; transition: transform .5s ease; }
  .product-card:hover .prod-img img { transform: scale(1.07); }
  .btn-advanced { position:relative; overflow:hidden; font-weight:600; color:#003d75; border:2px solid #ffc107; padding:12px 20px; }
  .btn-advanced .btn-bg { position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,#ffc107,#ffd66d); transition:all .35s ease; z-index:0; }
  .btn-advanced:hover .btn-bg { left:0; }
  .btn-advanced i, .btn-advanced span { position:relative; z-index:1; }

.process-card {
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,61,117,0.15);
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:#003d75;
  color:#ffc107;
  font-size:1.8rem;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all 0.3s ease;
}
.process-card:hover .step-circle {
  background:#ffc107;
  color:#003d75;
  transform: scale(1.1);
}

.industry-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.industry-card:hover {
  transform: translateY(-8px);
  border-color: #003d75;
  box-shadow: 0 8px 20px rgba(0,61,117,0.15);
}
.icon-wrap {
  width: 70px;
  height: 70px;
  background: #003d75;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.industry-card:hover .icon-wrap {
  background: #ffc107;
  color: #003d75;
  transform: scale(1.1);
}

.sn-card {transition:.3s; }
.sn-card:hover {transform:translateY(-8px);box-shadow:0 18px 40px rgba(2,36,70,0.08);}
.sn-icon-wrap {
  width:70px;height:70px;
  background:linear-gradient(180deg,#003d75,#00284e);
  color:#ffc107;font-size:1.5rem;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
  box-shadow:0 6px 16px rgba(0,61,117,0.2);
  transition:.3s;
}
.sn-card:hover .sn-icon-wrap {background:linear-gradient(180deg,#ffc107,#ffd65b);color:#003d75;transform:scale(1.1);}

.sn-card {transition:.3s;}
.sn-card:hover {transform:translateY(-8px);box-shadow:0 18px 40px rgba(2,36,70,0.08);}
.sn-icon-wrap {
  width:70px;height:70px;
  background:linear-gradient(180deg,#003d75,#00284e);
  color:#ffc107;font-size:1.5rem;
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  margin-bottom:1rem;
  box-shadow:0 6px 16px rgba(0,61,117,0.2);
  transition:.3s;
}
.sn-card:hover .sn-icon-wrap {background:linear-gradient(180deg,#ffc107,#ffd65b);color:#003d75;transform:scale(1.1);}

.logos-slider {
  overflow: hidden;
  position: relative;
  height: 100px;
}
.logos-track {
  display: flex;
  gap: 60px;
  animation: scrollLogos 20s linear infinite;
}
.logos-track img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.faq-item {
  background:#002a52;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.accordion-button {
  background:#002a52;
  color:#fff;
  font-weight: 600;
  padding: 16px;
  transition: all 0.3s ease;
}
.accordion-button:hover {
  background:#004080;
  color:#ffc107;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  background:#002a52;
  color:#ddd;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.faq-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}
.accordion-button:not(.collapsed) .faq-icon {
  transform: rotate(45deg); /* ➕ turns into ✖ */
  color:#ffc107;
}
.news-card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
}
.news-img-wrapper img {
  transition: transform .4s ease;
}
.news-card:hover img {
  transform: scale(1.05);
}

 .prod-card { border-radius: 18px; overflow: hidden; background:#fff; transition:.4s; border:1px solid #e6e6e6; }
  .prod-card:hover { transform:translateY(-6px); box-shadow:0 12px 28px rgba(0,0,0,.12); }
  .prod-media img { border-bottom:1px solid #dfdfdf; transition:.4s; width:100%; }
  .prod-card:hover img { transform:scale(1.05); }
  .btn-product { background:#003d75; color:#fff; border-radius:50px; padding:10px 18px; transition:.3s; display:inline-block; }
  .btn-product:hover { background:#ffc107; transform:translateY(-2px); }
  .carousel-control-prev-icon, .carousel-control-next-icon { filter:invert(1); }

    .sn-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .sn-card:hover .icon-circle {
      transform: scale(1.1);
      transition: transform 0.3s ease;
    }

 
    .value-card {
      transition: all 0.4s ease;
    }
    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }
    .icon-circle {
      width: 85px;
      height: 85px;
      font-size: 40px;
      border-radius: 50%;
      color: #ffc107;
      background: linear-gradient(145deg, #003d75, #0059a3);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
      transition: all 0.4s ease;
    }
    .icon-circle.alt {
      background: linear-gradient(145deg, #ffc107, #ffda4f);
      color: #003d75;
    }
    .value-card:hover .icon-circle {
      transform: scale(1.12) rotate(5deg);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }


    .sn-card {
      transition: all 0.4s ease;
    }
    .sn-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    }
    .sn-card:hover .icon-circle {
      transform: scale(1.12) rotate(5deg);
      transition: transform 0.3s ease;
    }

   
    .sn-btn-primary {
      background: linear-gradient(135deg, #003d75, #0059a3);
      color: #fff;
      border: none;
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0 6px 15px rgba(0, 61, 117, 0.2);
    }
    .sn-btn-primary:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #0059a3, #003d75);
      box-shadow: 0 12px 25px rgba(0, 61, 117, 0.25);
    }

    .sn-btn-secondary {
      background: linear-gradient(135deg, #ffc107, #ffda4f);
      color: #003d75;
      border: none;
      border-radius: 50px;
      transition: all 0.4s ease;
      box-shadow: 0 6px 15px rgba(255, 193, 7, 0.2);
    }
    .sn-btn-secondary:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #ffda4f, #ffc107);
      box-shadow: 0 12px 25px rgba(255, 193, 7, 0.3);
    }

  
    .process-card {
      transition: all 0.4s ease;
    }
    .process-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    }
    .step-circle {
      transition: transform 0.3s ease;
    }
    .process-card:hover .step-circle {
      transform: scale(1.12) rotate(5deg);
    }

  
    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      font-size: 38px;
      color: #ffc107;
      background: linear-gradient(145deg,#003d75,#0059a3);
      display:flex; align-items:center; justify-content:center;
      box-shadow:0 8px 18px rgba(0,0,0,0.15);
      transition:0.3s ease;
    }
    .icon-circle.gold {
      background: linear-gradient(145deg,#ffc107,#ffda4f);
      color:#003d75;
    }
    .region-card {
      transition: all 0.4s ease;
      border: none;
    }
    .region-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }
    .region-card:hover .icon-circle {
      transform: scale(1.1) rotate(6deg);
    }
    .divider {
      display:block; width:60px; height:3px; background:#ffc107; margin:10px auto;
    }


    .benefit-card {
      transition: all 0.35s ease;
    }
    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow:0 20px 40px rgba(0,0,0,0.12);
    }
    .icon-circle {
      width: 75px;
      height: 75px;
      border-radius: 50%;
      display:flex; align-items:center; justify-content:center;
      font-size:32px;
      color:#ffc107;
      background:linear-gradient(145deg,#003d75,#0059a3);
      box-shadow:0 8px 18px rgba(0,0,0,0.15);
      transition:0.3s ease;
    }
    .icon-circle.gold {
      background:linear-gradient(145deg,#ffc107,#ffda4f);
      color:#003d75;
    }
    .benefit-card:hover .icon-circle {
      transform:scale(1.15) rotate(6deg);
    }



    
 
    .pro-master-card {
      background:rgba(255,255,255,0.75);
      backdrop-filter:blur(10px);
      padding-bottom:15px;
      border-radius:20px;
      transition:0.45s ease;
      border:1px solid rgba(0,0,0,0.06);
    }
    .pro-master-card:hover {
      transform:translateY(-12px);
      box-shadow:0 25px 45px rgba(0,61,117,0.18);
      background:rgba(255,255,255,0.92);
    }

    .pro-master-img {
      height:230px;
      overflow:hidden;
      position:relative;
      border-bottom:1px solid #eee;
    }
    .pro-master-img img {
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.5s ease;
    }
    .pro-master-card:hover img {
      transform:scale(1.12);
      filter:brightness(1.06);
    }

    .pro-tag {
      position:absolute;
      bottom:12px;
      left:12px;
      background:#003d75;
      color:white;
      padding:4px 12px;
      font-size:12px;
      border-radius:20px;
    }
    .pro-tag.gold {
      background:#ffc107;
      color:#003d75;
    }

    .pro-line {
      width:60px;
      height:3px;
      background:#ffc107;
      margin:12px auto;
      border-radius:4px;
    }

    .pro-master-btn {
      display:block;
      text-decoration:none;
      padding:11px;
      border-radius:30px;
      background:linear-gradient(135deg,#003d75,#0059a3);
      color:white;
      transition:.3s;
    }
    .pro-master-btn:hover {
      box-shadow:0 12px 22px rgba(0,61,117,0.35);
      transform:translateY(-3px);
      color:white;
    }
 
  

    .passive-card {
      background:rgba(255,255,255,0.75);
      backdrop-filter:blur(10px);
      border-radius:20px;
      transition:0.4s ease;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }
    .passive-card:hover {
      transform:translateY(-10px);
      box-shadow:0 25px 45px rgba(0,61,117,0.16);
    }

    .passive-img {
      height:290px; overflow:hidden; position:relative; border-bottom:1px solid #eee;
    }
    .passive-img img {
      width:100%; height:100%; object-fit:cover; transition:0.5s ease;
    }
    .passive-card:hover img {
      transform:scale(1.12);
      filter:brightness(1.07);
    }

    .tag {
      position:absolute;
      bottom:10px;
      left:10px;
      background:#003d75;
      color:white;
      padding:4px 12px;
      border-radius:20px;
      font-size:12px;
    }
    .tag.gold {
      background:#ffc107;
      color:#003d75;
    }

    .passive-btn {
      display:block;
      background:linear-gradient(135deg,#003d75,#0059a3);
      color:white;
      padding:10px;
      border-radius:30px;
      text-decoration:none;
      transition:.3s ease;
    }
    .passive-btn:hover {
      transform:translateY(-3px);
      box-shadow:0 12px 20px rgba(0,61,117,0.35);
      color:white;
    }
 


    

  .p-card {
    background:white;
    padding:25px 25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
  }
  .p-card:hover {
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
  }
  .p-card h4 {
    font-size:18px;
    color:#003d75;
    font-weight:700;
    margin-bottom:8px;
  }
  .p-card p {
    color:#666;
    font-size:15px;
    line-height:1.55;
  }
  table tr td, table tr th {
    padding:12px;
    border-bottom:1px solid #ddd;
  }
  table tr td:first-child {
    font-weight:600;
    color:#003d75;
  }

  .dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  left: 100%;
  top: 0;
  margin-left: 0.1rem;
  display: none;
}

.dropdown-submenu.show > .dropdown-menu {
  display: block;
}

/* Mobile fix */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 0;
  }
}
