/* Global Font Enforcement */
html,
body,
* {
  font-family: Helvetica !important;
}

body {
  margin: 0;
  background: #0b0f19;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Section Backgrounds */
section {
  background: #0b0f19;
}

.features,
.success,
.services,
.why-choose-us,
.domains,
.testimonial,
.clients,
.cta {
  background: #0b0f19 !important;
}

:root {
  --header-height: 64px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  padding: calc(var(--header-height) + 6px) 8% 0;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: white;
  box-sizing: border-box;
  text-align: center;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: #0b0f19;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.1px solid rgba(34, 35, 36, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #02E0B8;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
  background: none;
  border: none;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {

  /* 1. HEADER CONTAINER: Ensure it allows absolute positioning */
  .header .container.nav-wrapper {
    position: relative !important;
    /* Anchor point */
    width: 100% !important;
    padding-right: 0 !important;
    /* Clear default padding */
  }

  /* 2. HAMBURGER: Absolute Position with spacing */
  .hamburger {
    display: flex !important;
    position: absolute !important;
    /* Lifts it above the flow */
    right: 20px !important;
    /* ADDS SPACE from the right edge */
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    z-index: 1001;
  }

  /* 3. MENU DRAWER */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #0b0f19;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    /* Align items to top */
    align-items: flex-end;
    /* Align text to right */
    transition: right 0.4s ease;
    padding-top: 100px;
    padding-right: 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: left;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* Hero Content */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

.hero-left {
  max-width: 900px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-left h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 20px auto 20px auto;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  z-index: 12;
  color: #ffffff !important;
  max-width: 800px;
  display: block;
  text-align: center;
}

.hero-left h1 .gradient-text {
  background: linear-gradient(90deg, #818cf8, #22d3ee, #555cf7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 28px;
    line-height: 1.3;
    max-width: 100%;
    margin: 15px auto 20px auto;
  }
}

.hero-left p {
  opacity: 0.85;
  font-size: 20px;
  margin: 0 auto 30px auto;
  display: block;
  text-align: center;
  z-index: 11;
  padding: 0 10px;
}

.hero-left p .gradient-text {
  background: linear-gradient(90deg, #8a91d3, #22d3ee, #5d64e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 650;
}

.hero-left .btn-primary {
  padding: 10px 20px !important;
  font-weight: 300 !important;
  transition: box-shadow 220ms ease, transform 150ms ease, color 140ms ease;
}

.hero-left .btn-primary:hover,
.hero-left .btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(2, 224, 184, 0.18), 0 24px 56px rgba(2, 224, 184, 0.22), 0 0 64px rgba(2, 224, 184, 0.32);
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(2, 224, 184, 0.24);
  filter: drop-shadow(0 8px 24px rgba(2, 224, 184, 0.14));
  outline: none;
}

.hero-left .btn-primary:focus-visible {
  outline: 3px solid rgba(2, 224, 184, 0.22);
  outline-offset: 6px;
  box-shadow: 0 6px 18px rgba(2, 224, 184, 0.12), 0 0 36px rgba(2, 224, 184, 0.22);
}

.badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 64px;
  padding: 6px 14px;
  border-radius: 28px;
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(211, 217, 226, 0.95);
  z-index: 31;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .badge {
    position: relative;
    top: 0;
    margin-bottom: 20px;
    transform: none;
    left: 0;
    padding: 5px 10px;
    font-size: 12px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 20px;
  }

  .hero-right {
    margin-top: 20px;
  }

  @media (max-width: 600px) {
    .btn-primary {
      width: auto !important;
      display: inline-block;
      padding: 10px 28px;
      font-size: 14px;
      margin-top: 10px;
    }
  }
}

/* Other Buttons */
.btn-hero {
  background: #02E0B8 !important;
  color: #000 !important;
  border: none !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 300 !important;
  transition: box-shadow 220ms ease, transform 150ms ease, color 140ms ease;
  box-shadow: 0 0 0 rgba(2, 224, 184, 0);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-hero:hover,
.btn-hero:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(2, 224, 184, 0.18), 0 24px 56px rgba(2, 224, 184, 0.14), 0 0 48px rgba(2, 224, 184, 0.30);
  color: #000 !important;
  outline: none;
}

.btn-hero:focus-visible {
  outline: 3px solid rgba(2, 224, 184, 0.18);
  outline-offset: 6px;
}

/* Offer Section */
.offer-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

@media (max-width: 768px) {
  .offer-features {
    grid-template-columns: 1fr;
  }
}

.offer-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: left;
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 120px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 209, 167, 0.425);
}

.offer-item::before {
  display: none;
}

.offer-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 209, 170, 0.04);
  border: 1px solid rgba(0, 209, 170, 0.06);
  color: #00D1A6;
  font-size: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.offer-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 209, 255, 0.06);
  background: rgba(0, 209, 255, 0.02);
}

.offer-item:hover .offer-icon {
  transform: scale(1.08);
}

