@import url("https://fonts.cdnfonts.com/css/termina-test");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --dark-bg: #0b1a2e;
  --dark-bg-2: #0d1f35;
  --accent-blue: #1a3a5c;
  --glass-bg: rgba(20, 60, 100, 0.35);
  --glass-border: rgba(100, 160, 220, 0.25);
  --light-bg: #f5f6f8;
  --text-light: #c8d6e5;
  --text-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted-dark: #555;
  --heading-font: "Termina Test", sans-serif;
  --body-font: "Termina Test", sans-serif;
  --paragraph-font: "Roboto", sans-serif;
  /* --termina-test-font: 'Termina Test', sans-serif; */

  --card-radius: 16px; /* Figma radius */
  --card-blur: 15px; /* Frosted glass blur */
  --card-fill: rgba(128, 128, 128, 0.3); /* "Glass" 30% */
  --stroke-w: 1px; /* Border thickness = 1px */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  overflow-x: hidden;
  color: var(--text-dark);
  min-width: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

p {
  font-family: var(--paragraph-font);
  font-weight: 300;
  line-height: 1.7;
}
/* ============ NAVBAR ============ */
.navbar-damac {
  background: rgba(34, 34, 34, 0.1);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  box-shadow: 0px 2px 24px 0px rgba(78, 77, 75, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* padding: 1.25rem 0; */
  transition: all 0.3s ease;
}

.navbar-damac.navbar-sticky {
  background: rgba(10, 26, 46, 0.95);
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.3);
  padding: 0.75rem 0;
}

.navbar-damac .navbar-brand .navbar-logo {
  height: 36px;
}

.footer-logo {
  height: 36px;
}

.navbar-damac .nav-link {
  color: var(--text-white) !important;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 2rem;
  transition: color 0.3s;
}

.navbar-damac .nav-link:hover {
  color: var(--text-white) !important;
}

.navbar-damac .navbar-toggler {
  border: none;
  padding: 0;
  margin-right: 0.75rem;
}

.navbar-damac .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-damac .navbar-toggler-icon {
  filter: invert(1);
  width: 1.2em;
  height: 1.2em;
}

.nav-item-custom-left-margin {
  margin-inline-start: 146px !important;
}

.btn-data-center {
  font-size: 0.625rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  border: none;
  border-radius: 50px;
  padding: 11px 32px;
  background: #63708a;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-data-center:hover {
  background: #737f99;
  color: var(--text-white);
}

.btn-data-center-mobile {
  font-size: 0.625rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  text-underline-offset: 8px;
}

/* ============ HERO ============ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  /* background: url("images/hero-bg-01.png") center/cover no-repeat; */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(6, 14, 26, 0.6); */
  z-index: 1;
  pointer-events: none;
  /* background: url("images/hero-bg-01.png") center/cover no-repeat; */
}

/* .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(
        ellipse at 70% 30%,
        rgba(30, 80, 140, 0.3) 0%,
        transparent 60%
      ),
      radial-gradient(
        ellipse at 30% 80%,
        rgba(20, 60, 120, 0.15) 0%,
        transparent 50%
      );
    pointer-events: none;
    z-index: 10;
    background: url("images/hero-bg-01.png") center/cover no-repeat;
  } */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 5rem 0 6.5rem;
  max-width: 600px;
}

.hero-content h1 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 120%;
  margin-bottom: 1.7rem;
}

.btn-discover {
  border: 1px solid #ffffff;
  color: var(--text-dark);
  padding: 0.75rem 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: #ffffff;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 500;
}

.btn-discover:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  border-color: #ffffff;
}

/* Stats Cards */
.stats-row {
  position: relative;
  z-index: 2;
  padding: 4rem 0 0rem;
}

/* Base glass */
.stat-card {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--card-radius);
  background: var(--card-fill);
  backdrop-filter: blur(var(--card-blur));
  -webkit-backdrop-filter: blur(var(--card-blur));
  color: #fff;
  height: 100%;
  overflow: hidden; /* IMPORTANT for perfect rounding */
  box-shadow: 0 2px 24px rgba(78, 77, 75, 0.1); /* your outer shadow */
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

