/* fonts.css */
/*@import url('fonts.css');*/


/* ===== GLOBAL STYLES ===== */
.back-to-top-btn {
    transition: opacity 0.3s ease;
    /* Any other existing styles you have */
}


body a {
  text-decoration: none;
}

/* Body scroll lock for mobile menu */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

section {
  margin-top: 50px;
}

/* For screens less than 768px (mobile) */
@media (max-width: 767px) {
  section {
    margin-top: 30px;
  }
}

nav .logo img {
  height: 28px;
}

.nav .cname {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

/* ===== NAVIGATION MENU STYLES ===== */

.nav-header {
  height: 60px;
  box-shadow: 0 0 15px gray;
  z-index: 1000 !important;
}

/* Mega Menu Styles */
/* Mega Menu Base */
.mega-menu {
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: translateY(10px);
  transition: all 0.4s;
  position: fixed;
  left: 0;
  top: 59px;
  right: 0;
  width: 100%;
  background: white;
  z-index: 50;
}

/* Open State */
.mega-menu.open {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.has-mega-menu.active .nav-highlight::after {
  width: 100%;
}

.mega-menu .service-tab.active {
  background-color: rgb(240 253 250);
  color: rgb(13 148 136);
}

.mega-menu .tab-content.active {
  display: block;
}

.mega-menu .tab-content.hidden {
  display: none;

}

/* Nav underline */
.nav-highlight::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0d9488, #2dd4bf);
  transition: width 0.3s ease;
}


/* ===== MOBILE MENU BACKDROP STYLES ===== */
#mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

#mobile-menu-backdrop.hidden {
  display: none;
}

#mobile-menu-backdrop:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

/* Mobile menu container */
#mobile-menu {
  position: fixed;
  top: 59px;
  left: 0;
  right: 0;
  background: white;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 45;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* When menu is NOT hidden */
#mobile-menu:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: block;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* DESKTOP: 1025px and above */
@media (min-width: 1025px) {
  .desk-menu {
    display: flex !important;
  }

  #mobileMenuButton {
    display: none !important;
  }

  #mobile-menu {
    display: none !important;
  }

  /* Mega menu only on desktop */
  .mega-menu {
    display: block;
  }
}

/* TABLET: 769px to 1024px (Mega menu should display) */
@media (min-width: 769px) and (max-width: 1024px) {
  .desk-menu {
    display: flex !important;
  }

  #mobileMenuButton {
    display: none !important;
  }

  #mobile-menu {
    display: none !important;
  }

  /* Mega menu displays on tablet */
  .mega-menu {
    display: block;
  }

  /* Adjust mega menu for tablet */
  .mega-menu .container {
    padding: 0 1rem;
  }

  .mega-menu .grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* MOBILE: 768px and below */
@media (max-width: 768px) {

  /* Hide desktop menu and mega menu */
  .desk-menu {
    display: none !important;
  }

  .mega-menu {
    display: none !important;
  }

  /* Show mobile menu button */
  #mobileMenuButton {
    display: block !important;
  }

  /* Mobile menu styles */
  #mobile-menu {
    display: none;
  }

  #mobile-menu:not(.hidden) {
    display: block;
    animation: slideDown 0.3s ease-out;
  }

  /* Ensure mobile menu has proper spacing */
  #mobile-menu .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #mobile-menu .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  /* Mobile accordion adjustments */
  .mobile-accordion-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Mobile menu animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SWIPER/CAROUSEL STYLES ===== */
.pagination-custom {
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-inactive-color: #4b5563;
  --swiper-pagination-bullet-inactive-opacity: 0.8;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}

.pagination-custom .swiper-pagination-bullet {
  background: #4b5563;
  opacity: 0.5;
}

.pagination-custom .swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
}

