
  /* ---------- AARNIX Capabilities Section ---------- */
  .capabilities {
   background: radial-gradient(circle at top left, #C42026, #cb010b);

    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  .capabilities .capabilities-section {
    text-align: center;
    position: relative;
    padding: 0 20px;
  }

  .capabilities h2 {
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .capabilities p {
    max-width: 750px;
    margin: 0 auto 60px;
    color: #cfd8e3;
    line-height: 1.7;
    font-size: 16px;
  }

  .capabilities .flow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Connector line */
  .capabilities .flow-container::before {
    content: "";
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, black, black);
    z-index: 0;
    opacity: 0.5;
  }

  .capabilities .flow-step1 {
    text-align: center;
    position: relative;
    z-index: 1;
    width: 140px;
    transition: transform 0.3s ease;
  }

  .capabilities .flow-step1:hover {
    transform: translateY(-10px);
  }

  .capabilities .icon-bubble {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(145deg, black, black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(247, 13, 13, 0.574);
    transition: all 0.3s ease-in-out;
  }

  .capabilities .flow-step1:hover .icon-bubble {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0);
    transform: scale(1.1);
  }

  .capabilities .flow-step1 h5 {
    margin-top: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .capabilities .flow-container {
      flex-direction: column;
      gap: 50px;
    }
    .capabilities .flow-container::before {
      display: none;
    }
    .capabilities .flow-step1 {
      width: 100%;
    }
  }

  /* Floating glow effects */
  .capabilities::before,
  .capabilities::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s infinite ease-in-out;
  }

  .capabilities::before {
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(0,170,255,0.4), transparent 70%);
  }

  .capabilities::after {
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(0,120,255,0.4), transparent 70%);
    animation-duration: 9s;
    animation-direction: reverse;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
  }

  .whatsapp_float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 1000;
}
.whatsapp_float:hover {
    background: #20b358;
    color: #fff;
}
.whatsapp-icon {
    font-size: 20px;
    margin-right: 8px;
}




    body, html {
      margin: 0;
      
       
      font-family: Arial, sans-serif;
      
    }
   
    /* Background Video */
    .background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      object-fit: cover;
    }

    /* Header Style */


    /* .navbar { 
      background: white; 
      border-radius: 15px;
      margin: 15px auto;
      width: 80%;
      padding: 10px 25px;
    } */

.navbar { 
  background: white; 
  border-radius: 15px;
  border: #C42026 2px solid;
  margin: 15px auto;
  width: 80%;
  padding: 10px 25px;
}

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 50%;                 
  transform: translateX(-50%); 
  width: 80%;
  z-index: 1000;
}

.navbar-nav .nav-link {
      color: #000000;
      font-weight: 500;
      margin: 0 10px;
}

    .navbar-nav .nav-link:hover {
      color: #C42026;
       font-weight: bolder !important; 
             transform: scale(1.4) !important; 
          
    }

    .btn-login {
      border: 1px solid #ffffff;
      color: #ffffff;
      background: transparent;
      margin-right: 10px;
      border-radius: 8px;
      padding: 5px 15px;
    }

    .btn-login:hover {
      background: #ffffff;
      color: #C42026;
    }

    .btn-get-started {
      background: #C42026;
      color: #ffffff;
      border-radius: 8px;
      padding: 5px 15px;
      border: none;
    }

    .btn-get-started:hover {
      background: #000000;
      color: #fff;
    }

    .navbar-brand img {
      height: 60px;
    }

    .dropdown-menu {
      background-color: black;
      border: 1px solid #333;
    }

    .dropdown-menu .dropdown-item {
      color: #fff;
    }

    .dropdown-menu .dropdown-item:hover {
      background-color: #C42026;
      color: #fff;
    }

    /* Hero Section (video visible behind header too) */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero .background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
 
  background: rgba(10, 13, 17, 0.478); 
} 

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.hero h1, .hero h4, .hero p {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}