/* Inner gradient stroke (Figma: Stroke Light, Inner) */
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: var(--stroke-w); /* stroke thickness */
  /* Light vertical stroke: bright at top, vanishes quickly, faint return at bottom */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    /* top bright */ rgba(255, 255, 255, 0.06) 12%,
    /* quick falloff like "Light" */ rgba(255, 255, 255, 0.01) 40%,
    rgba(255, 255, 255, 0.01) 60%,
    rgba(255, 255, 255, 0.1) 100% /* subtle bottom rim */
  );
  /* Create an INNER border by punching a hole in the middle */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Subtle glass lighting (top highlight & bottom vignette) for closer Figma look */
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      120% 80% at 30% 0%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.05) 35%,
      transparent 60%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.05) 85%,
      rgba(0, 0, 0, 0.1) 100%
    );
  mix-blend-mode: screen; /* helps keep it “light” without flattening */
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 80, 160, 0.2);
}

.stat-card .stat-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.stat-card .stat-title {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 120%;
}

.stat-card .stat-desc {
  font-size: 0.875rem;
  color: var(--text-white);
  line-height: 140%;
  font-weight: 200;
  font-family: var(--paragraph-font);
  letter-spacing: 0.7px;
}

/* ============ ABOUT US ============ */
.about-section {
  background: url("images/gradient.png") center/cover no-repeat;
  padding: 5rem 0 0;
}

.about-section .section-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-section .about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.about-section .about-text p {
  margin-bottom: 16px;
  font-weight: 300;
}

/* Partner Logos Carousel */
.partners-section {
  padding: 3rem 0 2rem;
  border-top: none;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 3rem;
}

.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-section::before {
  left: 0;
  background: none;
}

.partners-section::after {
  right: 0;
  background: none;
}

.logo-carousel-swiper {
  width: 100%;
  padding: 1rem 0;
  overflow: hidden;
}

.logo-carousel-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.logo-carousel-swiper .swiper-slide {
  width: 130px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4rem;
  flex-shrink: 0;
}

.logo-carousel-swiper:hover {
  /* Pause effect handled by Swiper */
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  opacity: 0.7;
  transition: opacity 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  padding: 0.5rem;
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.partner-logo-item:hover {
  opacity: 1;
}

/* ============ SOLUTIONS ============ */
.solutions-section {
  background: linear-gradient(180deg, #0a1628 0%, #0e1f38 50%, #364455 100%);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(25, 70, 130, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.our-solution-card-list-wrapper {
  position: relative;
  z-index: 2;
}

.our-solution-card-list-wrapper > div {
  margin-block-end: 3rem;
}

.solutions-section .section-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.solutions-section .section-subtitle {
  text-align: center;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.solution-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  /* aspect-ratio: 1 / 1; */
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 60, 130, 0.3);
}

.solution-card .card-bg {
  /* position: absolute; */
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s;
}

.solution-card .card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.solution-card:hover .card-bg {
  transform: scale(1.05);
}

.solution-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(99, 116, 151, 0.3) 0%,
    rgba(99, 116, 151, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.4s ease-in-out;
}

.solution-card .card-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: center;
}

/* Container for the hover state */
.card-hover-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0px;
  opacity: 0; /* Hidden by default */
  visibility: hidden;
  transition:
    opacity 0.4s ease-in-out,
    visibility 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

/* The actual box styling based on your screenshot */
.hover-inner {
  width: 100%;
  height: 100%;
  padding: 1.5rem 2rem;
  border: 5px solid #cdd9ef;
  border-radius: 8px;
  color: #fff;
  text-align: left;

  background: linear-gradient(
    180deg,
    rgba(99, 116, 151, 0.8) 0%,
    rgba(99, 116, 151, 1) 100%
  );

  display: flex;
  justify-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
}

