/* ---------- AARNIX Capabilities Section ---------- */
.aarnix-capabilities {
  background: radial-gradient(circle at top left, #002c5f, #001933);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.aarnix-capabilities .capabilities-section {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.aarnix-capabilities h2 {
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aarnix-capabilities p {
  max-width: 750px;
  margin: 0 auto 60px;
  color: #cfd8e3;
  line-height: 1.7;
  font-size: 16px;
}

.aarnix-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 */
.aarnix-capabilities .flow-container::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, #0078ff, #00aaff);
  z-index: 0;
  opacity: 0.5;
}

.aarnix-capabilities .flow-step1 {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 140px;
  transition: transform 0.3s ease;
}

.aarnix-capabilities .flow-step1:hover {
  transform: translateY(-10px);
}

.aarnix-capabilities .icon-bubble {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0078ff, #00c8ff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.4);
  transition: all 0.3s ease-in-out;
}

.aarnix-capabilities .flow-step1:hover .icon-bubble {
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.8);
  transform: scale(1.1);
}

.aarnix-capabilities .flow-step1 h5 {
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .aarnix-capabilities .flow-container {
    flex-direction: column;
    gap: 50px;
  }

  .aarnix-capabilities .flow-container::before {
    display: none;
  }

  .aarnix-capabilities .flow-step1 {
    width: 100%;
  }
}

/* Floating glow effects */
.aarnix-capabilities::before,
.aarnix-capabilities::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s infinite ease-in-out;
}

.aarnix-capabilities::before {
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.4), transparent 70%);
}

.aarnix-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, 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: #00a0e3 2px solid;
  margin: 15px auto;
  width: 80%;
  padding: 10px 25px;
}

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1000;
}

/* .navbar,
.navbar-sticky {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
} */

.navbar-nav .nav-link {
  color: #000000;
  font-weight: 500;
  margin: 0 10px;
}

/* .navbar-nav .nav-link:hover {
      color: #00a0e3;
       font-weight: bolder !important; 
             transform: scale(1.4) !important; 
          
    } */

.navbar-nav .nav-link:hover {
  color: #00a0e3;
  font-weight: 600 !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: #0a0f2b;
}

.btn-get-started {
  background: #00a0e3;
  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: #0a0f2b;
  border: 1px solid #333;
}

.dropdown-menu .dropdown-item {
  color: #fff;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #00a0e3;
  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;
  width: 100%; height: 100%;
  background: rgba(65, 128, 237, 0.55); 
}  */

.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, #00a0e3, #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(0.2, 0.8, 0.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: #111936;
  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: 1400px;
  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) ===== */
.aarnix-why {
  padding: 64px 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 40%);
  color: #0a0f2b;
}

.aarnix-why .aarnix-container {
  max-width: 1200px;
  margin: 0 auto;
}

.aarnix-why-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.aarnix-why-badge {
  background: linear-gradient(90deg, #00a0e3, #5b86e5);
  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);
}

.aarnix-why-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00a0e3, #5b86e5, #ff416c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aarnix-why-sub {
  margin: 10px 0 26px 0;
  color: #5b616b;
  max-width: 880px;
  font-size: 1rem;
  line-height: 1.45;
}

.aarnix-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.aarnix-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 0.22s ease, box-shadow 0.22s ease;
}

.aarnix-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(10, 15, 43, 0.1);
}

.aarnix-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);
}