/* ===== SCROLLING ANIMATION ===== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 20s linear infinite;
}

.carousel:hover .animate-scroll {
  animation-play-state: paused;
}

/* ===== GRID PATTERN BACKGROUNDS ===== */
.bg-grid-pattern {
  background-image: linear-gradient(to right, rgba(0, 128, 128, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 128, 128, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

@media (max-width: 640px) {
  .bg-grid-pattern {
    background-size: 16px 16px;
  }
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

    /* ===== VERTICALS SECTION STYLES ===== */
    .verticals-section .cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
    }

    @media (min-width: 640px) {
      .verticals-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .verticals-section .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
    }

    /* Main Card Container */
    .verticals-section .card.insight-card {
      position: relative;
      background-color: #18181b;
      border-radius: 0.5rem;
      overflow: hidden;
      transform: translateY(0) rotate(0);
      transition: all 0.5s ease;
      height: 250px;
      outline: none;
      border: none;
    }

    @media (max-width: 768px) {
      .verticals-section .card.insight-card {
        height: 200px;
      }
    }

    .verticals-section .card.insight-card:hover .insight-card-image,
    .verticals-section .card.insight-card:focus .insight-card-image {
      transform: scale(1.05);
      filter: brightness(1);
    }

    /* Glass Effect - using ::after pseudo-element */
    .verticals-section .card.insight-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent 30%, rgba(223, 223, 223, 0.1) 50%, transparent 60%);
      opacity: 0;
      transform: translateX(-100%);
      transition: all 0.6s ease;
      z-index: 3;
      pointer-events: none;
      border-radius: 1.5rem;
    }

    /* Glass effect on hover */
    .verticals-section .card.insight-card:hover::after {
      opacity: 1;
      transform: translateX(100%);
    }

    /* Image Styles */
    .verticals-section .insight-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.4s ease;
      filter: brightness(0.65);
      border-radius: 0.5rem;
    }

    /* Title Styles */
    .verticals-section .insight-card-title {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      color: white;
      font-size: 1.5rem;
      font-weight: bold;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
      z-index: 2;
      margin: 0;
    }

    /* Optional dark overlay for better text readability */
    .verticals-section .card.insight-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgb(0 0 0 / 60%) 50%, transparent 100%);
      z-index: 1;
      opacity: 0.7;
    }

    /* ===== TESTIMONIALS SECTION STYLES ===== */
    .testimonials-section {
      --line-color: #04DCCD;
      --quote-size: clamp(1rem, 1.5vw + 1rem, 2rem);
    }

    .testimonials-section .qs-wrapper {
      background: radial-gradient(circle at top, #1a1a2f, #070712 70%);
      padding: 5%;
      color: #fff;
      border-radius: 15px;
    }

    .testimonials-section .qs-rotator {
      max-width: 1100px;
      margin: auto;
    }

    .testimonials-section .qs-structure {
      align-items: center;
      gap: 20px;
    }

    .testimonials-section .qs-avatar {
      width: 150px;
      height: 150px;
      border-radius: 50%;

      background-color: white;
      object-fit: contain;

      flex-shrink: 0;
      overflow: hidden;
    }

    .testimonials-section .qs-line {
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, var(--line-color), rgb(255, 255, 255));
      border-radius: 10px;
    }

    .testimonials-section .qs-content {
      border-left: 3px solid;
      border-image: linear-gradient(to bottom, var(--line-color), rgb(255, 255, 255)) 1;
      padding-left: 2%;
    }

    .testimonials-section .qs-quote {
      margin: 0;


    }

    .testimonials-section .qs-quote q {
      background: linear-gradient(120deg, rgba(4, 220, 205, 1) 4%, rgba(17, 222, 208, 1) 36%, rgba(255, 255, 255, 1) 53%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.3;
      font-family: "Noto Serif", serif;
      font-weight: 800;
      font-size: var(--quote-size);
      font-style: italic;
    }

    .testimonials-section .qs-cite {
      margin-top: 14px;
      color: #04DCCD;
      font-style: italic;
      font-size: 1rem;
    }

    .testimonials-section .qs-controls {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .testimonials-section .qs-btn {
      background: rgba(212, 212, 212, 0.1);
      color: #04dccd;
      border: 2px solid var(--line-color);
      border-radius: 8px;
      padding: 5px 10px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .testimonials-section .qs-btn:hover {
      background: #04dcce5d;
      color: #fff;
      transform: translateY(-2px);
    }

    .testimonials-section .qs-btn:active {
      transform: translateY(0);
    }

    .testimonials-section .qs-btn:focus {
      box-shadow: 0 0 12px #04dcce5d;

    }

    /* ===== CTA SECTION STYLES ===== */
    .cta-section .perspective-wrapper {
      transform-style: preserve-3d;
      transform: perspective(1000px);
    }

    .cta-section .modern-cta {
      transform-style: preserve-3d;
      transition: transform 0.1s ease-out;
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    .cta-section .modern-cta h2 {
      font-family: "Noto Serif", serif;
      line-height: 1.2;
      font-style: italic;
      text-shadow: 0 0 10px rgba(50, 50, 50, 0.79);
    }

    .cta-section .light-effect {
      background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.06), transparent 40%);
      transition: opacity 0.2s ease-out;
    }

    @media (prefers-reduced-motion: reduce) {
      .cta-section .modern-cta {
        transform: none !important;
        transition: none !important;
      }
    }

    /* ===== CONTACT SECTION STYLES ===== */
    .contact-section .carousel-item {
      height: 200px;
    }

    .contact-section .carousel-text {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .contact-section .carousel-text h2 {
      font-size: 32px;
      font-weight: bold;
      color: #000;
    }

    .contact-section .carousel-text p {
      font-size: 18px;
      color: #555;
      margin-top: 10px;
    }

    /* ===== RESPONSIVE ADJUSTMENTS ===== */
    @media only screen and (min-width: 300px) {
      .contact-section .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
      }
    }

    @media (max-width: 640px) {
      .hero-section .blur-3xl {
        --tw-blur: blur(24px);
      }
    }

/* ===== CONTACT FORM STYLES ===== */
.contact-section {
  position: relative;
  background-color: rgba(0, 0, 0, 0.7);
  margin-top: 0;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-form-container {
  /* Enhanced Glass Effect */
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 15px 40px rgba(0, 128, 128, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Glass gradient overlay */
.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%,
      rgba(255, 255, 255, 0.05) 100%);
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
}

.contact-form-container:hover {
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 15px 40px rgba(0, 128, 128, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Enhanced form inputs with glass effect */
.teal-input {
  background: rgba(210, 210, 210, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  border-bottom: 2px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
  color: #ffffff;
  font-weight: 500;
}

.teal-input:focus {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-color: rgba(20, 184, 166, 0.5);
  border-bottom-color: #14b8a6;
  box-shadow:
    0 6px 20px rgba(20, 184, 166, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  outline: none;
  transform: translateY(-1px);
}

/* Enhanced floating labels for glass background */
.floating-label {
  position: absolute;
  pointer-events: none;
  left: 16px;
  top: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.9);
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.teal-input:focus~.floating-label,
.teal-input:not(:placeholder-shown)~.floating-label {
  top: -17px;
  left: 14px;
  font-size: 0.75rem;
  color: #14b8a6;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced button with glass effect */
.teal-btn {
  background: linear-gradient(135deg,
      rgba(20, 184, 166, 0.85),
      rgba(13, 148, 136, 0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 6px 20px rgba(20, 184, 166, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.teal-btn:hover {
  background: linear-gradient(135deg,
      rgba(13, 148, 136, 0.9),
      rgba(20, 184, 166, 0.9));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(20, 184, 166, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.teal-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: all 0.8s ease;
}

.teal-btn:hover::after {
  left: 100%;
}

/* Enhanced contact info items with glass effect */
.contact-info-item {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateX(8px);
  color: #14b8a6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced social icons */
.contact-form-container .w-10.h-10 {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-container .w-10.h-10:hover {
  background: rgba(20, 184, 166, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 10px 25px rgba(20, 184, 166, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Enhanced textarea */
textarea.teal-input {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-height: 140px;
  resize: vertical;
}

textarea.teal-input:focus {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Success checkmark enhancement */
.success-checkmark {
  background: rgba(20, 184, 166, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  padding: 4px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  display: none;
  color: #14b8a6;
  margin-left: 8px;
}

@keyframes pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(20, 184, 166, 0.7),
      0 4px 20px rgba(20, 184, 166, 0.3);
  }

  70% {
    box-shadow:
      0 0 0 15px rgba(20, 184, 166, 0),
      0 4px 20px rgba(20, 184, 166, 0.3);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(20, 184, 166, 0),
      0 4px 20px rgba(20, 184, 166, 0.3);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}


/* Form status message enhancement */
#formStatus {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form-container {
    margin: 0.5rem;
    padding: 1.5rem !important;
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
  }

  .contact-info-item {
    padding: 14px;
    margin-bottom: 12px;
  }

  .teal-input {
    padding: 12px;
  }
}

/* Safari specific fix for blur performance */
@media not all and (min-resolution: 0.001dpcm) {
  .contact-form-container {
    -webkit-backdrop-filter: blur(15px) saturate(180%);
  }
}

/* ===== HOVER EFFECTS ===== */
.hover\:shadow-\[0_0_15px_rgba\(45\,212\,191\,0\.5\)\]:hover {
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
}

/* ===== CASE STUDIES STYLES ===== */
.content-section {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.content-section:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.content-section h4 {
  color: #1e293b;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-section h4::before {
  content: '';
  width: 4px;
  height: 16px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 2px;
}

.content-section p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.875rem;
  margin: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-section {
    margin-bottom: 0;
  }
}

/* ===== MOBILE ACCORDION STYLES ===== */
.mobile-accordion-content {
  transition: all 0.3s ease;
}

/* ===== SCROLLBAR STYLES FOR MOBILE MENU ===== */
#mobile-menu::-webkit-scrollbar {
  width: 4px;
}

#mobile-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#mobile-menu::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

#mobile-menu::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ===== PREVENT CLICKS THROUGH BACKDROP ===== */
#mobile-menu-backdrop {
  pointer-events: auto;
}

/* ===== SMOOTH TRANSITIONS ===== */
#mobile-menu,
#mobile-menu-backdrop {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}