/* Typography for Hover Content */
.hover-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: #c5a36b; /* Golden color from SS */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hover-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.875rem;
  opacity: 0.9;
}

.hover-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.hover-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
  font-family: var(--paragraph-font);
  font-weight: 300;
}

.hover-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

/* Hover Interaction Logic */
.solution-card:hover .card-overlay {
  opacity: 0; /* Hide the simple title */
}

.solution-card:hover .card-hover-info {
  opacity: 1; /* Show the detailed info */
  visibility: visible;
}

/* ============ PARTNERSHIP ============ */
.partnership-section {
  background: #ffffff;
  padding: 0 0 3rem;
  position: relative;
  background: url("images/Performance-section-bg.png") center/cover no-repeat;
}

.partnership-section .section-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 0.75rem;
}

.partnership-section .section-subtitle {
  text-align: center;
  color: var(--text-muted-dark);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.partnership-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}

.partnership-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  padding: 0 1rem 0 0;
}

.partnership-card {
  /* width: 260px;
  min-width: 260px;
  height: 400px; */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  /* transition:
    transform 0.3s,
    box-shadow 0.3s; */
  /* 1. APPLY FIGMA SHADOW HERE */
  /* Formula: box-shadow: X Y Blur Spread Color */
  box-shadow: 0px 2px 24px 0px rgba(78, 77, 75, 0.1);

  /* 2. APPLY BACKGROUND BLUR (Sfoctato) */
  /* Note: This works best if the card background has transparency */
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px); /* For Safari support */

  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.partnership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 8px 32px 0px rgba(78, 77, 75, 0.2);
}

.partnership-card .card-bg-img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.partnership-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    rgba(99, 116, 151, 0.1) 0%,
    rgba(99, 116, 151, 0.1) 41.92%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  text-align: center;
}

.partnership-card .card-overlay h5 {
  font-family: var(--body-font);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  font-family: var(--paragraph-font);
}

.partnership-card .card-overlay p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-white);
  min-height: 145px;
  margin-bottom: 0;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 5;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c0c0c0;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  padding: 0;
}

.carousel-dots .dot.active {
  background: #1a3a5c;
  transform: scale(1.2);
}

.carousel-dots .dot:hover {
  background: #888;
}

/* ============ CONTACT / CALLBACK ============ */
.contact-section {
  background: url("images/form-bg.jpg") center/cover no-repeat;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 10, 20, 0.55);
  pointer-events: none;
}

.callback-form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(15, 40, 75, 0.5);
  border: 1px solid rgba(80, 140, 200, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* 1. BORDER RADIUS (Now works with the gradient) */
  border-radius: 20px;

  /* 2. GLASS BACKGROUND (#808080 at 30% from Figma) */
  /* We use two backgrounds: Layer 1 is the fill, Layer 2 is the gradient border */
  background-image:
    linear-gradient(rgba(128, 128, 128, 0.3), rgba(128, 128, 128, 0.3)),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.001) 40%,
      rgba(255, 255, 255, 0.01) 60%,
      rgba(255, 255, 255, 0.1) 100%
    );

  /* 3. BORDER SETUP */
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;

  /* 4. BLUR & SHADOW (Blur 100 and Shadow 10% from Figma) */
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
  box-shadow: 0px 2px 24px 0px rgba(78, 77, 75, 0.1);
}

.callback-form-wrapper h2 {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 0.75rem;
}

.callback-form-wrapper .form-subtitle {
  text-align: center;
  color: var(--text-white);
  font-size: 0.75rem;
  margin-bottom: 2rem;
}

.callback-form-wrapper label {
  color: var(--text-white);
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
  font-weight: 200;
  font-family: var(--paragraph-font);
}

.callback-form-wrapper .form-control,
.callback-form-wrapper .form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--text-white);
  padding: 0.6rem 0;
  font-size: 0.95rem;
  resize: none;
  font-family: var(--paragraph-font);
}

.enquiry-textarea {
  height: 50px;
}

.callback-form-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--paragraph-font);
}