.offer-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.offer-item p {
  margin: 0;
  color: rgba(200, 215, 220, 0.85);
  font-size: 13px;
  line-height: 1.4;
}

/* Service Cards */
.service-card {
  padding: 20px !important;
  background: linear-gradient(135deg, rgba(225, 225, 225, 0.02), rgba(1, 225, 225, 0.01) 60%) !important;
  border: 1px solid rgba(225, 225, 225, 0.04) !important;
  border-radius: 12px !important;
  min-height: 160px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 220ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.service-card>* {
  position: relative;
  z-index: 2;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 93, 197, 0.100), rgba(14, 93, 197, 0.100));
  border-radius: 12px;
  border: 1px solid rgba(22, 218, 253, 0.4);
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 1;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover .service-card-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(177, 157, 43, 0.801));
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.service-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(200, 215, 220, 0.85);
  font-size: 13px;
  line-height: 1.4;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(14, 93, 197, 0.100);
  background: linear-gradient(135deg, rgba(14, 93, 197, 0.100), rgba(14, 93, 197, 0.100)) !important;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 40%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skew(-20deg);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 8px rgba(68, 20, 187, 0.18));
}

.service-card:hover::after,
.service-card:focus-within::after {
  animation: sheenSweep 900ms ease-in-out forwards;
  opacity: 1;
}

/* Offer Section Layout */
.offer-section {
  position: relative;
  padding: 28px 40px 24px 40px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(2, 8, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  max-width: calc(100% - 100px);
}

.offer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(0, 209, 170, 0.03), transparent 60%);
  pointer-events: none;
  border-radius: 20px;
}

.offer-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .offer-section .container {
    grid-template-columns: 1fr;
  }

  .offer-section {
    padding: 20px;
    max-width: 95%;
  }
}

