/* ---- CSS Variables ---- */
:root {
  --navy: #051027;
  --navy-mid: #0b1b3d;
  --navy-light: #12254f;
  --navy-dark: rgba(0, 5, 55, 1);
  --blue: #2f86ff;
  --blue-light: #66b7ff;
  --blue-grad: linear-gradient(135deg, #2f86ff 0%, #06b6d4 100%);
  --cyan: #06b6d4;
  --white: #ffffff;
  --light: #f6f9ff;
  --gray-text: #6b7280;
  --dark-text: #000536;
  --border: #e6eefb;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 6px 18px rgba(47, 134, 255, 0.08);
  --shadow-md: 0 12px 36px rgba(47, 134, 255, 0.12);
  --shadow-lg: 0 24px 72px rgba(47, 134, 255, 0.16);
  --font-main:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
  --font-alt:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  width: 100%;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ========== UTILITIES ========= */
@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

.section-badge {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: #074b7a;
  margin-bottom: 20px;
}

.section-subtitle {
  /* font-size: 1rem;
  color: #000; */
  font-family: var(--font-main);
  /* max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7; */
}

/* New gradient class */
.gradient-text-new {
  background: linear-gradient(90deg, #777cf8 0%, #5c94fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS  ===== */
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ===== PRIMARY CTA  ===== */
.btn-primary-cta {
  background: linear-gradient(90deg, #0c89e0 0%, #074b7a 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 600 !important;
  font-size: 14px;
  gap: 8px;
  box-shadow: 0 10px 36px rgba(12, 137, 224, 0.25) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

/* Arrow Icon Style */
.btn-primary-cta i {
  background: #ffffff;
  color: #0c89e0;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

.btn-primary-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 44px rgba(12, 137, 224, 0.35) !important;
  background: linear-gradient(90deg, #0c89e0 0%, #074b7a 100%) !important;
  color: #ffffff !important;
}

.btn-primary-cta:hover i {
  background: #ffffff;
  color: #0c89e0;
}

/* ===== OUTLINE CTA ===== */
.btn-outline-cta {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 50px !important;
  padding: 10px 28px;
  font-weight: 600 !important;
  font-size: 14px;
}

.btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ===== NAVBAR =====*/
#mainNav {
  background: transparent;
  padding: 1.1rem 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
  z-index: 1000;
}

#mainNav.scrolled {
  background: var(--navy-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  max-width: 180px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
}
.navbar-nav .dropdown-toggle::after {
  margin-left: 0.3em;
  vertical-align: 0.15em;
}

.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  animation: dropIn 0.2s ease;
  min-width: 200px;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-text);
  transition: var(--transition);
}

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

.toggler-icon {
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO SECTION =====*/
.hero-section {
  background: linear-gradient(
    165deg,
    var(--navy) 0%,
    var(--navy-mid) 40%,
    var(--navy-light) 70%,
    var(--navy-mid) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;

  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(29, 95, 250, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.15) 0%,
    transparent 70%
  );
  bottom: 50px;
  left: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 52px;
  font-weight: 700;
  font-family: "Exo2", sans-serif;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-family: var(--font-alt);
  font-weight: 100;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
  font-size: 38px;
  text-transform: capitalize;
}

.hero-desc {
  font-size: 17px;
  color: rgb(216, 215, 215);
  max-width: 768px;
  margin: 0 auto 1.8rem;
  line-height: 1.7;
}

.hero-video-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto -260px;
}

.hero-video-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-video-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

/* Thumbnail Overlay Styling */
.hero-video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero-video-thumbnail.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;              
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; 
  z-index: 10;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;   
  opacity: 1;
  pointer-events: auto;
}

.play-btn i {
  font-size: 18px;
  color: var(--blue);
  display: block;
  transform: translateX(1px);
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.play-btn.is-hidden {
  opacity: 0;
  pointer-events: none; 
}

.hero-video-card:hover .play-btn {
  opacity: 1;
  pointer-events: auto;
}

#mainVideo::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
}
#mainVideo::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===== TRUSTED SECTION ===== */
.home-trusted .trusted-track {
  padding: 30px;
}

/* ===== SERVICES TABS WITH SWIPER =====*/
.services-section {
  background: var(--white);
}

.services-tabs-wrapper {
  width: 100%;
  margin: 40px 0;
  position: relative;
}

/* Swiper Container */
.swiper.mySwiper {
  width: 100%;
  padding: 10px 50px;
  overflow: hidden;
  display: flex;
 align-items: center;
 -webkit-mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
 mask-image: linear-gradient(to right, transparent 0, black 28px, black calc(100% - 28px), transparent 100%);
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: auto;
  flex-shrink: 0;
  /* margin-right: 20px !important; */
}

.svc-image-wrap {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: end;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}

.svc-image {
  width: 100%;
  max-width: 500px;
  height: 80%;
  object-fit: cover;
  border-radius: 0 24px 24px 0;
}

/* Tab Button */
.svc-tab {
  width: 100%;
  max-width: 170px;
  padding: 12px 20px;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #07114a;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  line-height: 1.4;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.svc-tab:hover {
  color: #638efc;
}

.svc-tab.active {
  background: #f2fcfe;
  border-top: 2px solid #e3eef9;
  border-left: 2px solid #e3eef9;
  border-right: 3px solid #638efc;
  border-bottom: 3px solid #638efc;
  border-radius: 8px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: #f0f4ff;
  border-radius: 50%;
  color: #000 !important;
  transition: all 0.3s ease;
}

.swiper-navigation-icon {
  width: 9px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #638efc;
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.svc-pane {
  display: none !important;
}

.svc-pane.active {
  display: block !important;
}

.services-tab-content {
  margin-top: 60px;
}

.svc-tab-indicator {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #777cf8 0%, #5c94fd 100%);
  border-radius: 2px;
  margin-bottom: 20px;
}

.svc-title {
  font-family: "Exo2", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
  margin-bottom: 20px;
}

.svc-desc {
  font-size: 16px;
  color: var(--dark-text);
  line-height: 1.75;
  font-family: var(--font-main);
  font-weight: 400;
  margin-bottom: 20px;
}

.svc-read-more {
  color: #074b7a;
  text-decoration: underline;
  font-weight: 500;
}


/* ===== STATS SECTION ===== */
.stats-section {
  padding: 100px 0;
  background: var(--white);
}

.stats-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  width: 100%;
}

.stats-grid > [class*="col-"] {
  width: 33.333333%;
  flex: 0 0 33.333333%;
  display: flex;
}

.stat-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-sizing: border-box;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card-dark {
  background: var(--navy-mid);
  color: var(--white);
}

.stat-card-light {
  background: var(--white);
  border-left: 1px solid var(--border);
}

.stat-card-border-left {
  border-left: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-alt);
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
  color: var(--dark-text);
}

.stat-card-dark .stat-number {
  color: var(--white);
}

.stat-number::after {
  content: "+";
}

.stat-label {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark-text);
}

.stat-card-dark .stat-label {
  color: var(--white);
}

.stat-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

.stat-card-dark .stat-desc {
  color: rgba(255, 255, 255, 0.7);
}

.stat-icon,
.stat-icon-light {
  position: absolute;
  bottom: 13px;
  right: 30px;
  left: auto;
  font-size: 60px;
  z-index: 2 !important;
  transform: scale(1);
  transform-origin: center center !important;

  /*
   * Same smooth transition for all icons
   */
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.5s ease !important;
}

.stat-icon {
  color: rgba(255, 255, 255, 0.35) !important;
}

.stat-icon-light {
  color: rgba(0, 0, 0, 0.2) !important;
}

.stat-card:hover .stat-icon,
.stat-card:hover .stat-icon-light {
  transform: scale(1.3) !important;
}

.stat-card-dark:hover .stat-icon,
.stat-card-dark:hover .stat-icon-light {
  color: rgba(255, 255, 255, 0.8) !important;
}

.stat-card-light:hover .stat-icon,
.stat-card-light:hover .stat-icon-light {
  color: rgba(255, 255, 255, 0.6) !important;
}

.stat-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transform: translateY(100%);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.stat-card:hover .stat-bg-img {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card > *:not(.stat-bg-img) {
  position: relative;
  z-index: 1;
}

.stat-card-light .stat-number,
.stat-card-light .stat-label,
.stat-card-light .stat-desc,
.stat-card-light .stat-icon-light {
  transition:
    color 0.5s ease,
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.stat-card-light:hover .stat-number,
.stat-card-light:hover .stat-label,
.stat-card-light:hover .stat-desc {
  color: #ffffff !important;
}

.stat-card-dark .stat-number,
.stat-card-dark .stat-label,
.stat-card-dark .stat-desc {
  color: #ffffff;
}

.stat-card-dark::after {
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0) 78.95%
  ) !important;

  opacity: 0.6 !important;
}

.stat-card-dark:hover::after {
  opacity: 0.8 !important;
}

.stat-card-dark .stat-bg-img {
  opacity: 0.6 !important;
  transform: translateY(0) !important;
}

.stat-card-dark:hover .stat-bg-img {
  opacity: 0.25 !important;
  transform: scale(1.05) !important;
}

.stat-card-light::after {
  background: rgba(0, 0, 0, 0.5) !important;
  opacity: 0 !important;
}

.stat-card-light:hover::after {
  opacity: 1 !important;
}

.stat-icon,
.stat-icon-light {
  will-change: transform;
  transform: scale(1) !important;
}

.stat-card:hover .stat-icon,
.stat-card:hover .stat-icon-light {
  transform: scale(1.3) !important;
}

/* ====  AI SLIDER SECTION ==== */
.ai-slider-section {
  padding: 0 0 80px 0;
}

.ai-slider-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #0b1035;
  margin-bottom: 16px;
}