.callback-form-wrapper .form-control:focus,
.callback-form-wrapper .form-select:focus {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
  color: var(--text-white);
}

.callback-form-wrapper .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 12px;
  padding-right: 1.5rem;
  font-family: var(--paragraph-font);
}

.callback-form-wrapper .form-select option {
  /* background: #0b1a2e; */
  color: #0b1a2e;
}

.callback-form-wrapper .form-select.placeholder-selected {
  color: rgba(255, 255, 255, 0.35);
}

.phone-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-input-group .form-select {
  max-width: 150px;
  flex-shrink: 0;
}

.phone-input-group .form-control {
  flex: 1;
  font-family: var(--paragraph-font);
}

.callback-form-wrapper .form-check-label {
  color: var(--text-white);
  font-size: 0.75rem;
  font-style: normal;
  padding-left: 0.875rem;
  letter-spacing: 1px;
}

.callback-form-wrapper .form-check-label a {
  color: var(--text-white);
  text-decoration: underline;
  font-weight: 400;
}

.callback-form-wrapper .form-check-input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  width: 24px;
  height: 24px;
}

.callback-form-wrapper .form-check-input:checked {
  background-color: #2a6cb5;
  border-color: #2a6cb5;
}

.btn-callback {
  width: 100%;
  background: #ffffff;
  border: 1px solid #ffffff;
  color: var(--text-dark);
  padding: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-top: 1.5rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-callback:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #ffffff;
  color: var(--text-dark);
}

.custom-phone-number-input-outer .iti.iti--allow-dropdown {
  display: block;
}
.custom-phone-number-input-outer .iti__arrow {
  /* border-left-color: #fff;
  border-right-color: #fff; */
  border-top-color: #fff;
}

.custom-phone-number-input-outer .iti__country,
.custom-phone-number-input-outer .iti__search-input {
  font-size: 0.875rem;
  font-family: var(--paragraph-font);
}

/* ============ FOOTER ============ */
.footer-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #222222 30%);
  padding: 0;
}

.footer-top {
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  gap: 3rem;
  justify-content: space-between;
}

