:root {
  /* Color Palette */
  --primary: hsl(220, 91%, 58%);
  --primary-glow: hsl(220, 91%, 68%);
  --accent: hsl(264, 83%, 57%);
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(220, 26%, 14%);
  --card: hsl(0, 0%, 100%);
  --muted: hsl(220, 13%, 91%);
  --muted-foreground: hsl(220, 8.9%, 46.1%);
  --border: hsl(220, 13%, 91%);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-hero: linear-gradient(135deg, hsl(220, 91%, 58%) 0%, #7f36ec 100%);
  --gradient-hero2: linear-gradient(135deg, hsl(0, 0%, 97%) 0%, #7f36ec 100%);
  --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(220, 13%, 95%) 100%);
  --gradient-subtle: linear-gradient(180deg, var(--background) 0%, hsl(220, 13%, 95%) 100%);

  /* Shadows */
  --shadow-primary: 0 10px 30px -10px hsla(220, 91%, 58%, 0.3);
  --shadow-card: 0 4px 20px -4px hsla(220, 26%, 14%, 0.1);
  --shadow-glow: 0 0 40px hsla(220, 91%, 68%, 0.4);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Border Radius */
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}


* {
  box-sizing: border-box
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--fg);
  background: var(--bg);
}

.logo {
  height: 60px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: var(--primary);
  color: var(--on-primary);
  padding: .5rem .75rem;
  border-radius: .5rem;
  z-index: 1000
}

.container {
  max-width: 100%;
  margin: 0 20px;
  margin-inline: auto;
  padding-inline: 1.25rem
}

.narrow {
  max-width: 850px;
  margin-inline: auto
}

.text-center {
  text-align: center
}

.center {
  display: flex;
  justify-content: center
}

.mt-lg {
  margin-top: 2rem
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted-fg)
}

.muted {
  color: var(--muted-fg)
}


/* Emergency Banner */

.container_banner {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;

}

.emergency-banner {
  background: var(--gradient-hero2);
  color: white;
  padding: 0.75rem 0;
}

.emergency-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.phone-icon {
  width: 1rem;
  height: 1rem;
  color: black;
}

.emergency-banner span {
  font-size: 0.875rem;
  font-weight: 500;
  color: black;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  background: hsla(0, 0%, 100%, .95);
  backdrop-filter: saturate(180%) blur(10px);
  /* border-bottom: 1px solid var(--border); */
  z-index: 100
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  position: relative
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-size: 1.125rem
}

.brand-inline {
  display: inline-flex;
  align-items: center;
  gap: .625rem
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  /* background: var(--primary); */
  color: var(--on-primary);
  font-weight: 800;
  font-size: 1.25rem;
  position: absolute;
}

.brand-name {
  font-weight: 700
}

/* Desktop Navigation */
.nav-list {
  display: none;
  align-items: center;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0
}

@media (min-width:900px) {
  .nav-list {
    display: flex
  }
}

.nav-link {
  display: inline-block;
  padding: .625rem 1rem;
  border-radius: .5rem;
  text-decoration: none;
  color: var(--fg);
  transition: background .2s, color .2s;
  font-weight: 500
}

.nav-link:hover {
  background: var(--muted)
}

.nav-link.active {
  color: var(--primary);
  background: color-mix(in oklab, var(--primary) 10%, white 90%)
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 101
}

@media (min-width:900px) {
  .mobile-toggle {
    display: none
  }
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all .3s ease;
  border-radius: 2px
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px)
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px)
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.mobile-menu.open {
  display: block;
  max-height: 100vh
}

@media (min-width:900px) {
  .mobile-menu {
    display: none !important
  }
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: .5rem
}

.mobile-menu-link {
  display: block;
  padding: .75rem 1rem;
  border-radius: .5rem;
  text-decoration: none;
  color: var(--fg);
  transition: background .2s;
  font-weight: 500
}

.mobile-menu-link:hover {
  background: var(--muted)
}

.mobile-menu-link.active {
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 10%, white 90%)
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: .6rem;
  background: var(--primary);
  color: var(--on-primary);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform .15s ease, filter .2s ease;
  border: none;
}