.offer-meta .eyebrow {
  color: transparent;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: inline-block;
  background: linear-gradient(90deg, #00D1A6, #00FF85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-meta h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 18px 0;
  line-height: 1.15;
  max-width: 520px;
}

.offer-meta h2 .gradient-text {
  background: linear-gradient(90deg, #818cf8, #22d3ee, #555cf7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.offer-meta p {
  color: rgba(210, 220, 225, 0.85);
  max-width: 520px;
  margin: 0 0 22px 0;
  font-size: 16px;
  line-height: 1.6;
}

.offer-accent {
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, #00D1A6, #00FF85);
  border-radius: 4px;
  margin-top: 18px;
}

/* Why Choose Us & CTA Buttons */
.why-choose-buttons .btn-primary,
.why-choose-buttons .btn-primary:link,
.why-choose-buttons .btn-primary:visited {
  background: #02E0B8 !important;
  color: #000 !important;
  border: none !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 300 !important;
  transition: box-shadow 220ms ease, transform 150ms ease, color 140ms ease;
  box-shadow: 0 0 0 rgba(2, 224, 184, 0);
}

.why-choose-buttons .btn-primary:hover,
.why-choose-buttons .btn-primary:focus {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(2, 224, 184, 0.45), 0 6px 18px rgba(1, 152, 120, 0.18), 0 0 20px rgba(2, 224, 184, 0.39);
  outline: none;
}

.why-choose-buttons .btn-primary:focus-visible {
  outline: 3px solid rgba(2, 224, 184, 0.18);
  outline-offset: 6px;
}

.cta-card .btn-primary,
.cta-card .btn-primary:link,
.cta-card .btn-primary:visited {
  background: #02E0B8 !important;
  color: #000 !important;
  border: none;
  padding: 12px 28px;
  border-radius: 28px;
  font-weight: 300 !important;
  transition: box-shadow 220ms ease, transform 150ms ease, color 140ms ease;
  box-shadow: 0 0 0 rgba(2, 224, 184, 0);
}

.cta-card .btn-primary:hover,
.cta-card .btn-primary:focus {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(2, 224, 184, 0.45), 0 6px 18px rgba(1, 152, 120, 0.18), 0 0 20px rgba(2, 224, 184, 0.39);
  outline: none;
}

.cta-card .btn-primary:focus-visible {
  outline: 3px solid rgba(2, 224, 184, 0.18);
  outline-offset: 6px;
}

/* Global Adjustments */
.section-divider,
hr {
  display: none !important;
}

.features {
  padding-top: 0 !important;
  margin-top: 10px !important;
}

.success {
  margin-top: -20px !important;
}

.services,
.why-choose-us,
.domains,
.testimonial,
.clients,
.cta,
.offer-section {
  margin-top: -20px !important;
}

/* Success Grid */
.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

@media (max-width: 1000px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .success-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.success-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* height: 380px; */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(225, 225, 225, 0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.success-card:nth-child(7) {
  grid-column: 2;
}

@media (max-width: 1000px) {
  .success-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .success-card:nth-child(7) {
    grid-column: auto;
  }
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(14, 93, 197, 0.100), 0 12px 32px rgba(14, 93, 197, 0.100);
  border-color: rgba(22, 218, 253, 0.4);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.success-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  display: block;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
}

.success-card h3 {
  margin: 10px 12px 4px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  text-align: left;
  flex-shrink: 0;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.success-card p {
  margin: 0 12px 2px;
  font-size: 13px;
  color: rgba(210, 220, 225, 0.8);
  line-height: 1.4;
  text-align: left;
  flex-grow: 1;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.success-card .btn-outline {
  margin: 15px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 300;
  border-radius: 20px;
  background: linear-gradient(90deg, #02E0B8 0%, #00D1A6 100%);
  color: #0b1220;
  border: none;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 140ms ease;
  align-self: center;
  flex-shrink: 0;
  /* margin-top: auto; */
}

.success-card .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(2, 224, 184, 0.3);
}

/* Section Title Gradients */
.features .section-title,
.success .section-title,
.services .section-title,
.domains .section-title,
.testimonial .section-title,
.clients .section-title {
  background: linear-gradient(10deg, #28c6df, #7983dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* =========================================
   1. DESKTOP / GLOBAL STYLES (Default)
   "One below the other"
   ========================================= */

.footer-links {
  display: flex;
  flex-direction: column;
  /* This stacks them vertically on Desktop */
  gap: 14px;
  align-items: center;
  /* Centers them in the middle of the column */
  text-align: center;
  /* Aligns them to the left (change to 'center' if you want a centered list) */
}

/* Optional: If you want the links themselves to be left-aligned text */
.footer-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

/* =========================================
   2. MOBILE STYLES (Only for screens < 600px)
   Horizontal, Centered, Bigger Text
   ========================================= */
@media (max-width: 600px) {

  /* ... Your existing Mobile container fixes ... */
  .footer-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 30px;
  }

  .footer-info {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  .footer-info p,
  .footer-info a {
    font-size: 16px !important;
    line-height: 1.6;
  }

  /* ... The Link Fixes ... */
  .footer-links {
    width: 100%;
    /* SWITCH TO HORIZONTAL ROW FOR MOBILE */
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px 24px;

    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Mobile: Force Success Story images (LocalKhoj, etc.) to zero padding */
@media (max-width: 600px) {
  .success-card {
    padding: 0 !important;
    /* Removes padding from the card container */
  }

  .success-card img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    /* Forces full width */
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
    /* Keeps top corners rounded, sharp bottom */
  }

  /* Add spacing back to the text so it doesn't touch the screen edges */
  .success-card h3,
  .success-card p,
  .success-card .btn-outline {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: 0 !important;
    /* Reset margins to use padding instead */
    margin-right: 0 !important;
  }

  /* Mobile Menu: Left Align Items */
  @media (max-width: 768px) {
    .nav-menu {
      align-items: flex-start !important;
      /* Aligns text to the left */
      padding-left: 40px !important;
      /* Adds space from the left edge */
    }

    .nav-menu li {
      width: 100%;
      /* Ensures the click area spans the width */
    }
  }

  /* Mobile: Force ALL Feature Cards to look identical to Service Cards */
  @media (max-width: 600px) {

    /* 1. Grid Layout */
    .feature-grid {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }

    /* 2. Card Container - Force Flex Column & Centering */
    .feature-card {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      /* Horizontally center flex items */
      justify-content: center !important;
      /* Vertically center content */
      text-align: center !important;
      /* Center text content */

      /* Visual Styling */
      background: linear-gradient(135deg, rgba(225, 225, 225, 0.02), rgba(1, 225, 225, 0.01) 60%) !important;
      border: 1px solid rgba(225, 225, 225, 0.04) !important;
      border-radius: 12px !important;
      padding: 24px 20px !important;
      min-height: 160px !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    /* 3. Icon Container - Force Centering */
    .feature-icon {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: 48px !important;
      height: 48px !important;
      background: linear-gradient(135deg, rgba(14, 93, 197, 0.100), rgba(14, 93, 197, 0.100)) !important;
      border: 1px solid rgba(22, 218, 253, 0.4) !important;
      border-radius: 12px !important;
      margin: 0 auto 16px auto !important;
      /* 'auto' left/right margins force centering */
      padding: 10px !important;
      flex-shrink: 0 !important;
    }

    /* 4. Icon Image */
    .feature-icon img {
      width: 24px !important;
      height: 24px !important;
      object-fit: contain !important;
      display: block !important;
      margin: 0 !important;
    }

    /* 5. Headings - Force Centering */
    .feature-card h3 {
      font-size: 16px !important;
      font-weight: 700 !important;
      color: #ffffff !important;
      margin: 0 0 8px 0 !important;
      padding: 0 !important;
      text-align: center !important;
      width: 100% !important;
      display: block !important;
    }

    /* 6. Paragraphs - Force Centering (This fixes the 2nd card issue) */
    .feature-card p {
      font-size: 13px !important;
      color: rgba(200, 215, 220, 0.85) !important;
      line-height: 1.4 !important;
      margin: 0 !important;
      padding: 0 !important;
      text-align: center !important;
      width: 100% !important;
      display: block !important;
    }
  }
}