.ai-slider-section .section-subtitle {
  max-width: 750px;
  margin: 0 auto 50px;
}

.ai-slider-wrapper {
  position: relative;
}

.ai-slider-viewport {
  overflow: hidden;
  padding: 10px 0 20px;
}

.ai-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.ai-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: #0b1035;
  flex-shrink: 0;
  /* Right slide: 24% minus gap */
  width: calc(24% - 20px);
  transition: width 0.5s ease;
}

.ai-slide.active {
  /* Active slide: 76% */
  width: 76%;
}

.ai-slide img.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
}

.ai-slide.active .slide-content {
  opacity: 1;
}

.slide-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.slide-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 90%;
}

.peek-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.ai-slide.active .peek-title {
  opacity: 0;
}

.peek-title span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
}

.ai-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.ai-slider-nav-btn {
  color: #0b1035;
  background: rgba(231, 236, 246, 1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 20px;
}

.ai-slider-nav-btn:hover {
  background: #638efc;
  color: #fff;
}

/* ===== TECHNOLOGIES SECTION ===== */
.tech-tabs-wrapper {
  margin: 2.5rem 0 2rem;
  scrollbar-width: none;
}
.tech-tabs-wrapper::-webkit-scrollbar {
  display: none;
}
.tech-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.tech-tab {
  flex: 1;
  min-width: 140px;
  padding: 1.1rem 0.8rem;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.3;
  position: relative;
}

.tech-tab:last-child {
  border-right: none;
}
.tech-tab i {
  font-size: 1.4rem;
}
.tech-tab.active {
  background: var(--navy-mid);
  color: var(--white);
}
.tech-tab.active::after {
  content: "";
  position: absolute;
  width: 20px;
  bottom: -8px;
  height: 20px;
  left: 50%;
  transform: rotate(45deg);
  background: var(--navy-mid);
  z-index: 1;
}
.tech-tab:hover:not(.active) {
  background: var(--light);
  color: var(--blue);
}

.tech-pane {
  display: none;
}

.tech-pane.active {
  display: block;
  animation: fadeInUp 0.35s ease;
}
.tech-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  justify-content: center; 
}