.button:hover {
  filter: brightness(1.03)
}

.button:active {
  transform: translateY(1px)
}

.button-outline {
  background: transparent;
  color: whitesmoke;
  border: 1px solid color-mix(in oklab, var(--primary) 60%, white 40%)
}

.button-outline:hover {
  background: color-mix(in oklab, var(--primary) 10%, white 90%);
  color: var(--primary)
}


.button-outlines {
  background: color-mix(in oklab, var(--primary) 10%, white 90%);
  color: var(--primary);
  border: 1px solid color-mix(in oklab, var(--primary) 60%, white 40%)
}

.button-outlines:hover {
  background: var(--primary);
  color: whitesmoke;
}

.button-secondary {
  background: var(--gradient-hero);
  color: var(--card);
}


/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 2.75rem;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn-outline {
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: #e5e7eb00;
}

.btn-gradient {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow-primary);
}

.btn-gradient:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);

}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f0f4f8;
  color: #333;
}

/* HERO SECTION */

/*DESKTOP */
.hero {
  position: relative;
  padding: 140px 24px 100px;
  background: linear-gradient(to bottom, #e5e3e9, #7f4acf);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
   background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 1000px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 22px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 56px;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #007bff, #6f42c1);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(111, 66, 193, 0.5);
}

/*TABLET*/
@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding: 120px 20px 90px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }

  .hero p {
    font-size: 18px;
    max-width: 680px;
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 16px 40px;
    font-size: 17px;
  }
}

/*MOBILE*/
@media (max-width: 480px) {
  .hero {
    padding: 110px 16px 70px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .cta-button {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
    border-radius: 10px;
  }
}

/* BENEFITS SECTION */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* BENEFITS SECTION */
.benefits-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0e6ff 0%, #e0d4ff 100%);
  text-align: center;
}

/* Glow Effects */
.benefits-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(102, 37, 241, 0.25), transparent 70%);
  top: -150px;
  left: -150px;
  z-index: 0;
}

.benefits-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  bottom: -120px;
  right: -120px;
  z-index: 0;
}

.benefits-section * {
  position: relative;
  z-index: 1;
}

/* Container */
section.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 20px;
}

.accent-line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #410fca, #6f42c1);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.main-title {
  font-size: 40px;
  font-weight: bold;
  color: #6625f1;
  margin: 30px auto 40px;
  max-width: 900px;
}

.description {
  font-size: 18px;
  color: #696767;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.benefits-title {
  font-size: 36px;
  color: #6625f1;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 22px;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 22px 26px;
  border-radius: 18px;

  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: left;

  box-shadow:
    0 10px 30px rgba(102, 37, 241, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);

  transition: all 0.4s ease;
}

.benefit-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(102, 37, 241, 0.25),
    inset 0 0 0 1px rgba(102, 37, 241, 0.3);
}

.benefit-item span {
  line-height: 1.4;
}

.checkmark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: contain;
}

/*TABLET*/
@media (max-width: 800px) {
  .benefits-section {
    padding: 80px 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
  }

  .benefit-item {
    padding: 18px 20px;
    gap: 16px;
    font-size: 17px;
  }

  .checkmark {
    width: 44px;
    height: 44px;
  }

  .main-title {
    font-size: 32px;
  }

  .benefits-title {
    font-size: 28px;
  }
}

/*MOBILE*/
@media (max-width: 480px) {
  .benefits-section {
    padding: 60px 14px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 480px;
  }

  .benefit-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
    padding: 16px;
    font-size: 16px;
  }

  .checkmark {
    width: 36px;
    height: 36px;
  }

  .main-title {
    font-size: 24px;
  }

  .benefits-title {
    font-size: 22px;
  }
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 20px;
  background-color: #f8f5ff;
  text-align: center;
}

