:root {
  --brand: #24abe0;
  --brand-dark: #1a85b0;
  --brand-light: rgba(36, 171, 224, 0.12);
  --gold: #c9a84c;
  --dark: #0d1117;
  --dark2: #141b24;
  --dark3: #1c2635;
  --text: #e8edf4;
  --text-muted: #8fa3bc;
  --white: #ffffff;
  --border: rgba(36, 171, 224, 0.18);
  --glass: rgba(13, 17, 23, 0.72);
  --radius: 12px;
  --radius-lg: 20px;
  --ff-display: "Cormorant Garamond", serif;
  --ff-body: "DM Sans", sans-serif;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-brand: 0 4px 30px rgba(36, 171, 224, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
}
h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 500;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

.brand-text {
  color: var(--brand);
}
.gold-text {
  color: var(--gold);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 3px;
}

/* ─── UTILITIES ─── */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}
.section {
  padding: 80px 0 45px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  border-radius: 2px;
  margin: 18px 0 30px;
}
.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(36, 171, 224, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--brand);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 1.5px solid var(--brand);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

/* ─── FORM STYLES ─── */
.form-card {
  background: linear-gradient(
    135deg,
    rgba(28, 38, 53, 0.97),
    rgba(13, 17, 23, 0.97)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(36, 171, 224, 0.25);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
  min-height: 48px;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2324abe0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group select option {
  background: var(--dark2);
  color: var(--text);
}
.form-group textarea {
  min-height: 90px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(36, 171, 224, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
.form-submit {
  width: 100%;
  background: var(--brand);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* ─── HEADER / NAV ─── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 4px 0;
  transition: all 0.4s ease;
}
#header.scrolled {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  /* border-bottom: 1px solid var(--border); */
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}
.nav-menu a:hover {
  color: var(--brand);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--brand-dark);
}
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
  font-size: 1.1rem;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 17, 23, 0.98);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 500;
  transition: color 0.25s;
}
.mobile-menu a:hover {
  color: var(--brand);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark2) 40%,
    #0f1e2e 100%
  );
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(36, 171, 224, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    );
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(36, 171, 224, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 171, 224, 0.8) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(36, 171, 224, 0.12);
  border: 1px solid rgba(36, 171, 224, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero-headline {
  margin-bottom: 20px;
}
.hero-headline span {
  display: block;
}
.hero-headline .line-accent {
  color: var(--brand);
  font-style: italic;
}
.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat strong em {
  color: var(--brand);
  font-style: normal;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-form-wrap {
  animation: fadeSlideUp 0.8s 0.3s both;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-img-collage {
  position: relative;
  height: 520px;
}
.collage-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(36, 171, 224, 0.15);
}
.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collage-card-1 {
  width: 65%;
  height: 55%;
  top: 0;
  right: 0;
}
.collage-card-2 {
  width: 52%;
  height: 48%;
  bottom: 0;
  left: 0;
}
.collage-card-3 {
  width: 40%;
  height: 38%;
  bottom: 8%;
  right: 0;
}
.floating-badge {
  position: absolute;
  z-index: 10;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.floating-badge-1 {
  top: 40%;
  left: -20px;
}
.floating-badge i {
  color: var(--brand);
  font-size: 1.1rem;
}
.floating-badge strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}
.floating-badge span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ─── STATS TICKER ─── */
#stats-bar {
  background: linear-gradient(90deg, var(--dark2), var(--dark3), var(--dark2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-number .accent {
  color: var(--brand);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

/* ─── WHY CHOOSE ─── */
#why-choose {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-brand);
}
.why-badge-float strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
}
.why-badge-float span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}
.why-points {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s;
}
.why-point:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  transform: translateX(6px);
}
.why-icon {
  width: 46px;
  height: 46px;
  background: var(--brand-light);
  border: 1px solid rgba(36, 171, 224, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
  font-size: 1.1rem;
}
.why-point h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--ff-body);
}
.why-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PRODUCTS ─── */
#products {
  background: var(--dark);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  group: 1;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 20px 50px rgba(36, 171, 224, 0.2);
}
.product-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(13, 17, 23, 0.7) 100%
  );
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-body {
  padding: 22px;
}
.product-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.product-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prod-feat {
  font-size: 0.72rem;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(36, 171, 224, 0.2);
  border-radius: 4px;
  padding: 3px 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─── APPLICATIONS ─── */
#applications {
  background: var(--dark2);
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.app-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.app-card:hover img {
  transform: scale(1.07);
}
.app-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(13, 17, 23, 0.9) 100%
  );
}
.app-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.app-icon {
  width: 42px;
  height: 42px;
  background: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}
.app-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--ff-body);
}
.app-content p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ─── CERTIFICATIONS ─── */
#certifications {
  background: var(--dark);
  padding: 70px 0;
}
.cert-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.cert-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: center;
  min-width: 140px;
  transition: all 0.3s;
}
.cert-item:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}
.cert-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.cert-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--ff-body);
}
.cert-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── PROJECTS ─── */
#projects {
  background: var(--dark2);
}
.projects-slider {
  position: relative;
  padding: 10px 0 50px;
}