.tech-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 14px;
  width: 140px;          
  flex: 0 0 140px;       
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.tech-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--blue);
}

.tech-icon-img {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon-img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

/* ==== INDUSTRIES SECTION ==== */
.industries-section {
  padding: 90px 0;
  background: #fff;
}

.industries-section .industries-left {
  position: sticky;
  top: 90px;
}

.industry-card-top {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding: 2rem 1.5rem;
  min-height: 450px;
  cursor: pointer;
  border-top: 7px solid #0c89e0;
  background: #0d1b4b;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.industry-card-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.industry-card-top .industry-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: 0.4s;
}

.industry-card-top:hover .industry-img {
  transform: scale(1.04);
}

.industry-card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
  transition: 0.3s;
}

.industry-card-top:hover::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.industry-card-top > * {
  position: relative;
  z-index: 2;
}

.industry-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c89e0;
  margin-bottom: 4px;
}

.industry-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.industry-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s;
}

.industry-card-top:hover .industry-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

/* ==========================================
   TESTIMONIALS SECTION - MAIN WRAPPER
========================================== */
/* .testimonials-section {
  padding: 90px 0;
  background: var(--navy-dark, #000814); 
  overflow: hidden;
  position: relative;
}

.testimonials-section .section-title {
  color: var(--white, #fff);
  margin-bottom: 40px;
}
 .testimonials-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px !important;
  max-width: 1200px;
  margin: 0 auto;
} 
 .testimonials-slider {
  flex: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.testi-slide {
  display: none;
  width: 100%;
}

.testi-slide.active {
  display: block;
  animation: fadeInUp 0.45s ease;
} 


.testi-card {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(0deg, #0c89e0 -42.95%, #074b7a 140.01%);
  border: 0;
  border-radius: 18px;
  padding: 38px 40px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);


  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}


.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.testi-logo {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  border-radius: 50%;
  object-fit: contain !important;
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.25);
  padding: 5px !important;
  display: block;
}

.testi-brand-name {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.testi-brand-type {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
}


.testi-quote {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  font-style: normal;
  min-height: 85px;
  display: flex;
  align-items: flex-start;
}


.testi-author {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  margin-top: auto; 
}

.testi-author strong {
  color: #fff;
  font-weight: 600;
}

.testi-stats-bar {
  width: 100%;
  display: flex;
  align-items: stretch;
  padding: 16px 20px;
  background: rgba(0, 67, 125, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-sizing: border-box;
}

.testi-stat-item {
  flex: 1;
  padding: 0 20px;
}

.testi-stat-item + .testi-stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.testi-stat-num {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testi-stat-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}


.testi-nav {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #e7ecf6;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
}

.testi-nav:hover {
  background: #fff;
  transform: scale(1.1);
}
.story-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.story-btn {
  padding: 12px 30px;
  background: #fff;
  color: #000;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.story-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
  padding: 90px 0;
  background: var(--white);
}

.Case-title {
  text-align: left !important;
}

.case-featured-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 88px;
}
.case-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.case-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.case-card:hover .case-card-img {
  transform: scale(1.04);
}
.case-card-body {
  padding: 1.4rem;
}
.case-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.case-read-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.case-read-link:hover {
  color: var(--blue);
}

/* ==========================================
   FOOTER 
========================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 24px;
  margin-top: 50px !important;
}

.footer-top .row {
  justify-content: space-between;
  align-items: flex-start;
}

.footer-top .col-lg-7 {
  padding-right: 70px;
}

.footer-top .col-lg-5 {
  padding-left: 70px;
  text-align: right;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.footer-logo .brand-logo {
  height: 42px;
  width: auto;
}

.footer-about {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

/* ==== HEADINGS & CONTACT ==== */
/* .footer-heading {
  font-family: var(--font-main);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
} */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