.services-section .accent-line {
  background: linear-gradient(90deg, #410fca, #6f42c1);
}

.services-section .subtitle {
  color: #000000;
}

.services-section .main-title {
  color: #000000;
  /* Dark navy for strong contrast */
  font-size: 40px;
  text-align: center;
}

.services-section .description {
  color: #64748b;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(90deg, #007bff, #6f42c1);
  color: rgb(255, 255, 255);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

@media (max-width: 768px) {

  /* SERVICES SECTION */
  .services-section {
    padding: 60px 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .service-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .service-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
  }
}

/*PROCESS SECTION*/

.process-section {
  padding: 100px 20px;
  background-color: #ffffff;
  text-align: center;
}

/* Header */
.process-section .accent-line {
  background: linear-gradient(90deg, #410fca, #6f42c1);
  height: 4px;
  width: 60px;
  display: inline-block;
  margin-bottom: 10px;
}

.process-section .subtitle {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.process-section .main-title {
  color: #000000;
  font-size: 40px;
  margin: 30px auto 20px;
  max-width: 900px;
}

.process-section .description {
  color: #64748b;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 80px;
  line-height: 1.7;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Step Card */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 260px;
}

.step-number {
  width: 130px;
  height: 130px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #007bff, #6f42c1);
  color: white;
  font-size: 40px;
  font-weight: bold;
  line-height: 130px;
  border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
  box-shadow: 0 15px 35px rgba(111, 66, 193, 0.3);
}

.process-step h3 {
  font-size: 24px;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.3;
  font-weight: 600;
}

.process-step p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/*TABLET */

@media (max-width: 800px) {
  .process-section {
    padding: 90px 20px;
  }

  .process-section .main-title {
    font-size: 32px;
  }

  .process-section .description {
    font-size: 16.5px;
    margin-bottom: 60px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 32px;
    max-width: 720px;
  }

  .step-number {
    width: 110px;
    height: 110px;
    font-size: 36px;
    line-height: 110px;
  }
}

/*MOBILE */

@media (max-width: 480px) {
  .process-section {
    padding: 70px 16px;
  }

  .process-section .subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .process-section .main-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .process-section .description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .step-number {
    width: 96px;
    height: 96px;
    font-size: 32px;
    line-height: 96px;
    margin-bottom: 22px;
  }

  .process-step h3 {
    font-size: 20px;
  }

  .process-step p {
    font-size: 14.5px;
  }
}


/* EXTRA BENEFITS SECTION */
.extra-benefits-section {
  padding: 100px 20px;
  background-color: #fafafa;
  text-align: center;
}

.extra-benefits-section .accent-line {
  background: linear-gradient(90deg, #410fca, #6f42c1);
  height: 4px;
  width: 60px;
  display: inline-block;
  margin-bottom: 10px;
}

.extra-benefits-section .subtitle {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.extra-benefits-section .main-title {
  color: #000000;
  font-size: 40px;
  margin: 30px 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.extra-benefits-section .description {
  color: #64748b;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 80px;
  line-height: 1.7;
}

.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(90deg, #9054ff, #cd98ff);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card h3 {
  font-size: 22px;
  /* Slightly smaller title */
  color: #000000;
  margin-bottom: 18px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 15.5px;
  /* Slightly smaller text */
  color: #000000;
  line-height: 1.6;
}
/* SMALL LAPTOP / 1024px */
@media (max-width: 1024px) {
  .extra-benefits-section {
    padding: 100px 32px;
  }

  .extra-benefits-section .main-title {
    font-size: 36px;
  }

  .extra-benefits-section .description {
    font-size: 17px;
    margin-bottom: 70px;
  }

  .benefits-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 960px;
  }

  .benefit-card {
    padding: 32px 26px;
  }

  .benefit-card h3 {
    font-size: 21px;
  }

  .benefit-card p {
    font-size: 15.5px;
  }
}

/*TABLET*/
@media (max-width: 800px) {
  .extra-benefits-section {
    padding: 90px 20px;
  }

  .extra-benefits-section .main-title {
    font-size: 32px;
  }

  .extra-benefits-section .description {
    font-size: 16.5px;
    margin-bottom: 60px;
  }

  .benefits-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: 720px;
  }

  .benefit-card {
    padding: 30px 24px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .benefit-card p {
    font-size: 15px;
  }
}

/*MOBILE*/
@media (max-width: 480px) {
  .extra-benefits-section {
    padding: 70px 16px;
  }

  .extra-benefits-section .subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .extra-benefits-section .main-title {
    font-size: 24px; 
    line-height: 1.3;
  }

  .extra-benefits-section .description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .benefits-cards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefit-card {
    padding: 26px 20px;
    border-radius: 16px;
  }

  .benefit-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .benefit-card p {
    font-size: 14.5px;
  }
}


/* FAQ SECTION */
.faq-section {
  padding: 100px 20px;
  background-color: #ffffff;
  text-align: center;
}

.faq-section .accent-line {
  background: linear-gradient(90deg, #410fca, #6f42c1);
  height: 4px;
  width: 60px;
  display: inline-block;
  margin-bottom: 10px;
}

.faq-section .subtitle {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.faq-section .main-title {
  color: #000000;
  font-size: 40px;
  margin: 30px 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section .description {
  color: #64748b;
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 80px;
  line-height: 1.7;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  background: white;
}

.faq-item[open] {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 24px 30px;
  background-color: #8400ff;
  color: white;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-item[open]>.faq-question {
  background-color: #9a4be4;
}

.faq-question:hover {
  background-color: #9a4be4;
}

.faq-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px 30px;
  background: white;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.faq-answer p {
  margin: 20px 0 0;
}

/* For non-open items - lighter header */
.faq-item:not([open]) .faq-question {
  background-color: #f8f9fa;
  color: #000000;
}

.faq-item:not([open]) .faq-arrow {
  color: #8408e9;
}

/*TABLET*/
@media (max-width: 800px) {
  .faq-section {
    padding: 90px 20px;
  }

  .faq-section .main-title {
    font-size: 32px;
  }

  .faq-section .description {
    font-size: 16.5px;
    margin-bottom: 60px;
  }

  .faq-accordion {
    max-width: 720px;
  }

  .faq-question {
    font-size: 18px;
    padding: 22px 24px;
  }

  .faq-answer {
    font-size: 15.5px;
    padding: 0 24px 26px;
  }

  .faq-arrow {
    font-size: 22px;
  }
}

/*MOBILE*/
@media (max-width: 480px) {
  .faq-section {
    padding: 70px 16px;
  }

  .faq-section .subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .faq-section .main-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .faq-section .description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 18px;
  }

  .faq-answer {
    font-size: 14.5px;
    padding: 0 18px 22px;
  }

  .faq-arrow {
    font-size: 20px;
  }
}


/* CONNECT WITH US BANNER */
.connect-banner {
  position: relative;
  padding: 120px 20px;
  background-image: url('https://media.istockphoto.com/id/2094337676/photo/diverse-team-working-together-in-modern-co-working-space.jpg?s=612x612&w=0&k=20&c=EvWROZsfro1ghOVViXVj-tKS364-NeabwNNYkyvhxoY=');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: rgb(0, 0, 0);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.connect-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(188, 156, 236, 0.9), rgba(136, 182, 231, 0.8));
  /* Deep purple-blue overlay */
  z-index: 1;
}

.connect-banner>.container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.connect-banner .accent-line {
  background: linear-gradient(90deg, #410fca, #6f42c1);
  height: 4px;
  width: 60px;
  display: inline-block;
  margin-bottom: 10px;
}

.connect-banner .subtitle {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.connect-banner .main-title {
  font-size: 48px;
  font-weight: bold;
  margin: 30px 0 20px;
  color: rgb(0, 0, 0);
}

.connect-banner .description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 50px;
  color: rgb(41, 39, 39);
  line-height: 1.6;
}

.connect-banner .cta-button {
  font-size: 20px;
  padding: 18px 48px;
}

.connect-banner .cta-button:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(111, 66, 193, 0.5);
}

/*TABLET*/
@media (max-width: 800px) {
  .connect-banner {
    min-height: 520px;
    padding: 100px 20px;
  }

  .connect-banner > .container {
    max-width: 720px;
  }

  .connect-banner .subtitle {
    font-size: 15px;
  }

  .connect-banner .main-title {
    font-size: 36px;
  }

  .connect-banner .description {
    font-size: 18px;
    margin-bottom: 44px;
  }

  .connect-banner .cta-button {
    font-size: 18px;
    padding: 16px 42px;
  }
}

/*MOBILE*/
@media (max-width: 480px) {
  .connect-banner {
    min-height: auto;
    padding: 80px 16px;
  }

  .connect-banner > .container {
    max-width: 100%;
  }

  .connect-banner .subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .connect-banner .main-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .connect-banner .description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .connect-banner .cta-button {
    width: 100%;
    padding: 15px 0;
    font-size: 16px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.service-card,
.benefit-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(111, 66, 193, 0.3);
}

/* CTA button enhancement */
.cta-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(111, 66, 193, 0.5);
}

@keyframes bounceIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.checkmark {
  animation: bounceIn 0.6s ease forwards;
}

.benefit-item {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-item:nth-child(5) {
  animation-delay: 0.5s;
}

.benefit-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Base hidden state */
.reveal-card {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* When visible */
.reveal-card.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay */
.reveal-card:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-card:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-card:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-card:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-card:nth-child(5) {
  transition-delay: 0.5s;
}

.reveal-card:nth-child(6) {
  transition-delay: 0.6s;
}

/* SERVICE CARDS - DIRECTIONAL STAGGERED ANIMATION (PERFECT ALIGNMENT) */

/* Base hidden state - all cards start invisible & offset */
.service-card {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Smooth & natural feel */
}

/* Position-specific starting offsets */
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2) {
  transform: translateX(-120px);
  /* Left cards start far left */
}

.services-grid .service-card:nth-child(5),
.services-grid .service-card:nth-child(6) {
  transform: translateX(120px);
  /* Right cards start far right */
}

.services-grid .service-card:nth-child(3) {
  transform: translateY(-100px);
  /* Top middle starts above */
}

.services-grid .service-card:nth-child(4) {
  transform: translateY(100px);
  /* Bottom middle starts below */
}

/* Final visible state - all end up in normal position */
.service-card.active {
  opacity: 1;
  transform: translateX(0) translateY(0) !important;
  /* Override any offset */
}

/* Staggered timing - natural flow from outside → center */
.services-grid .service-card:nth-child(1) {
  transition-delay: 0.1s;
}

/* Top-left */
.services-grid .service-card:nth-child(2) {
  transition-delay: 0.25s;
}

/* Bottom-left */
.services-grid .service-card:nth-child(5) {
  transition-delay: 0.4s;
}

/* Top-right */
.services-grid .service-card:nth-child(6) {
  transition-delay: 0.55s;
}

/* Bottom-right */
.services-grid .service-card:nth-child(3) {
  transition-delay: 0.7s;
}

/* Top middle */
.services-grid .service-card:nth-child(4) {
  transition-delay: 0.85s;
}

/* Bottom middle */

/* EXTRA BENEFITS CARDS - ALTERNATING TOP/BOTTOM SLIDE + FADE */

/* Base hidden state for all cards */
.benefit-card {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Smooth natural feel */
}

/* Position-specific starting points (alternating top/bottom) */
.benefits-cards-grid .benefit-card:nth-child(odd) {
  transform: translateY(-80px);
  /* Odd cards (1 & 3) start from TOP */
}

.benefits-cards-grid .benefit-card:nth-child(even) {
  transform: translateY(80px);
  /* Even cards (2 & 4) start from BOTTOM */
}

/* Final visible state */
.benefit-card.active {
  opacity: 1;
  transform: translateY(0) !important;
  /* Reset to normal position */
}

/* Staggered timing - flows naturally left to right */
.benefits-cards-grid .benefit-card:nth-child(1) {
  transition-delay: 0.15s;
}

.benefits-cards-grid .benefit-card:nth-child(2) {
  transition-delay: 0.35s;
}

.benefits-cards-grid .benefit-card:nth-child(3) {
  transition-delay: 0.55s;
}

.benefits-cards-grid .benefit-card:nth-child(4) {
  transition-delay: 0.75s;
}

.step-number {
  opacity: 0;
  transform: scale(0.5) rotate(-12deg);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-number.visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Stagger */
.process-grid .process-step:nth-child(1) .step-number {
  transition-delay: 0.1s;
}

.process-grid .process-step:nth-child(2) .step-number {
  transition-delay: 0.25s;
}

.process-grid .process-step:nth-child(3) .step-number {
  transition-delay: 0.4s;
}

.process-grid .process-step:nth-child(4) .step-number {
  transition-delay: 0.55s;
}

.process-grid .process-step:nth-child(5) .step-number {
  transition-delay: 0.7s;
}

.process-grid .process-step:nth-child(6) .step-number {
  transition-delay: 0.85s;
}

.theme-cloud .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(79, 195, 247, 0.3) 0%, transparent 10%) 0 0,
    radial-gradient(circle at 70% 60%, rgba(79, 195, 247, 0.25) 0%, transparent 15%) 0 0;
  background-size: 200px 200px, 300px 300px;
  animation: cloudDrift 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes cloudDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 200px 200px, -300px -300px;
  }
}

.theme-cyber .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom,
      transparent 0%,
      rgba(198, 40, 40, 0.06) 2px,
      transparent 4px);
  animation: scanLine 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes scanLine {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

/* SERVICE CARD TOP ICON - Clean & Static */
.service-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  /* Centers icon above title */
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
  /* Gentle lift on hover */
}

.service-card:hover .service-card-icon {
  transform: scale(1.12) translateY(-6px);
}

/* BASE REVEAL STATE */
.main-title,
.description,
.benefits-title,
.benefit-item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* REVEALED */
.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* OPTIONAL: subtle blur reveal */
.benefit-item {
  filter: blur(6px);
}

.reveal-active {
  filter: blur(0);
}

.benefit-item:nth-child(odd) {
  transform: translateX(-40px);
}

.main-title,
.benefits-title {
  transition-duration: 0.6s;
}

@media (prefers-reduced-motion: reduce) {

  .main-title,
  .description,
  .benefits-title,
  .benefit-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* BENEFITS SCROLL ANIMATION */
.benefit-item {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* When revealed */
.benefit-item.reveal-active {
  opacity: 1;
  transform: translateX(0);
}

.benefit-item {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-item:first-child {
  transition-duration: 0.9s;
}

.benefit-item:hover {
  transform: translateX(0) translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .benefit-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Web Development */
.theme-web .hero {
  background-image: url('images/backgroundweb.png');
}

/* Software & App Development */
.theme-app .hero {
  background-image: url('images/backgroundsoft.png');
}

/* DevOps */
.theme-devops .hero {
  background-image: url('images/backgrounddevop.png');
}

/* Smart City */
.theme-smartcity .hero {
  background-image: url('images/backgroundsmart.png');
}

/* AI & Technology */
.theme-ai .hero {
  background-image: url('images/backgroundai.png');
}

/* Digital Marketing */
.theme-marketing .hero {
  background-image: url('images/backgrounddigital.png');
}

/* IT Hardware */
.theme-hardware .hero {
  background-image: url('images/backgroundit.png');
}

/* Cyber Security */
.theme-cyber .hero {
  background-image: url('images/backgroundcyber.png');
}

/* Software Testing */
.theme-test .hero {
  background-image: url('images/backgroundtest.png');
}

/* Data Analytics */
.theme-data .hero {
  background-image: url('images/backgrounddata.png');
}

/* AI TESTING & VALIDATION SECTION - Fixed Layout + No Overlap */
.ai-testing-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f0e6ff 0%, #e0d4ff 100%);
  color: rgb(0, 0, 0);
  text-align: center;
}

.ai-testing-section .main-title {
  color: #000000;
  margin-bottom: 40px;
}

.ai-testing-section .description {
  max-width: 900px;
  margin: 0 auto 60px;
  color: #000000;
  font-size: 18px;
  line-height: 1.7;
}

.ai-testing-section .testing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns on desktop/tablet */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
  /* Space below grid for button */
}

.ai-testing-section .testing-card {
  position: relative;
  /* For absolute icon positioning */
  background: rgb(255, 255, 255);
  border: 1px solid #ab47bc;
  border-radius: 16px;
  padding: 60px 24px 24px 70px;
  /* Top & left padding = icon space */
  text-align: left;
  min-height: 100px;
  /* Keeps cards aligned vertically */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.4s ease;
  font-size: 16px;
}

.ai-testing-section .testing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(156, 39, 176, 0.25);
  background: rgba(156, 39, 176, 0.18);
}

/* Small icon in top-left corner */
.ai-testing-section .testing-card .card-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Hover effect on icon */
.ai-testing-section .testing-card:hover .card-icon {
  transform: scale(1.15);
  opacity: 1;
}

/* Text styling inside cards */
.ai-testing-section .testing-card h3 {
  color: #000000;
  margin: 0 0 12px 0;
  font-size: 20px;
}

.ai-testing-section .testing-card p {
  color: #000000;
  margin: 0;
}

/* Button spacing */
.ai-testing-section .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 48px;
  font-size: 18px;
  min-width: 240px;
}

/*TABLET*/
@media (max-width: 800px) {
  .ai-testing-section {
    padding: 90px 20px;
  }

  .ai-testing-section .main-title {
    font-size: 32px;
  }

  .ai-testing-section .description {
    font-size: 16.5px;
    margin-bottom: 60px;
  }

  .ai-testing-section .testing-grid {
    gap: 26px;
    max-width: 720px;
  }

  .ai-testing-section .testing-card {
    padding: 52px 22px 22px 64px;
    min-height: 120px;
  }

  .ai-testing-section .testing-card h3 {
    font-size: 18px;
  }
}

/*MOBILE*/
@media (max-width: 480px) {
  .ai-testing-section {
    padding: 70px 16px;
  }

  .ai-testing-section .main-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .ai-testing-section .description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .ai-testing-section .testing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 40px;
  }

  .ai-testing-section .testing-card {
    padding: 48px 18px 18px 56px;
    min-height: auto;
    font-size: 14.5px;
  }

  .ai-testing-section .testing-card h3 {
    font-size: 17px;
  }

  .ai-testing-section .card-icon {
    width: 32px;
    height: 32px;
    top: 16px;
    left: 16px;
  }

  .ai-testing-section .cta-button {
    width: 100%;
    min-width: unset;
    padding: 15px 0;
    font-size: 16px;
  }
}


/* DROPDOWN MENU */
.nav-item {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(127, 54, 236, 0.08);
  color: var(--primary);
}

/* SHOW ON HOVER */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE SERVICES DROPDOWN */
.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown-menu a {
  padding: 10px 0;
  display: block;
  font-size: 15px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  display: block;
}

/* Footer */

.footer-logo {
  height: 120px;
}

.footer {
  background-image: linear-gradient(180deg, #FFFFFF 0%, #7f36ec 100%);
  padding: 60px 20px;
  border-top: 1px solid #e6e6e6;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1 1 200px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo span {
  font-weight: 400;
}

.footer-desc {
  max-width: 450px;
  color: black;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social a {
  font-size: 20px;
  margin-right: 15px;
  color: #000;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

/* Right Columns */
.footer-right {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  flex: 2 1 300px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: black;
  line-height: 1.5;
}

.footer-col ul li a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: black;
  align-items: center;
}

.footer-links a {
  margin-left: 20px;
  color: black;
  text-decoration: none;
}

.footer-links a:hover {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-right {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 10px;
  }
}

@media (max-width: 450px) {
  .hero h1 {
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
  }

  .hero p {
    font-size: 16px;
    text-align: center;
  }
}

/* 1. Mobile & Small Tablet (Single Column) */
@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: left; /* Keep left aligned for better readability on mobile */
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* 2. Tablets (iPad Mini, Air, Pro) - 768px to 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; /* Allows items to wrap naturally */
        gap: 40px;
    }

    .footer-left {
        flex: 1 1 100%; /* Full width on top to prevent the side-gap */
        margin-bottom: 20px;
    }

    .footer-right {
        flex: 1 1 100%;
        display: grid;
        /* This line creates 3 columns if they fit, or 2 if they don't */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
        gap: 30px;
    }
}