.swiper{
  padding-bottom: 35px;
}

.swiper-project .swiper-slide {
  height: auto;
}
.project-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.project-card:hover {
  border-color: var(--brand);
  transform: translateY(-5px);
}
.project-img {
  height: 200px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover .project-img img {
  transform: scale(1.06);
}
.project-body {
  padding: 20px;
}
.project-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  font-family: var(--ff-body);
}
.project-body span {
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 500;
}
.swiper-pagination-bullet {
  background: var(--text-muted) !important;
}
.swiper-pagination-bullet-active {
  background: var(--brand) !important;
}

/* ─── BRANDS ─── */
#brands {
  background: var(--dark);
  padding: 60px 0;
}
.brands-title {
  text-align: center;
  margin-bottom: 40px;
}
.brands-ticker-wrap {
  overflow: hidden;
  position: relative;

  .brands-ticker{
    .brand-slide{
      width: 100%;
      
      img{
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }
}
.brands-ticker-wrap::before,
.brands-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.brands-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}
.brands-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}
.brands-ticker {
  display: flex;
  gap: 0;
  /* animation: ticker 2s linear infinite; */
}
/* .brands-ticker:hover {
  animation-play-state: paused;
} */
.brand-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 70px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-right: 20px;
  /* padding: 0 24px; */
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s;
  overflow: hidden;
}
.brand-slide:hover {
  border-color: var(--brand);
  color: var(--white);
}
/* @keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */

.swiper.marquee-swiper {
  margin-top: 4rem;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    white 10%,
    white 90%,
    transparent 100%
  );
}

.swiper-wrapper.marquee-swiper {
  transition-timing-function: linear;
  align-items: center;
  position: relative;
  
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
    }
}

.swiper-slide.marquee-swiper {
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--dark2);
}
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.35s;
}
.testi-card:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 40px rgba(36, 171, 224, 0.15);
}
.testi-quote {
  font-size: 3rem;
  color: var(--brand);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  font-family: serif;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-light);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
  overflow: hidden;
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}
.testi-name span {
  font-size: 0.78rem;
  color: var(--brand);
}
.stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

/* ─── BOTTOM FORM ─── */
#get-quote {
  background: linear-gradient(135deg, var(--dark2), #0c1824);
  position: relative;
  overflow: hidden;
}
#get-quote::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(36, 171, 224, 0.1) 0%,
    transparent 60%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quote-left h2 {
  margin-bottom: 20px;
}
.quote-left p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.quote-highlights {
  display: grid;
  gap: 16px;
}
.q-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
}
.q-highlight i {
  color: var(--brand);
  font-size: 1rem;
}
.q-highlight span {
  color: var(--text);
  font-size: 0.9rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 66px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a, 
.footer-contact-item span a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.25s;
}
.footer-col ul li a:hover,.footer-contact-item span a:hover {
  color: var(--brand);
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--brand);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
      text-align: center;
    width: 100%;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-bottom-links a:hover {
  color: var(--brand);
}

/* ─── CTA FLOATING ─── */
.floating-enquire {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 900;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  padding: 13px 24px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(36, 171, 224, 0.5);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: bob 3s ease-in-out infinite;
  transition: all 0.3s;
}
.floating-enquire:hover {
  background: var(--brand-dark);
  transform: translateY(-3px) scale(1.03);
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SUCCESS MESSAGE ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form-success i {
  font-size: 3rem;
  color: var(--brand);
  margin-bottom: 14px;
}
.form-success h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── SECTION ACCENT ─── */
.section-accent-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.accent-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}

/* ─── RESPONSIVE ─── */
@media (min-width: 320px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .apps-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .quote-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-img-collage {
    height: 260px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
  .cert-item {
    min-width: 120px;
    padding: 16px 18px;
  }
}

@media (min-width: 375px) {
  h1 {
    font-size: 2.2rem;
  }
  .hero-img-collage {
    height: 290px;
  }
}

@media (min-width: 425px) {
  .form-card {
    padding: 28px;
  }
  .hero-img-collage {
    height: 310px;
  }
}

@media (min-width: 580px) {
  .products-grid, .apps-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-img-collage {
    height: 420px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  #testimonials{
    .container{
    .swiper-slide{
      .testi-card{
      height: 398.760px;
    }}
  }
  }

  .brands-ticker {
  display: flex;
  gap: 0;
  animation: ticker 10s linear infinite;
}
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .apps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .nav-menu {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .quote-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  .hero-img-collage {
    height: 520px;
  }
  .why-image {
    display: block;
  }
  #testimonials{
    .container{
    .swiper-slide{
      .testi-card{
      height: 374.03px;
    }}
  }
  }
}