.aarnix-why-icon.blue {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.aarnix-why-icon.green {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.aarnix-why-icon.red {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.aarnix-why-icon.purple {
  background: linear-gradient(135deg, #7f00ff, #e100ff);
}

.aarnix-why-card h4 {
  margin: 0 0 6px 0;
  font-size: 1rem;
  color: #0a0f2b;
  font-weight: 700;
}

.aarnix-why-card p {
  margin: 0;
  color: #59606b;
  font-size: 0.95rem;
  line-height: 1.4;
}

.aarnix-why-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.aarnix-why-btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.aarnix-why-btn.primary {
  background: linear-gradient(90deg, #00a0e3, #5b86e5);
  color: #fff;
  border: none;
}

.aarnix-why-btn.ghost {
  background: transparent;
  border: 2px solid #00a0e3;
  color: #00a0e3;
}

@media (max-width: 992px) {
  .aarnix-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .aarnix-why-grid {
    grid-template-columns: 1fr;
  }

  .aarnix-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: #00aaff;
  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: 0.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: 0.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, #00a0e3, #0077cc) 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: #00a0e3;
  transition: all 0.3s ease;
}

.learn-btn:hover {
  background: #007cc7;
  box-shadow: 0 0 15px rgba(0, 160, 227, 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(0, 160, 227, 0.75), rgba(0, 160, 227, 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: #002b44;
  position: relative;
  display: inline-block;

  background: linear-gradient(120deg, #00a0e3 0%, #0073b8 100%);
  color: #fff;
  padding: 0 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 160, 227, 0.3);
  text-align: center;
  align-items: center;
}

.tech-heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #002b44;
  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, #00a0e3, #0073b8);
  border-radius: 4px;
  animation: techLine 2s ease-out forwards;
}

@keyframes techLine {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

:root {
  --brand-blue: #00a0e3;
  --brand-dark: #0073b8;
}

/* body {
      font-family: 'Poppins', sans-serif;
      background: #f8fcff;
      color: #333;
    } */

/* ========== Mission Flow ========== */
.flow-bg {
  /* background: linear-gradient(180deg, #fafdff, #7ecef6); */
  background: linear-gradient(90deg, #7ecef6 0%, #00a0e3 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: #555;
}

.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-blue);
  font-size: 18px;
  transition: transform 0.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 0.3s ease;
  max-width: 300px;
}

.flow-step:hover {
  transform: translateY(-7px);
}

.step-title {
  font-weight: 600;
  color: #002b44;
  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: #00a0e3;
  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%, #00a0e3 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, #00c6ff, #0072ff, #8e2de2);
  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: #00a0e3;
  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 #00a0e3;
  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: #007bff;
  margin-bottom: 15px;
}

.service-title {
  font-weight: 600;
  font-size: 18px;
  color: #222;
}

.partner-us {
  background: linear-gradient(135deg, #00a0e3 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, #00a0e3 0%, #000 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, #0073b8, #00a0e3);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 30px;
}

.cta h2 {
  font-weight: 700;
}

.btn-glow {
  background: white;
  color: var(--brand-blue);
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  transition: 0.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: #00a0e3;
}

/* ===============================
       BANKING PAGE CUSTOM STYLES
       =============================== */
.banking-page {
  font-family: "Poppins", sans-serif;
  background-color: #0a0f1a;
  color: #e0e0e0;
}

/* ===== Hero Section ===== */
.banking-page .hero {
  position: relative;
  height: auto;
  background: linear-gradient(135deg, rgba(2, 24, 48, 0.8), rgba(0, 0, 0, 0.7)),
    url("image/background-image.jpeg") center/cover no-repeat;
  overflow: hidden;
}

.banking-page .hero h1 {
  margin-top: 80px;
  color: #00b4d8;
  text-shadow: 0 0 15px rgba(0, 180, 216, 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: #0d1626;
  color: #00b4d8;
}

.banking-page .intro-section h2 {
  border-left: 5px solid #00b4d8;
  padding-left: 15px;
}

.banking-page .intro-section p {
  color: #fff;
  line-height: 1.7;
}

/* ===== Services Grid ===== */
.banking-page #solutions {
  background: radial-gradient(circle at top left, #041326, #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(0, 180, 216, 0.25);
  border-color: #00b4d8;
}

.banking-page .banking-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #00b4d8;
  margin: 0 auto 20px;
}

/* ===== Alternating Sections ===== */
.banking-page .alt-section {
  background: #0d1626;
  padding: 60px 0;
}

.banking-page .alt-section h3 {
  color: #00b4d8;
}

.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: #00b4d8;
  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, #003459, #0077b6);
  color: white;
  padding: 70px 20px;
  border-radius: 20px;
  margin: 60px auto;
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.banking-page .cta h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.banking-page .cta .btn-glow {
  background: #fff;
  color: #0077b6;
  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: #00b4d8;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.7);
}



  
     
  #aarnix-certificates {
    background: radial-gradient(circle at center, #071022 0%, #0b1a2b 100%);
    color: #fff;
    font-family: "Inter", sans-serif;
    text-align: center;
    padding: 80px 20px;
  }

  

  #aarnix-certificates .globe-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
  }

  #aarnix-certificates .globe {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center,
      rgba(47,161,255,0.25) 0%,
      rgba(47,161,255,0.05) 60%,
      transparent 100%);
    box-shadow: inset 0 0 40px rgba(47,161,255,0.25);
    animation: aarnixRotate 12s linear infinite;
    overflow: hidden;
  }

  @keyframes aarnixRotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
  }

  #aarnix-certificates .lat-line,
  #aarnix-certificates .lon-line {
    position: absolute;
    border: 1px solid rgba(47,161,255,0.15);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
  }

  #aarnix-certificates .lat-line:nth-child(2){transform:rotateX(30deg);}
  #aarnix-certificates .lat-line:nth-child(3){transform:rotateX(60deg);}
  #aarnix-certificates .lat-line:nth-child(4){transform:rotateX(90deg);}
  #aarnix-certificates .lat-line:nth-child(5){transform:rotateX(120deg);}
  #aarnix-certificates .lon-line:nth-child(6){transform:rotateY(30deg);}
  #aarnix-certificates .lon-line:nth-child(7){transform:rotateY(60deg);}
  #aarnix-certificates .lon-line:nth-child(8){transform:rotateY(90deg);}
  #aarnix-certificates .lon-line:nth-child(9){transform:rotateY(120deg);}
  #aarnix-certificates .lon-line:nth-child(10){transform:rotateY(150deg);}

  #aarnix-certificates .cert {
    position: absolute;
    background: rgba(47,161,255,0.1);
    border: 1px solid rgba(47,161,255,0.25);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
  }

  #aarnix-certificates .cert:hover {
    background: rgba(47,161,255,0.25);
    box-shadow: 0 0 12px rgba(47,161,255,0.4);
  }

  /* card positions */

