    /* CSS Reset & Base */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      border: 0 solid #e5e7eb;
    }
   .category-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    :root {
      --background: 210 40% 98%;
      --foreground: 222 47% 11%;
      --card: 0 0% 100%;
      --card-foreground: 222 47% 11%;
      --primary: 217 91% 45%;
      --primary-foreground: 0 0% 100%;
      --secondary: 180 70% 45%;
      --muted: 210 40% 96%;
      --muted-foreground: 215 20% 45%;
      --border: 214 32% 91%;
      --navy: 222 47% 11%;
      --navy-light: 220 30% 20%;
      --teal: 180 70% 45%;
      --teal-light: 180 60% 55%;
      --radius: 0.75rem;
      --gradient-primary: linear-gradient(135deg, hsl(217 91% 45%) 0%, hsl(180 70% 45%) 100%);
      --shadow-sm: 0 2px 8px -2px hsla(222, 47%, 11%, 0.08);
      --shadow-md: 0 8px 24px -8px hsla(222, 47%, 11%, 0.12);
      --shadow-lg: 0 16px 48px -12px hsla(222, 47%, 11%, 0.18);
      --shadow-card: 0 4px 20px -4px hsla(222, 47%, 11%, 0.1);
    }

    html {
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Outfit', sans-serif;
      line-height: 1.2;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      cursor: pointer;
      font-family: inherit;
      border: none;
      background: none;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: hsl(var(--muted));
    }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--teal)));
      border-radius: 5px;
    }

    /* Container */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Utility Classes */
    .gradient-text {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-heading {
      display: inline-block;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      background: hsla(180, 70%, 45%, 0.1);
      color: hsl(var(--teal));
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: hsl(var(--navy));
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 3rem;
      }
    }

   
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      color: white;
      background: var(--gradient-primary);
      border-radius: 9999px;
      box-shadow: 0 4px 20px hsla(217, 91%, 45%, 0.35);
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px hsla(217, 91%, 45%, 0.45);
    }

    /* Animations */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.8);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .animate-on-scroll {
      opacity: 0;
    }

    .animate-on-scroll.animated {
      animation: fadeInUp 0.6s ease forwards;
    }

    .animate-delay-1 { animation-delay: 0.1s; }
    .animate-delay-2 { animation-delay: 0.2s; }
    .animate-delay-3 { animation-delay: 0.3s; }
    .animate-delay-4 { animation-delay: 0.4s; }
    .animate-delay-5 { animation-delay: 0.5s; }

    /* ==================== HEADER ==================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 17px 0;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-md);
      padding: 0.75rem 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      position: relative;
    }

    .logo-edition {
      position: absolute;
      top: -0.5rem;
      left: 0;
      font-size: 0.625rem;
      font-weight: 500;
      color: hsl(var(--teal));
    }

    .logo-text {
      font-family: 'Outfit', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      transition: color 0.3s;
    }

    .header.scrolled .logo-text {
      color: hsl(var(--navy));
    }

    .logo-text span {
      color: hsl(var(--teal));
    }

    .nav {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .nav {
        display: flex;
      }
    }

    .nav-link {
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      transition: color 0.2s;
      position: relative;
    }

    .header.scrolled .nav-link {
      color: hsl(var(--navy));
    }

    .nav-link:hover {
      color: hsl(var(--teal));
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: hsl(var(--teal));
      transition: width 0.3s;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .header-buttons {
      display: none;
      align-items: center;
      gap: 1rem;
    }

    @media (min-width: 1024px) {
      .header-buttons {
        display: flex;
      }
    }

    .btn-login {
      padding: 0.5rem 1rem;
      font-weight: 500;
      color: white;
      transition: color 0.2s;
    }

    .header.scrolled .btn-login {
      color: hsl(var(--navy));
    }

    .btn-login:hover {
      color: hsl(var(--primary));
    }

    .mobile-menu-btn {
      display: flex;
      padding: 0.5rem;
      color: white;
    }

    .header.scrolled .mobile-menu-btn {
      color: hsl(var(--navy));
    }

    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-top: 1px solid hsl(var(--border));
      padding: 1.5rem;
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-menu-nav {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-menu-link {
      padding: 0.5rem 0;
      font-weight: 500;
      color: hsl(var(--navy));
      transition: color 0.2s;
    }

    .mobile-menu-link:hover {
      color: hsl(var(--primary));
    }

    .mobile-menu-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid hsl(var(--border));
    }

    .mobile-menu-buttons .btn-primary {
      width: 100%;
    }

    .mobile-menu-buttons .btn-outline {
      width: 100%;
      padding: 0.75rem 1.5rem;
      border: 2px solid hsl(var(--primary));
      color: hsl(var(--primary));
      border-radius: 9999px;
      font-weight: 500;
      transition: all 0.3s;
    }

    .mobile-menu-buttons .btn-outline:hover {
      background: hsl(var(--primary));
      color: white;
    }

   /* ==================== HERO SLIDER ==================== */
    .new-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, hsl(222deg 47% 11%), hsla(222, 47%, 11%, 0.95), hsl(222deg 47% 11% / 22%));
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsla(222, 47%, 11%, 0.5), transparent, transparent);
      z-index: 1;
    }

    .hero-floating {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 2;
    }

    .hero-floating-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
    }

    .hero-floating-orb-1 {
      top: 25%;
      right: 25%;
      width: 16rem;
      height: 16rem;
      background: hsla(180, 70%, 45%, 0.1);
      animation: float 8s ease-in-out infinite;
    }

    .hero-floating-orb-2 {
      bottom: 33%;
      left: 33%;
      width: 24rem;
      height: 24rem;
      background: hsla(217, 91%, 45%, 0.1);
      animation: float 10s ease-in-out infinite reverse;
    }

    .hero-content {
      position: relative;
      z-index: 10;
      padding-top: 6rem;
      max-width: 80rem;
    }

    .hero-badge {
      display: inline-block;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      background: hsla(180, 70%, 45%, 0.2);
      color: hsl(var(--teal));
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(8px);
      border: 1px solid hsla(180, 70%, 45%, 0.3);
    }

    /* Hero Slider Navigation */
    .hero-slider-nav {
      position: absolute;
      bottom: 10rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .hero-slider-dots {
      display: flex;
      gap: 0.75rem;
    }

    .hero-slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      border: 2px solid rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .hero-slider-dot::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .hero-slider-dot:hover {
      background: rgba(255, 255, 255, 0.5);
    }

    .hero-slider-dot.active {
      background: hsl(var(--teal));
      border-color: hsl(var(--teal));
      transform: scale(1.2);
    }

    .hero-slider-dot.active::before {
      border-color: hsla(180, 70%, 45%, 0.4);
    }

    .hero-slider-arrows {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding: 0 2rem;
      pointer-events: none;
    }

    .hero-slider-arrow {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      pointer-events: auto;
      color: white;
    }

    .hero-slider-arrow:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }

    .hero-slider-arrow svg {
      width: 24px;
      height: 24px;
    }

    .hero-slider-progress {
      position: absolute;
      bottom: 7rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      width: 200px;
      height: 3px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      overflow: hidden;
    }

    .hero-slider-progress-bar {
      height: 100%;
      background: var(--gradient-primary);
      width: 0%;
      transition: width 0.1s linear;
    }

    /* Hero Content Slides */
    .hero-content-slide {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .hero-content-slide.active {
      position: relative;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .hero-content-slide.active .hero-badge {
      animation: fadeInUp 0.6s ease forwards;
    }

    .hero-content-slide.active h1 {
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.1s;
    }

    .hero-content-slide.active .hero-description {
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.2s;
    }

    .hero-content-slide.active .hero-buttons {
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.3s;
    }

    .hero-content-slide.active .hero-info-cards {
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.4s;
    }

    .hero-content {
      position: relative;
      min-height: 400px;
    }

    .new-hero h1 {
      font-size: 3rem;
      font-weight: 700;
      color: white;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.1s;
      opacity: 0;
    }

    @media (min-width: 768px) {
      .new-hero h1 {
        font-size: 3.75rem;
      }
    }

    @media (min-width: 1024px) {
      .new-hero h1 {
        font-size: 4.5rem;
      }
    }

    .hero-description {
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.125rem;
      margin-bottom: 2rem;
      max-width: 60rem;
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.2s;
      opacity: 0;
    }

    @media (min-width: 768px) {
      .hero-description {
        font-size: 1.25rem;
      }
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.3s;
      opacity: 0;
    }

    .hero-buttons .btn-primary svg {
      margin-left: 0.5rem;
      width: 1.25rem;
      height: 1.25rem;
      transition: transform 0.3s;
    }

    .hero-buttons .btn-primary:hover svg {
      transform: translateX(4px);
    }

    .hero-info-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      animation: fadeInUp 0.6s ease forwards;
      animation-delay: 0.4s;
      opacity: 0;
    }

    .hero-info-card {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.25rem;
      border-radius: 0.75rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-info-card svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--teal));
    }

    .hero-info-card span {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .hero-bottom-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 8rem;
      /* background: linear-gradient(to top, hsl(var(--background)), transparent); */
      z-index: 10;
    }
    /* ==================== CATEGORIES ==================== */
    .categories {
      padding: 2rem 0;
      background: hsl(var(--background));
      position: relative;
      overflow: hidden;
    }

    .categories-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .categories-bg-orb {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: linear-gradient(135deg, hsla(180, 70%, 45%, 0.05), hsla(217, 91%, 45%, 0.05));
      border-radius: 50%;
      filter: blur(60px);
    }

    .categories-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .categories-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .category-card {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: 1.5rem;
      overflow: hidden;
      cursor: pointer;
    }

    .category-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.7s ease;
    }

    .category-card:hover img {
      transform: scale(1.1);
      filter: brightness(0.75);
    }

    .category-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsla(222, 47%, 11%, 0.8), hsla(222, 47%, 11%, 0.4), transparent);
      opacity: 0.7;
      transition: opacity 0.5s;
    }

    .category-card:hover .category-card-overlay {
      opacity: 0.9;
    }

    .category-card-content {
      position: absolute;
      inset: 0;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      z-index: 1;
    }

    .category-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.5rem;
      transition: color 0.3s;
    }

    .category-card:hover h3 {
      color: hsl(var(--teal));
    }

    .category-card-description {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.875rem;
      margin-bottom: 1rem;
      opacity: 0;
      transform: translateY(1rem);
      transition: all 0.5s ease;
      transition-delay: 0.1s;
    }

    .category-card:hover .category-card-description {
      opacity: 1;
      transform: translateY(0);
    }

    .category-card-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: hsl(var(--teal));
      font-size: 0.875rem;
      font-weight: 500;
      opacity: 0;
      transform: translateY(1rem);
      transition: all 0.5s ease;
      transition-delay: 0.15s;
    }

    .category-card:hover .category-card-link {
      opacity: 1;
      transform: translateY(0);
    }

    .category-card-link svg {
      width: 1rem;
      height: 1rem;
      transition: transform 0.3s;
    }

    .category-card:hover .category-card-link svg {
      transform: translateX(0.5rem);
    }

    .category-card-border {
      position: absolute;
      inset: 0;
      border-radius: 1.5rem;
      border: 2px solid transparent;
      transition: border-color 0.5s;
      pointer-events: none;
    }

    .category-card:hover .category-card-border {
      border-color: hsla(180, 70%, 45%, 0.5);
    }

    .category-card-corner {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.5s;
    }

    .category-card:hover .category-card-corner {
      background: hsla(180, 70%, 45%, 0.9);
    }

    .category-card-corner svg {
      width: 1.25rem;
      height: 1.25rem;
      color: white;
      opacity: 0;
      transform: scale(0);
      transition: all 0.3s ease;
      transition-delay: 0.2s;
    }

    .category-card:hover .category-card-corner svg {
      opacity: 1;
      transform: scale(1);
    }

    .category-card-glow {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
    }

    .category-card:hover .category-card-glow {
      opacity: 1;
    }

    .category-card-glow::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 75%;
      height: 5rem;
      background: hsla(180, 70%, 45%, 0.3);
      filter: blur(24px);
    }

    /* ==================== ABOUT US ==================== */
    .about {
      padding: 2rem 0;
      background: hsla(210, 40%, 96%, 0.5);
      position: relative;
      overflow: hidden;
    }

    .about-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .about-bg::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(to left, hsla(180, 70%, 45%, 0.05), transparent);
    }

    .about-bg::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24rem;
      height: 24rem;
      background: hsla(217, 91%, 45%, 0.05);
      border-radius: 50%;
      filter: blur(60px);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .about-visual {
      position: relative;
    }

    .about-visual-bg {
      position: absolute;
      top: -1rem;
      left: -1rem;
      right: 2rem;
      bottom: 2rem;
      background: linear-gradient(135deg, hsl(var(--navy)), hsl(var(--navy-light)), hsl(var(--primary)));
      border-radius: 1.5rem;
      opacity: 0.2;
    }

    .about-card {
      position: relative;
      /* background: linear-gradient(135deg, hsl(var(--navy)), hsl(var(--navy-light)), hsl(var(--navy))); */
      border-radius: 1.5rem;
      padding: 0rem;
      overflow: hidden;
    }

    @media (min-width: 1024px) {
      .about-card {
        padding: 0rem;
      }
    }

    .about-card-decoration-1 {
      position: absolute;
      top: 0;
      right: 0;
      width: 10rem;
      height: 10rem;
      background: hsla(180, 70%, 45%, 0.2);
      border-radius: 50%;
      filter: blur(60px);
    }

    .about-card-decoration-2 {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 12rem;
      height: 12rem;
      background: hsla(217, 91%, 45%, 0.2);
      border-radius: 50%;
      filter: blur(60px);
    }

    .about-card-inner {
      position: relative;
      z-index: 10;
    }

    .about-logo-section {
      text-align: center;
      margin-bottom: 2rem;
    }

    .about-edition-badge {
      display: inline-block;
      padding: 0.375rem 1rem;
      border-radius: 9999px;
      background: hsla(180, 70%, 45%, 0.2);
      color: hsl(var(--teal));
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .about-logo-title {
      font-size: 3rem;
      font-weight: 700;
      color: white;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 1024px) {
      .about-logo-title {
        font-size: 3.75rem;
      }
    }

    .about-logo-title span {
      color: hsl(var(--teal));
    }

    .about-conference-badge {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
      font-size: 0.875rem;
    }

    .about-stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .about-stat-card {
      text-align: center;
      padding: 1rem;
      border-radius: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-stat-card svg {
      width: 1.5rem;
      height: 1.5rem;
      color: hsl(var(--teal));
      margin: 0 auto 0.5rem;
    }

    .about-stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
    }

    .about-stat-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .about-doctor-floating {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 8rem;
      height: 8rem;
      border-radius: 1rem;
      overflow: hidden;
      border: 4px solid hsl(var(--background));
      box-shadow: var(--shadow-lg);
    }

    .about-doctor-floating img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-content h2 {
      margin-bottom: 1.5rem;
    }

    .about-message {
      margin-bottom: 0rem;
    }

    .about-message-title {
      font-size: 1.125rem;
      font-weight: 500;
      color: hsl(var(--navy));
      margin-bottom: 0.75rem;
    }

    .about-message-text {
      color: hsl(var(--muted-foreground));
      line-height: 1.8;
    }

    .about-doctor-card {
      padding: 1.5rem;
      border-radius: 1rem;
      background: white;
      border: 1px solid hsl(var(--border));
      box-shadow: var(--shadow-sm);
      margin-bottom: 2rem;
    }

    .about-doctor-card-inner {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .about-doctor-avatar {
      width: 4rem;
      height: 4rem;
      border-radius: 0.75rem;
      overflow: hidden;
      flex-shrink: 0;
    }

    .about-doctor-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .about-doctor-info {
      flex: 1;
    }

    .about-doctor-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.25rem;
      flex-wrap: wrap;
    }

    .about-doctor-name {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom:0px !important;
      color: hsl(var(--navy));
    }

    .about-doctor-badge {
      display: inline-block;
      padding: 0.125rem 0.5rem;
      border-radius: 9999px;
      background: hsla(180, 70%, 45%, 0.1);
      color: hsl(var(--teal));
      font-size: 0.75rem;
      font-weight: 500;
    }

    .about-doctor-credentials,
    .about-doctor-title {
      font-size: 0.875rem;
      margin-bottom:0px !important;
      color: hsl(var(--muted-foreground));
    }

    .about-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .about-email-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.5rem;
      border-radius: 0.75rem;
      background: hsla(217, 91%, 45%, 0.1);
      color: hsl(var(--primary));
      font-weight: 500;
      transition: all 0.3s;
    }

    .about-email-btn:hover {
      background: hsl(var(--primary));
      color: white;
    }

    .about-email-btn svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .about-learn-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 0.75rem;
      background: var(--gradient-primary);
      color: white;
      font-weight: 500;
      transition: all 0.3s;
    }

    .about-learn-btn:hover {
      box-shadow: 0 8px 24px hsla(217, 91%, 45%, 0.25);
    }

    .about-learn-btn svg {
      width: 1rem;
      height: 1rem;
      transition: transform 0.3s;
    }

    .about-learn-btn:hover svg {
      transform: translateX(4px);
    }

    /* ==================== COMMITTEE ==================== */
    .committee {
      padding: 2rem 0;
      background: hsl(var(--background));
      position: relative;
      overflow: hidden;
    }

    .committee-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .committee-bg-orb {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: linear-gradient(135deg, hsla(180, 70%, 45%, 0.03), hsla(217, 91%, 45%, 0.03));
      border-radius: 50%;
      filter: blur(60px);
    }

    .committee-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .committee-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .committee-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .committee-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .committee-member {
      position: relative;
    }

    .committee-member-image-wrapper {
      position: relative;
      margin-bottom: 1.5rem;
      overflow: hidden;
      border-radius: 1.5rem;
      background: linear-gradient(135deg, hsl(var(--muted)), hsla(210, 40%, 96%, 0.5));
    }

    .committee-member-image {
      aspect-ratio: 3/4;
      position: relative;
      overflow: hidden;
    }

    .committee-member-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .committee-member:hover .committee-member-image img {
      transform: scale(1.1);
    }

    .committee-member-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsl(var(--navy)), hsla(222, 47%, 11%, 0.2), transparent);
      opacity: 0.6;
      transition: opacity 0.5s;
    }

    .committee-member:hover .committee-member-overlay {
      opacity: 0.8;
    }

    .committee-member-social {
      position: absolute;
      bottom: 1rem;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      transform: translateY(2.5rem);
      opacity: 0;
      transition: all 0.5s ease;
    }

    .committee-member:hover .committee-member-social {
      transform: translateY(0);
      opacity: 1;
    }

    .committee-member-social-link {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.75rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s;
    }

    .committee-member-social-link:hover {
      background: hsl(var(--teal));
      border-color: hsl(var(--teal));
    }

    .committee-member-social-link svg {
      width: 1rem;
      height: 1rem;
    }

    .committee-member-role-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.375rem 0.75rem;
      border-radius: 9999px;
      background: hsla(180, 70%, 45%, 0.9);
      backdrop-filter: blur(8px);
      color: white;
      font-size: 0.75rem;
      font-weight: 500;
    }

    .committee-member-border {
      position: absolute;
      inset: 0;
      border-radius: 1.5rem;
      border: 2px solid transparent;
      transition: border-color 0.5s;
      pointer-events: none;
    }

    .committee-member:hover .committee-member-border {
      border-color: hsla(180, 70%, 45%, 0.5);
    }

    .committee-member-info {
      text-align: center;
    }

    .committee-member-name {
      font-size: 1.125rem;
      font-weight: 600;
      color: hsl(var(--navy));
      transition: color 0.3s;
    }

    .committee-member:hover .committee-member-name {
      color: hsl(var(--teal));
    }

    .committee-member-title {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
      margin-top: 0.25rem;
    }

    /* ==================== TESTIMONIALS ==================== */
    .testimonials {
      padding: 2rem 0;
      background: linear-gradient(180deg, hsla(210, 40%, 96%, 0.3), hsl(var(--background)), hsla(210, 40%, 96%, 0.3));
      position: relative;
      overflow: hidden;
    }

    .testimonials-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .testimonials-bg-orb-1 {
      position: absolute;
      top: 5rem;
      right: 5rem;
      width: 24rem;
      height: 24rem;
      background: hsla(180, 70%, 45%, 0.05);
      border-radius: 50%;
      filter: blur(60px);
    }

    .testimonials-bg-orb-2 {
      position: absolute;
      bottom: 5rem;
      left: 5rem;
      width: 20rem;
      height: 20rem;
      background: hsla(217, 91%, 45%, 0.05);
      border-radius: 50%;
      filter: blur(60px);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .testimonial-card {
      max-width: 64rem;
      margin: 0 auto 3rem;
    }

    .testimonial-card-inner {
      position: relative;
      background: white;
      border-radius: 1.5rem;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr;
    }

    @media (min-width: 1024px) {
      .testimonial-grid {
        grid-template-columns: 2fr 3fr;
      }
    }

    .testimonial-image-section {
      position: relative;
      height: 16rem;
    }

    @media (min-width: 1024px) {
      .testimonial-image-section {
        height: auto;
      }
    }

    .testimonial-image-section img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsla(222, 47%, 11%, 0.6), transparent, transparent);
    }

    @media (min-width: 1024px) {
      .testimonial-image-overlay {
        background: linear-gradient(to right, hsla(222, 47%, 11%, 0.6), transparent, transparent);
      }
    }

    .testimonial-quote-icon {
      position: absolute;
      top: 1.5rem;
      left: 1.5rem;
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 1rem;
      background: hsla(180, 70%, 45%, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .testimonial-quote-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: white;
    }

    .testimonial-content-section {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (min-width: 1024px) {
      .testimonial-content-section {
        padding: 3rem;
      }
    }

    .testimonial-rating {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1.5rem;
    }

    .testimonial-rating svg {
      width: 1.5rem;
      height: 1.5rem;
      fill: #fbbf24;
      color: #fbbf24;
    }

    .testimonial-quote {
      color: hsl(var(--muted-foreground));
      line-height: 1.8;
      font-size: 1.125rem;
      margin-bottom: 2rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial-author-line {
      width: 0.25rem;
      height: 3rem;
      background: linear-gradient(to bottom, hsl(var(--teal)), hsl(var(--primary)));
      border-radius: 9999px;
    }

    .testimonial-author-name {
      font-weight: 700;
      color: hsl(var(--navy));
      font-size: 1.125rem;
    }

    .testimonial-author-role {
      font-size: 0.875rem;
      color: hsl(var(--muted-foreground));
    }

    .testimonial-nav {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      display: flex;
      gap: 0.75rem;
    }

    .testimonial-nav-btn {
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .testimonial-nav-btn.prev {
      background: hsl(var(--muted));
      color: hsl(var(--foreground));
    }

    .testimonial-nav-btn.prev:hover {
      background: hsl(var(--teal));
      color: white;
    }

    .testimonial-nav-btn.next {
      background: hsl(var(--navy));
      color: white;
    }

    .testimonial-nav-btn.next:hover {
      background: hsl(var(--teal));
    }

    .testimonial-nav-btn svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .testimonial-thumbnails {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .testimonial-thumbnail {
      position: relative;
      width: 4rem;
      height: 4rem;
      border-radius: 1rem;
      overflow: hidden;
      transition: all 0.3s;
    }

    .testimonial-thumbnail.active {
      outline: 4px solid hsl(var(--teal));
      outline-offset: 2px;
      transform: scale(1.1);
    }

    .testimonial-thumbnail:not(.active) {
      opacity: 0.5;
    }

    .testimonial-thumbnail:not(.active):hover {
      opacity: 1;
    }

    .testimonial-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ==================== EVENTS ==================== */
    .events {
      padding: 2rem 0;
      background: hsl(var(--navy));
      position: relative;
      overflow: hidden;
    }

    .events-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .events-bg-orb-1 {
      position: absolute;
      top: 5rem;
      left: 5rem;
      width: 16rem;
      height: 16rem;
      background: hsla(180, 70%, 45%, 0.1);
      border-radius: 50%;
      filter: blur(60px);
    }

    .events-bg-orb-2 {
      position: absolute;
      bottom: 5rem;
      right: 5rem;
      width: 20rem;
      height: 20rem;
      background: hsla(217, 91%, 45%, 0.1);
      border-radius: 50%;
      filter: blur(60px);
    }

    .events-bg-orb-3 {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, hsla(180, 70%, 45%, 0.05), hsla(217, 91%, 45%, 0.05));
      border-radius: 50%;
      filter: blur(60px);
    }

    .events-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .events-header .section-heading {
      background: hsla(180, 70%, 45%, 0.1);
    }

    .events-header .section-title {
      color: white;
    }

    .events-header p {
      color: rgba(255, 255, 255, 0.6);
      max-width: 42rem;
      margin: 0 auto;
    }

    .events-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .events-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .event-card {
      position: relative;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 1.5rem;
      overflow: hidden;
      transition: all 0.5s;
    }

    .event-card:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .event-card-image {
      position: relative;
      height: 13rem;
      overflow: hidden;
    }

    .event-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .event-card:hover .event-card-image img {
      transform: scale(1.1);
    }

    .event-card-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, hsl(var(--navy)), hsla(222, 47%, 11%, 0.5), transparent);
    }

    .event-card-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      background: hsla(180, 70%, 45%, 0.9);
      backdrop-filter: blur(8px);
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .event-card-content {
      padding: 1.5rem;
      position: relative;
    }

    .event-card-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .event-card-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.875rem;
    }

    .event-card-meta-item svg {
      width: 1rem;
      height: 1rem;
      color: hsl(var(--teal));
    }

    .event-card-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: white;
      margin-bottom: 0.5rem;
      transition: color 0.3s;
    }

    .event-card:hover .event-card-title {
      color: hsl(var(--teal));
    }

    .event-card-subtitle {
      font-size: 0.875rem;
      font-weight: 500;
      color: hsl(var(--teal));
      margin-bottom: 0.75rem;
    }

    .event-card-description {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.875rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .event-card-date {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .event-card-date svg {
      width: 1rem;
      height: 1rem;
    }

    .event-card-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: hsl(var(--teal));
      font-size: 0.875rem;
      font-weight: 500;
    }

    .event-card-link svg {
      width: 1rem;
      height: 1rem;
      transition: transform 0.3s;
    }

    .event-card:hover .event-card-link svg {
      transform: translateX(0.5rem);
    }

    .event-card-bottom-line {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0.25rem;
      background: linear-gradient(to right, hsl(var(--teal)), hsl(var(--primary)), hsl(var(--teal)));
      opacity: 0;
      transition: opacity 0.5s;
    }

    .event-card:hover .event-card-bottom-line {
      opacity: 1;
    }

    .events-view-all {
      text-align: center;
      margin-top: 3rem;
    }

    .events-view-all-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      border-radius: 9999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      font-weight: 500;
      transition: all 0.3s;
    }

    .events-view-all-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: hsla(180, 70%, 45%, 0.5);
    }

    .events-view-all-btn svg {
      width: 1.25rem;
      height: 1.25rem;
      transition: transform 0.3s;
    }

    .events-view-all-btn:hover svg {
      transform: translateX(4px);
    }

    

    /* SVG Icons inline */
    .icon {
      display: inline-block;
      width: 1em;
      height: 1em;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .about-messages-slider {
  position: relative;
  min-height: 220px;
}

.about-message {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.about-message.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  z-index: 9999;
}
.about-email-btn:hover{
  background:var(--gradient-primary);
}
/* arrows */
.about-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-slider-arrow.prev { left: -48px; }
.about-slider-arrow.next { right: -48px; }

/* dots */
.about-slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.about-slider-dots .dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.about-slider-dots .dot.active {
  background: #000;
  transform: scale(1.2);
}
.committee-slider-wrapper {
  position: relative;
  margin-top: 3rem;
}



.committee-slider .committee-member {
  min-width: 280px;
  flex-shrink: 0;
}

/* arrows */
.committee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  color: #000;
  cursor: pointer;
  z-index: 10;
}