.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: black;
  }

  

  .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin: 0;
    padding: 0 10px;
    /* gradient text */
    background: linear-gradient(90deg, #C42026, #5b86e5, #ff416c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    text-transform: none;
  }

  

  /* decorative underline that animates on load */
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 6px;
    border-radius: 6px;
    margin: 12px auto 0;
    background: linear-gradient(90deg,#ff416c,#ff4b2b,#ffbf2e);
    box-shadow: 0 8px 24px rgba(255,65,108,0.12);
    transform-origin: left center;
    transform: scaleX(0);
    animation: underlineIn 700ms cubic-bezier(.2,.8,.2,1) forwards;
  }

  @keyframes underlineIn {
    to { transform: scaleX(1); }
  }

  

  /* responsive tweak for title size */
  @media (max-width: 576px) {
    .section-title { font-size: 1.8rem; }
    .section-title::after { width: 56px; height: 5px; }
  }

/* service css */

.services {
  padding: 80px 20px;
  background: white;
  color: black;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: black;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: black;
  color: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* ICON STYLE */
.icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  position: relative;
}

/* Gradient Glow Effects */
.gradient-red {
  background: linear-gradient(135deg,#ff416c,#ff4b2b);
  box-shadow: 0 0 30px rgba(255,65,108,0.6);
}

.gradient-blue {
  background: linear-gradient(135deg,#36d1dc,#5b86e5);
  box-shadow: 0 0 30px rgba(91,134,229,0.6);
}

.gradient-green {
  background: linear-gradient(135deg,#11998e,#38ef7d);
  box-shadow: 0 0 30px rgba(56,239,125,0.6);
}

/* BUTTON STYLE */
.btn-service {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid #333;
  background: transparent;
  color: #fff;
  transition: all 0.4s ease;
}

.gradient-red-btn:hover {
  background: linear-gradient(135deg,#ff416c,#ff4b2b);
  border: none;
}

.gradient-blue-btn:hover {
  background: linear-gradient(135deg,#36d1dc,#5b86e5);
  border: none;
}

.gradient-green-btn:hover {
  background: linear-gradient(135deg,#11998e,#38ef7d);
  border: none;
}

/* ===== Slider changes for auto horizontal sliding ===== */
  .services { padding: 80px 10px; background: white; color: black; text-align: center; }
  .services .container { max-width: 1200px; margin: 0 auto; }

  .slider { overflow: hidden; width: 100%; }
  .slider-track {
    display: flex;
    gap: 30px;
    align-items: stretch;
    /* track height will be determined by card content */
  }

  /* make each card a fixed width (so multiple cards appear side-by-side) */
  .service-card {
    flex: 0 0 320px; /* adjust width as needed */
    min-width: 260px;
  }

  /* ensure the buttons and icon styles remain consistent */
  .service-card .icon { width: 90px; height: 90px; font-size: 36px; }

  /* small responsive tweak */
  @media (max-width: 768px) {
    .service-card { flex: 0 0 260px; }
  }
  /* ===== end slider CSS ===== */

 /* ===== AARNIX WHY CHOOSE US - scoped styles (add these inside the existing <style> tag) ===== */
  .why {
    padding: 64px 20px;
    background: linear-gradient(180deg,#f7fbff 0%, #ffffff 40%);
    color: #0a0f2b;
  }
  .why .container { max-width: 1200px; margin: 0 auto; }

  .why-header {
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom: 18px;
  }
  .why-badge {
    background: linear-gradient(90deg,#C42026);
    color:#fff;
    padding:6px 12px;
    border-radius:999px;
    font-weight:700;
    font-size:0.9rem;
    box-shadow:0 8px 20px rgba(91,134,229,0.12);
  }
  .why-title {
    margin:0;
    font-size:2rem;
    font-weight:800;
    background: linear-gradient(90deg,#e80000,#df454a,#ff416c);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .why-sub {
    margin:10px 0 26px 0;
    color:#5b616b;
    max-width:880px;
    font-size:1rem;
    line-height:1.45;
  }

  .why-grid {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:18px;
  }
  .why-card {
    background:#fff;
    border-radius:14px;
    padding:18px;
    box-shadow:0 8px 24px rgba(10,15,43,0.06);
    display:flex;
    gap:14px;
    align-items:flex-start;
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .why-card:hover { transform: translateY(-8px); box-shadow:0 18px 40px rgba(10,15,43,0.10); }
  .why-icon {
    flex:0 0 56px;
    width:56px;
    height:56px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
  }
  .why-icon.blue
   { background: linear-gradient(135deg,#36d1dc,#5b86e5); 
  }
  .why-icon.green { background: linear-gradient(135deg,#11998e,#38ef7d); }
  .why-icon.red { background: linear-gradient(135deg,#ff416c,#ff4b2b); }
  .why-icon.purple { background: linear-gradient(135deg,#7f00ff,#e100ff); }

  .why-card h4 { margin:0 0 6px 0; font-size:1rem; color:#0a0f2b; font-weight:700; }
  .why-card p { margin:0; color:#59606b; font-size:0.95rem; line-height:1.4; }

  .why-cta { margin-top:22px; display:flex; gap:12px; align-items:center; }
  .why-btn { padding:10px 18px; border-radius:999px; font-weight:700; text-decoration:none; }
  .why-btn.primary { background: linear-gradient(90deg,#C42026,#e32525); color:#fff; border:none; }
  .why-btn.ghost { background:transparent; border:2px solid #C42026; color:#C42026; }

  @media (max-width: 992px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 576px) { .why-grid { grid-template-columns: 1fr; } .why-header { flex-direction:column; align-items:flex-start; } }
  /* ===== end aarnix why styles ===== */




.info-box {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.info-box h3 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.info-box p {
  color: #777;
  font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
    .contact-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #C42026;
      color: #fff;
      padding: 60px 50px;
      border-radius: 10px;
      margin: 40px auto;
      max-width: 1100px;
    }

    .contact-text {
      max-width: 550px;
    }

    .contact-text h2 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .contact-text p {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .contact-text .cta-btn {
      background: #fff;
      color: #0056d2;
      padding: 12px 25px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }

    .contact-text .cta-btn:hover {
      background: #f1f1f1;
    }

    .contact-img img {
      max-width: 300px;
      border-radius: 10px;
    }

    @media(max-width: 900px) {
      .contact-section {
        flex-direction: column;
        text-align: center;
      }
      .contact-img {
        margin-top: 20px;
      }
    }

        /* Footer wrapper and background handling */
    .footer-wrap {
      position: relative;
      color: white;
      overflow: hidden;
    }

    /* Video fills area, is behind content */
    .footer-bg video {
      position: absolute;
      inset: 0; /* top:0;right:0;bottom:0;left:0 */
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* Fallback background image if video removed/disabled */
    .footer-bg {
      position: absolute;
      inset: 0;
      background-position: center;
      background-size: cover;
      z-index: 0;
    }

    /* Overlay to make text readable + add visual flair */
    .footer-overlay {
      position: absolute;
      inset: 0;
     /* background: linear-gradient(180deg, rgba(115, 160, 250, 0.45) 0%, #00a0e3 50%, rgba(0, 0, 0, 0.65) 100%); */

      backdrop-filter: blur(4px) saturate(120%);
      z-index: 1;
    }

    /* Content that sits above video + overlay */
    .footer-content {
      position: relative;
      z-index: 2;
      padding: 4rem 1rem;
    }

    /* Styling footer elements */
    .brand { font-weight: 700; letter-spacing: 0.6px; }
    .social a { font-size: 1.25rem; margin-right: .8rem; }

    /* Newsletter compact on small devices */
    .newsletter .form-control { min-width: 0; }

    /* Small utility to keep footer visually separated from the page */
    footer small { opacity: .85; }

    /* Footer height and responsive tweaks */
    @media (min-width: 992px) {
      .footer-content { padding: 6rem 4rem; }
    }

    /* If user prefers reduced motion - pause video & simplify visuals */
    @media (prefers-reduced-motion: reduce) {
      .footer-bg video { display: none; }
    }

    /* Make video hidden on very small/data devices via a helper class toggled by JS */
    .no-video .footer-bg video { display: none !important; }

    /* Make footer sticky to bottom if page has little content */
    .site-footer { width: 100%; }
  
  
/* Custom Styles */
   
 /* ===== Section Background ===== */
  /* .who-we-are {
    /* background: linear-gradient(180deg, #f9fcff 0%, #3abfe0 100%), 
    url('image/arches.png');
    background-repeat: repeat; */
    /* border-radius: 0 0 60px 60px;
    box-shadow: inset 0 5px 25px rgba(0,0,0,0.05); 
  } */

  /* ===== Image Wrapper ===== */
  .image-wrapper {
    position: relative;
  }

  .main-img {
    border-radius: 20px;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #C42026, #cc0000) border-box;
    position: relative;
    z-index: 2;
  }

  .overlay-img {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 70%;
    border: 5px solid #fff;
    border-radius: 20px;
    z-index: 1;
    transition: transform 0.5s ease;
  }

  .image-wrapper:hover .overlay-img {
    transform: scale(1.05);
  }

  .circle-bg {
    position: absolute;
    top: -60px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,160,227,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }

  /* ===== Button ===== */
  .learn-btn {
    background: #C42026;
    transition: all 0.3s ease;
  }

  .learn-btn:hover {
    background: black;
    box-shadow: 0 0 15px rgba(242, 0, 0, 0.4);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .overlay-img { display: none; }
    .main-img { width: 100%; }
  }

    .about-hero {
    position: relative;
    height: 70vh;
    background: 
      linear-gradient(rgba(230, 2, 2, 0.75), rgba(227, 0, 0, 0.75)),
      url('image/service/about-background.webp') 
      center/cover no-repeat;
  }

  .about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, #fff, transparent);
  }

  .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
  }

  @media (max-width: 768px) {
    .about-hero {
      height: 60vh;
      padding: 0 20px;
    }
    .about-hero h1 {
      font-size: 2rem;
    }
    .about-hero p {
      font-size: 1rem;
    }
  }


.core-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: black;
  position: relative;
  display: inline-block;
 

  background: linear-gradient(120deg, #C42026, 0%, #ff0811 100%);
  color: #fff;
  padding: 0 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(227, 0, 0, 0.3);
  text-align: center;
  align-items: center;
}
  

.tech-heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: black;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
 
}

.tech-heading::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #C42026, #ff0811 );
  border-radius: 4px;
  animation: techLine 2s ease-out forwards;
}

@keyframes techLine {
  from { width: 0; }
  to { width: 100%; }
}

    :root {
      --brand-blue: #C42026,;
      --brand-black: #ff0811;
    }

    /* body {
      font-family: 'Poppins', sans-serif;
      background: #f8fcff;
      color: #333;
    } */

    /* ========== Mission Flow ========== */
    .flow-bg {
      /* background: linear-gradient(180deg, #fafdff, #7ecef6); */
       background: linear-gradient(90deg, #f0373d, 0%, #e30000 100%), 
    url('image/arches.png');
    background-repeat: repeat;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .mission-flow h2 {
      color: black;
      font-weight: 800;
    }

    .mission-flow p {
      color: black;
    }

    .connector {
      position: absolute;
      top: 40px;
      left: 0;
      width: 100%;
      height: 220px;
      pointer-events: none;
    }

    .node {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-red);
      font-size: 18px;
      transition: transform .3s ease;
    }

    .node:hover {
      transform: scale(1.2);
    }

    .flow-step {
      background: #fff;
      border-radius: 15px;
      padding: 16px 20px;
      box-shadow: 0 6px 18px rgba(0,5,2,0.08);
      transition: all .3s ease;
      max-width: 300px;
    }

    .flow-step:hover {
      transform: translateY(-7px);
    }

    .step-title {
      font-weight: 600;
      color: #C42026,;
      margin-bottom: 5px;
    }

    .step-desc {
      font-size: 14px;
      color: #666;
    }

    /* ========== Core Values Timeline ========== */
    .values-section {
      background: #fff;
      padding: 80px 0;
      position: relative;
    }

    .timeline {
      position: relative;
      margin: 50px auto;
      padding-left: 30px;
      border-left: 3px solid var(--brand-blue);
      max-width: 750px;
    }

    .tl-item {
      margin-bottom: 50px;
      
      position: relative;
    }

    .tl-node {
      position: absolute;
      left: -27px;
      top: 0;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--brand-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-blue);
      font-size: 18px;
      z-index: 1;
    }

    .tl-item .card {
      background: #f9fbfd;
      border-radius: 12px;
       border-color: #C42026,;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      padding: 20px;
      margin-left: 40px;
    }

    .tl-item h5 {
      color: #002b44;
      font-weight: 600;
    }

    .tl-item p {
      font-size: 14px;
      color: #666;
    }

    @media (max-width: 768px) {
      .flow-step {
        max-width: 100%;
      }

      .timeline {
        padding-left: 20px;
      }

      .tl-item .card {
        margin-left: 50px;
      }
    }
  

    /* service page css  */

     /* Hero Section */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #ffffff 0%,  #C42026 100%);
      position: relative;
      overflow: hidden;
      padding: 50px 20px;
    }

    /* Floating shapes */
    .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.15;
      animation: float 6s ease-in-out infinite;
    }
    .shape.shape1 { width: 120px; height: 120px; background: #ef2222; top: 10%; left: 5%; animation-delay: 0s;}
    .shape.shape2 { width: 200px; height: 200px; background: white; bottom: 15%; right: 10%; animation-delay: 2s;}
    /* .shape.shape3 { width: 80px; height: 80px; background: #040075; top: 40%; right: 30%; animation-delay: 4s;} */

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    /* Left text */
    .hero-text h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      animation: fadeInUp 2s ease forwards;
    }

    .hero-text p {
      font-size: 1.25rem;
      color: #555;
      margin-bottom: 30px;
      animation: fadeInUp 1.2s ease forwards;
    }

    .hero-text .btn {
      margin: 0 10px;
      padding: 12px 30px;
      font-size: 1rem;
      border-radius: 50px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .hero-text .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Right image */
    .hero-img img {
      max-width: 100%;
      animation: floatImage 4s ease-in-out infinite alternate;
    }

    @keyframes floatImage {
      0% { transform: translateY(0); }
      100% { transform: translateY(-15px); }
    }

    @media (max-width: 992px) {
      .hero-section { flex-direction: column-reverse; text-align: center; }
      .hero-img { margin-bottom: 40px; }
      .hero-text h1 { font-size: 2.2rem; }
      .hero-text p { font-size: 1rem; }
      .hero-text .btn { width: 100%; margin-bottom: 15px; }
    }

    .why-us-section {
  background: #f9faff;
}


.why-us-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: black; 
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  /* Lift effect */
  transform: translateY(-5px);
  /* Subtle shadow for depth */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}



.why-us-heading p {
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.5px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.why-us-heading h2::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #C42026, #ff0811,  #ff416c);
  margin: 10px auto 0;
  border-radius: 2px;
  animation: underlineGrow 2s ease forwards;
}

@keyframes underlineGrow {
  0% { width: 0; }
  100% { width: 50%; } 
}


.why-us-heading p {
  font-size: 1.1rem;
  color: #555;
  letter-spacing: 0.5px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}



.why-card {
  perspective: 1000px;
  position: relative;
}

.why-card .card-front, 
.why-card .card-back {
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.6s, background-color 0.6s;
  backface-visibility: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.why-card .card-front {
  background: #fff;
}

.why-card .card-back {
  background: #C42026; 
  color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
}

.why-card:hover .card-front {
  transform: rotateY(180deg);
}

.why-card:hover .card-back {
  transform: rotateY(0deg);
}

.why-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.why-card h5 {
  font-weight: 600;
  font-size: 1.25rem;
}

.why-card p {
  font-size: 0.95rem;
  margin-top: 10px;
}





.section-heading {
      font-weight: 700;
      margin-bottom: 40px;
      color: #0a0a0a;
    }
    .service-box {
      text-align: center;
      padding: 25px;
      transition: 0.3s ease-in-out;
      border-radius: 10px;
      border: 1px solid #C42026,;
      background: #fff;
      box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    }
    .service-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .service-icon {
      font-size: 40px;
      color: #C42026,;
      margin-bottom: 15px;
    }
    .service-title {
      font-weight: 600;
      font-size: 18px;
      color: #222;
    }




.partner-us {
  background: linear-gradient(135deg, #C42026 0%,white 100%);
}

.partner-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.partner-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.partner-highlights li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.partner-us img {
  max-width: 100%;
  transition: transform 0.3s;
}

.partner-us img:hover {
  transform: translateY(-10px) scale(1.05);
}


/* ===== Process Timeline ===== */
   

    .wd-step {
      text-align: center;
      margin-bottom: 30px;
      transition: transform 0.4s;
    }

    .wd-step:hover {
      transform: scale(1.09);
    }

    .wd-step i {
      font-size: 40px;
      color: white;
      margin-bottom: 15px;
    }

       .wd-cta {
      background: linear-gradient(135deg, #000000, 0%, #C42026 100%);
      color: #fff;
      text-align: center;
      padding: 100px 20px;
    }


    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

@media (max-width: 767px) {
  .wd-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .wd-step {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}


    /* ===== Final CTA ===== */
    .cta {
      margin-top:120px;
      background:linear-gradient(135deg,#C42026,#e32525);
      color:white;
      text-align:center;
      padding:80px 20px;
      border-radius:30px;
    }
    .cta h2 { font-weight:700; }
    .btn-glow {
      background:black;
      color:var(--brand-black);
      font-weight:600;
      border-radius:30px;
      padding:12px 28px;
      margin-top:20px;
      box-shadow:0 0 20px rgba(255,255,255,0.6);
      transition:.3s;
    }
    .btn-glow:hover { box-shadow:0 0 30px rgba(255,255,255,1); }


    .flow-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.flow-link:hover {
  transform: translateY(-5px);
  color: white;
}

    /* ===============================
       BANKING PAGE CUSTOM STYLES
       =============================== */
    .banking-page {
      font-family: 'Poppins', sans-serif;
      background-color: #000000;
      color: #e0e0e0;
    }

    /* ===== Hero Section ===== */
    .banking-page .hero {
      position: relative;
      height: auto;
      background: linear-gradient(135deg, rgba(223, 28, 28, 0.675), rgba(0,0,0,0.7)),
      url('image/service/background-image.jpg') center/cover no-repeat;
      overflow: hidden;
    }
    .banking-page .hero h1 {
      margin-top: 80px;
      color: white;
      text-shadow: 0 0 15px rgba(254, 254, 254, 0.4);
    }
    .banking-page .hero p {
      color: #d0d0d0;
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ===== Intro Section ===== */

    .banking-page .intro-section {
      background: black;
      color: red;
    }
    .banking-page .intro-section h2 {
      border-left: 5px solid black;
      padding-left: 15px;
    }
    .banking-page .intro-section p {
      color: #cdc1c1;
      line-height: 1.7;
    }

    /* ===== Services Grid ===== */

#solutions h2 {
  color: #C42026 !important;   /* Brand red */
  padding-bottom: 30px;
  font-weight: 800;
} 

#solutions h5 {
    color: #C42026 !important;   
    font-weight: 600;            
    letter-spacing: 0.5px;       
    transition: 0.3s ease;      
}

/* Optional hover highlight */
#solutions h5:hover {
    color: #E6332A;              
    transform: translateY(-2px); 
}

    .banking-page #solutions {
      background: radial-gradient(circle at top left, #000000, #000814);
      padding: 60px 0;
      border-radius: 12px;
    }
    .banking-page .banking-service-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      padding: 35px 25px;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid rgba(255,255,255,0.1);
      position: relative;
      overflow: hidden;
    }
    
    .banking-page .banking-service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 5, 5, 0.889);
      border-color: #C42026;
    }

    .banking-page .banking-icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgb(250, 254, 255);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: #C42026;
      margin: 0 auto 20px;
    }

    /* ===== Alternating Sections ===== */
    .banking-page .alt-section {
      background: #0d1626;
      padding: 60px 0;
    }
    .banking-page .alt-section h3 {
      color: #C42026;
    }
    .banking-page .alt-section p {
      color: #ccc;
    }
    .banking-page .alt-section img {
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,180,216,0.2);
    }

    /* ===== Info Section ===== */
    .banking-page .info-section {
      background: linear-gradient(135deg, #00172e, #0a223e);
      color: #f1f1f1;
      padding: 60px 0;
    }
    .banking-page .info-section h2 {
      color: #C42026;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .banking-page .info-section p {
      color: #c9c9c9;
      line-height: 1.8;
    }

    /* ===== CTA Section ===== */
    .banking-page .cta {
      text-align: center;
      background: linear-gradient(135deg, #C42026, #e32525);
      color: white;
      padding: 70px 20px;
      border-radius: 20px;
      margin: 60px auto;
      box-shadow: 0 8px 25px rgba(216, 0, 0, 0.839);
    }
    .banking-page .cta h2 {
      font-weight: 700;
      margin-bottom: 15px;
    }
    .banking-page .cta .btn-glow {
      background: #fff;
      color: #C42026;
      border-radius: 30px;
      font-weight: 600;
      padding: 12px 28px;
      transition: 0.3s;
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
    }
    .banking-page .cta .btn-glow:hover {
      background: #C42026;
      color: #fff;
      box-shadow: 0 0 20px rgba(216, 0, 0, 0.987);
    }
  
    .btn-outline-red {
    color: #E6332A;             
    border: 2px solid #E6332A;   
    background-color: transparent;
    font-weight: 600;
}

.btn-outline-red:hover {
    background-color: #E6332A;   
    color: #fff;               
}