.footer-contact li {
  /* display: flex; */
  align-items: flex-start;
  gap: 14px;
  justify-content: flex-end;
}

.footer-contact li i {
  font-size: 18px !important;
  margin-top: 3px !important;
  order: 2;
}

.footer-contact span,
.footer-contact a {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  order: 1;
}

.footer-contact a:hover {
  color: #fff;
}

/* ==== LINKS AREA ==== */
.footer-links-area {
  padding: 45px 0 40px;
}

.footer-links-area .row {
  justify-content: space-between;
  gap: 110px !important;
}

.footer-links-area [class*="col-"] {
  flex: 1;
  max-width: 23%;
}

.footer-links-area .col-xl-3:nth-child(1) {
  text-align: left;
}

.footer-links-area .col-xl-3:nth-child(2),
.footer-links-area .col-xl-3:nth-child(3) {
  text-align: left;
}

.footer-links-area .col-xl-3:nth-child(4) {
  text-align: left;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-area .col-xl-3:nth-child(1) .footer-links {
  align-items: flex-start;
}

.footer-links-area .col-xl-3:nth-child(2) .footer-links,
.footer-links-area .col-xl-3:nth-child(3) .footer-links {
  align-items: left;
}

.footer-links-area .col-xl-3:nth-child(4) .footer-links {
  align-items: left;
}

.footer-links li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
  transition: var(--transition);
  cursor: pointer;
}

.footer-links li:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links-area .col-xl-3:nth-child(4) .footer-links li:hover {
  padding-left: 0;
  padding-right: 5px;
}

/* ==== BOTTOM SECTION ==== */
.footer-bottom {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-bottom .row {
  width: 75%;
  margin: 0 auto;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.58);
}

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.28);
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-bottom-border {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 22px auto 0;
}

/* ================================================
   AOS-LIKE ANIMATIONS 
   ================================================ */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-aos="fade-up"] {
  transform: translateY(32px);
}
[data-aos="fade-left"] {
  transform: translateX(32px);
}
[data-aos="fade-right"] {
  transform: translateX(-32px);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