.committee-arrow.prev {
  left: -55px;
}

.committee-arrow.next {
  right: -55px;
}

.committee-arrow:hover {
  background: rgba(0,0,0,0.15);
}

.committee-slider-wrapper {
  position: relative;
  margin-top: 3rem;
}



.committee-member {
  min-width: 280px;
  flex-shrink: 0;
}

/* arrows */
.committee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  color: #000;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.committee-arrow.prev {
  left: -55px;
}
main.main {
    margin-top: 95px !important;
}

.committee-arrow.next {
  right: -55px;
}

.committee-arrow:hover {
  background: rgba(0,0,0,0.15);
}

/* mobile safe */
@media (max-width: 768px) {
  .committee-arrow.prev {
    left: -20px;
  }
  .committee-arrow.next {
    right: -20px;
  }
}
/* viewport */
.committee-slider-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* slider */
.committee-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* cards */
.committee-slider .committee-member {
  flex: 0 0 280px;
  max-width: 280px;
}
/* viewport - show exactly 4 cards */
.committee-slider-viewport {
  overflow: hidden;
  width: 100%;
  max-width: calc(280px * 4 + 2rem * 3); /* 4 cards + 3 gaps */
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
  .committee-slider-viewport {
    max-width: calc(280px * 3 + 2rem * 2); /* 3 cards */
  }
}

@media (max-width: 992px) {
  .committee-slider-viewport {
    max-width: calc(280px * 2 + 2rem * 1); /* 2 cards */
  }
}

@media (max-width: 640px) {
  .committee-slider-viewport {
    max-width: 280px; /* 1 card */
  }
}

@media (max-width: 768px){
  .new-hero{
    align-items: flex-start;
    padding-top:30px !important;
  }
  .committee-member-role-badge{
        top: 0.5rem !important;
    left: 0.5rem !important;
  }
  .testimonial-quote{
        margin-bottom: 0.5rem !important;
  }
  .testimonial-nav {
    bottom: 10px !important;
    right: 15px !important; 
}
.testimonial-nav-btn {
    width: 2rem !important;
    font-size: 30px !important;
    height: 2rem !important;
    border-radius: 8px !important;
}
  .new-hero h1{
    font-size: 2rem !important;
  }
  .btn-primary {
    padding: 10px 15px !important;
    font-size: 14px !important;
  }
  
  .section-title{
    font-size: 2rem !important;
  }
  .events, .committee, .categories, .testimonials {
    padding: 2rem 0 !important; 
  }
  .hero-slider-arrows{
    display: none !important;
  }
  
  body main.main {
      margin-top: 95px !important;
  }
}