#aarnix-certificates .cert:nth-of-type(2) { top: 12%; left: -150px; }
#aarnix-certificates .cert:nth-of-type(3) { top: 12%; right: -160px; }


#aarnix-certificates .cert:nth-of-type(4) { top: 40%; right: -190px; }

#aarnix-certificates .cert:nth-of-type(5) { bottom: 12%; right: -160px; }
#aarnix-certificates .cert:nth-of-type(6) { bottom: 12%; left: -150px; }
#aarnix-certificates .cert:nth-of-type(7) { bottom: 40%; left: -200px; }

  @media (max-width: 768px) {
    #aarnix-certificates .globe-container { width: 280px; height: 280px; }
    #aarnix-certificates .cert { font-size: 13px; padding: 8px 12px; }
  }
  

  .aarnix-heading {
  font-family: "Poppins", "Inter", sans-serif;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #2fa1ff, #56ccf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
}
.aarnix-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2fa1ff, #56ccf2);
  transform: translateX(-50%);
  animation: glowBar 3s ease-in-out infinite alternate;
}
@keyframes glowBar {
  from {box-shadow: 0 0 10px rgba(47,161,255,0.6);}
  to {box-shadow: 0 0 20px rgba(86,204,242,0.9);}
}
.highlight {
  color: black;
  background: none;
  -webkit-text-fill-color: rgba(5, 188, 255, 0.881)
}