.footer-logo-wrap {
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.social-icons a {
  color: var(--text-white);
  font-size: 1.25rem;
  transition: opacity 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.7;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(78, 77, 75, 1);
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-white);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
  font-family: var(--paragraph-font);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-copyright {
  color: rgba(200, 214, 229, 0.5);
  font-size: 0.8rem;
  font-weight: 300;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .stat-card {
    margin-bottom: 1rem;
  }

  .solution-card {
    margin-bottom: 1rem;
  }

  .partnership-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  /* Mobile Navbar - white bg */
  .navbar-damac {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }

  .navbar-damac .navbar-brand svg text {
    fill: #1a1a2e;
  }

  .navbar-damac .navbar-brand svg text:last-child {
    fill: #3a5a8c;
  }

  .navbar-damac .navbar-toggler-icon {
    filter: none;
  }

  .navbar-damac .nav-link {
    color: var(--text-dark) !important;
  }

  .navbar-damac .nav-link:hover {
    color: var(--text-dark) !important;
  }

  .btn-data-center {
    display: none;
  }

  .navbar-damac .navbar-collapse {
    background-color: white;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0px;
  }

  .navbar-damac .navbar-nav {
    padding: 10px 0;
  }

  .navbar-damac .nav-link {
    margin-inline-start: 1rem;
  }

  /* Mobile Hero - rounded container */
  .hero-section {
    /* min-height: 70vh; */
    padding-top: 0;
  }

  .hero-content-outer {
    position: relative;
    /* z-index: 12; */
  }

  .hero-inner {
    /* background: linear-gradient(
      135deg,
      #060e1a 0%,
      #0b1a2e 30%,
      #122a45 60%,
      #0e2240 100%
    ); */
    /* padding: 3rem 1.5rem 2.5rem; */
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .hero-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(
        ellipse at 70% 30%,
        rgba(30, 80, 140, 0.3) 0%,
        transparent 60%
      ),
      radial-gradient(
        ellipse at 30% 80%,
        rgba(20, 60, 120, 0.15) 0%,
        transparent 50%
      );
    pointer-events: none;
  }

  .hero-section::before {
    display: none;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 4rem 0 14rem;
  }

  .hero-content h1 {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .btn-discover {
    background: #ffffff;
    color: var(--text-dark);
    border-color: #ffffff;
    padding: 0.85rem 2rem;
    font-weight: 500;
  }

  .btn-discover:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
  }

  /* Mobile stats - stacked inside hero container */
  .stats-row {
    padding: 1.5rem 0 0;
  }
  
  .stats-swiper {
    padding: 0 16px 2rem 16px;
  }
  
  .stats-row .swiper-slide {
    width: 85%;
  }

  .about-section .section-title,
  .solutions-section .section-title {
    font-size: 1.25rem;
    letter-spacing: 4px;
  }

  .callback-form-wrapper {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .callback-form-wrapper h2 {
    font-size: 1.6rem;
  }

  .partnership-card {
    width: 220px;
    min-width: 220px;
    height: 350px;
  }

  .partner-logo-item {
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  .logo-carousel-swiper {
    padding: 0rem 0;
  }

  .partners-section::before,
  .partners-section::after {
    width: 40px;
  }

  /* Our Solution Section */
  .solutions-section {
    padding-block-end: 2rem;
  }

  .our-solution-card-list-wrapper > div {
    margin-block-end: 0.3rem;
  }

  .solutions-section .section-title {
    font-size: 1.5rem;
    padding-inline: 2rem;
  }

  .solutions-section .section-subtitle {
    padding-inline: 2rem;
  }

  .solutions-section .section-subtitle br {
    display: none;
  }

  .solution-card .card-title {
    font-size: 1.25rem;
  }

  .partnership-card .card-overlay p {
    min-height: 118px;
    line-height: 1.4;
  }

  /* Performance Section */
  .partnership-section .section-title {
    font-size: 1.25rem;
  }

  .hover-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .hover-desc {
    margin-bottom: 0.5rem;
  }

  /* Blend Section */
  .blend-section-wrap {
    background: none !important;
    height: 50px !important;
  }

  /* footer */
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .social-icons a {
    font-size: 1.5rem;
  }

  .footer-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    padding-top: 0px;
  }

  .footer-copyright {
    color: var(--text-white);
  }

  /* About Section */
  .about-section {
    padding-inline: 1.5rem;
  }

  .logo-carousel-swiper .swiper-slide {
    margin-right: 0;
  }

  .logo-carousel-swiper .swiper-slide {
    width: 100px !important;
  }

  .partner-logo-item {
    width: 100%;
  }
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.error-message {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-family: var(--paragraph-font);
}

.form-control.is-invalid {
  border-bottom-color: #ff6b6b !important;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: var(--paragraph-font);
  display: none;
  align-items: center;
  gap: 0.75rem;
  animation: slideDown 0.3s ease-out;
}

.form-message.show {
  display: flex;
}

.form-message.success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ecc71;
}

.form-message.error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

.form-message::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.form-message.success::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232ecc71' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
}

.form-message.error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e74c3c' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z'/%3E%3C/svg%3E");
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Terms and Condition Modal */
.term-condition-modal {
  height: 96%;
  overflow: hidden;
}

.term-condition-modal .modal-dialog {
  height: inherit;
}

.term-condition-modal .modal-content {
  height: inherit;
  overflow: auto;
}

.term-condition-modal ul li {
  font-family: var(--paragraph-font);
}

.term-condition-modal .modal-footer {
  display: none;
}
/* hCaptcha Styling */
.h-captcha {
  display: flex;
  justify-content: left;
  margin: 1rem 0;
}

.h-captcha iframe {
  max-width: 100%;
}

.callback-form-wrapper .col-12 .h-captcha {
  margin: 0rem 0 1rem 0;
}
