      :root {
        --primary-dark: #111112;
        --secondary-dark: #1a1f1a;
        --accent-gold: #c8f550;
        --accent-gold-dark: #a8d440;
        --light-bg: #f5f1e8;
        --text-dark: #000000;
        --text-light: #ffffff;
        --font-oswald: "Oswald", sans-serif;
        --font-baskerville: "Libre Baskerville", serif;
        --font-roboto: "Roboto", sans-serif;
        --gradient-dark: linear-gradient(135deg, #111112 0%, #1a1f1a 100%);
        --gradient-gold: linear-gradient(135deg, #c8f550 0%, #a8d440 100%);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: 100px;
      }

      body {
        font-family: var(--font-roboto);
        background-color: var(--light-bg);
        color: var(--text-dark);
        overflow-x: hidden;
        line-height: 1.6;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: var(--font-oswald);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 700;
      }

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

      section {
        padding: 100px 0;
        position: relative;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 34px;
        background: var(--gradient-gold);
        color: var(--text-dark);
        font-family: var(--font-oswald);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
        position: relative;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(200, 245, 80, 0.3);
      }

      .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(200, 245, 80, 0.4);
        letter-spacing: 0.12em;
      }

      .btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #a8d440 0%, #c8f550 100%);
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease;
        border-radius: 8px;
      }

      .btn:hover::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      .btn-outline {
        background: transparent;
        border: 2px solid var(--accent-gold);
        color: var(--accent-gold);
        box-shadow: none;
      }

      .btn-outline:hover {
        background: var(--gradient-gold);
        color: var(--text-dark);
      }

      .section-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.1;
        position: relative;
        display: inline-block;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--gradient-gold);
        border-radius: 2px;
      }

      .accent-text {
        color: var(--accent-gold);
        font-family: var(--font-baskerville);
        font-style: italic;
        text-transform: none;
        font-weight: 400;
        position: relative;
      }
      .accent-text-green {
        color:#3a5f0b;
        font-family: var(--font-baskerville);
        font-style: italic;
        text-transform: none;
        font-weight: 400;
        position: relative;
      }

/* Preloader - RESPONSIVE FIXED */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--accent-gold);
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  padding: 20px; /* Added padding for mobile */
}

.preloader-logo {
  position: relative;
  display: flex;
  align-items: baseline;
  font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive font size */
  font-weight: 700;
  overflow: hidden;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Allow wrapping on very small screens */
  justify-content: center;
  text-align: center;
}

.preloader-logo span:first-child {
  font-family: var(--font-oswald);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.preloader-logo span:last-child {
  font-family: var(--font-baskerville);
  margin-left: clamp(5px, 2vw, 10px); /* Responsive margin */
  color: var(--text-light);
  line-height: 1.1;
}

.preloader-progress {
  width: min(300px, 90%); /* Responsive width - max 300px, min 90% on mobile */
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 30px;
}

.preloader-progress-bar {
  width: 0;
  height: 100%;
  background: var(--gradient-gold);
  transition: width 1.5s ease;
}

.preloader-subtitle {
  font-family: var(--font-oswald);
  font-size: clamp(0.8rem, 3vw, 1.2rem); /* Responsive font size */
  font-weight: 700;
  letter-spacing: clamp(0.1em, 2vw, 0.2em); /* Responsive letter spacing */
  color: var(--text-light);
  text-align: center;
  padding: 0 20px; /* Padding for mobile */
  line-height: 1.4;
}

/* Media query for very small screens */
@media (max-width: 480px) {
  .preloader-logo {
    flex-direction: column; /* Stack name parts vertically */
    align-items: center;
    gap: 5px;
  }
  
  .preloader-logo span:last-child {
    margin-left: 0;
    margin-top: 5px;
  }
  
  .preloader-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }
  
  .preloader-progress {
    margin-bottom: 20px;
  }
}

/* Media query for medium screens */
@media (max-width: 768px) {
  .preloader-logo {
    font-size: 3.5rem;
  }
  
  .preloader-subtitle {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }
}

/* ==================== MODERN WHITE NAVIGATION ==================== */

/* White Navigation Base */
.white-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.white-nav.scrolled {
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Logo - Bigger with scaling */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  transition: all 0.4s ease;
}

.logo-img {
  height: 70px; /* Initial bigger size */
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.white-nav.scrolled .logo-img {
  height: 50px; /* Smaller when scrolled */
}

/* Mobile Toggle Button - Black for contrast */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle .bar {
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--accent-gold);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--accent-gold);
}

/* Desktop Navigation Menu - White Theme */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-list > li > a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-oswald);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
  position: relative;
  display: inline-block;
  opacity: 0.9;
}

.nav-list > li > a:hover {
  color: var(--accent-gold);
  opacity: 1;
  transform: translateY(-2px);
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list > li > a:hover::after {
  width: 100%;
}

/* Desktop Action Buttons - White Theme */
.header-actions-desktop {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Action Buttons - Updated for white nav */
.talk-btn, .brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  font-family: var(--font-oswald);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.talk-btn {
  background: var(--gradient-gold);
  color: var(--text-dark);
  box-shadow: 0 5px 15px rgba(200, 245, 80, 0.3);
}

.talk-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 245, 80, 0.4);
}

.brochure-btn {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 5px 15px rgba(200, 245, 80, 0.1);
}

.brochure-btn:hover {
  background: var(--gradient-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 245, 80, 0.3);
}

/* MOBILE RESPONSIVE STYLES - Updated for white theme */
@media (max-width: 992px) {
  .header-container {
    padding: 0 25px;
  }
  
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 140px 40px 60px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    margin-bottom: 60px;
  }

  .nav-list > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-list > li:last-child {
    border-bottom: none;
  }

  .nav-list > li > a {
    display: block;
    width: 100%;
    padding: 22px 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    font-weight: 700;
  }

  .nav-list > li > a:hover {
    color: var(--accent-gold);
    background: rgba(200, 245, 80, 0.08);
  }

  /* Mobile Social Media Links - Updated */
  .nav-social-mobile {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .social-icon:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 25px rgba(200, 245, 80, 0.3);
  }

  /* Show mobile action buttons */
  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .nav-actions-mobile .talk-btn,
  .nav-actions-mobile .brochure-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 25px;
    font-size: 1rem;
    font-weight: 700;
  }

  /* Hide desktop buttons on mobile */
  .header-actions-desktop {
    display: none;
  }
  
  /* Adjust logo size for mobile */
  .logo-img {
    height: 60px;
  }
  
  .white-nav.scrolled .logo-img {
    height: 45px;
  }
}

/* Desktop specific */
@media (min-width: 993px) {
  .nav-social-mobile,
  .nav-actions-mobile {
    display: none;
  }
  
  .header-actions-desktop {
    display: flex;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  .header-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    max-width: 100%;
    padding: 120px 30px 50px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .white-nav.scrolled .logo-img {
    height: 40px;
  }
  
  .nav-list > li > a {
    padding: 20px 0;
    font-size: 1.1rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .nav-actions-mobile .talk-btn,
  .nav-actions-mobile .brochure-btn {
    padding: 16px 20px;
  }
}

/* Animation for logo on scroll */
@keyframes logoShrink {
  from {
    height: 70px;
  }
  to {
    height: 50px;
  }
}

@keyframes logoGrow {
  from {
    height: 50px;
  }
  to {
    height: 70px;
  }
}
      /* Active Navigation Highlight */
      .nav-list > li > a.active {
        color: var(--accent-gold) !important;
        opacity: 1 !important;
      }

      .nav-list > li > a.active::after {
        width: 100% !important;
      }

      /* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding-top: 140px; /* Increased to account for larger nav */
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

      .hero-bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.1;
        background-image: radial-gradient(
          var(--accent-gold) 1px,
          transparent 1px
        );
        background-size: 50px 50px;
        animation: patternMove 20s linear infinite;
        z-index: 1;
      }

      @keyframes patternMove {
        0% {
          background-position: 0 0;
        }
        100% {
          background-position: 50px 50px;
        }
      }

      .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

.white-nav + .hero {
  padding-top: 160px; /* Extra space for white nav */
}

.white-nav.scrolled + .hero {
  padding-top: 140px; /* Less space when nav shrinks */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(200, 245, 80, 0.1);
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid rgba(200, 245, 80, 0.3);
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 2; /* Ensure it's above background */
}

      .badge-icon {
        color: var(--accent-gold);
        font-size: 1.3rem;
      }

      .badge-text {
        font-family: var(--font-oswald);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--accent-gold);
        font-weight: 600;
      }

      .hero-title {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 30px;
        color: var(--text-light);
        position: relative;
        animation: fadeInUp 0.8s ease-out 0.4s both;
      }

      .hero-title span {
        color: var(--accent-gold);
        font-style: italic;
        font-family: var(--font-baskerville);
        position: relative;
        display: inline-block;
      }

      .hero-subtitle {
        font-size: 1.6rem;
        font-family: var(--font-baskerville);
        font-style: italic;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.4;
        animation: fadeInUp 0.8s ease-out 0.6s both;
        max-width: 800px;
        margin: 0 auto;
      }

      .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 40px;
        animation: fadeInUp 0.8s ease-out 0.8s both;
      }

      /* Hero Image Carousel */
      .hero-image-carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
      }

      .hero-carousel-track {
        display: flex;
        width: 400%;
        height: 100%;
        animation: slideCarousel 20s infinite;
      }

      .hero-carousel-slide {
        width: 100%;
        height: 100%;
        position: relative;
      }

      .hero-carousel-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to right,
          rgba(17, 17, 18, 0.9),
          rgba(17, 17, 18, 0.7)
        );
        z-index: 1;
      }

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

      @keyframes slideCarousel {
        0%,
        20% {
          transform: translateX(0);
        }
        25%,
        45% {
          transform: translateX(-25%);
        }
        50%,
        70% {
          transform: translateX(-50%);
        }
        75%,
        95% {
          transform: translateX(-75%);
        }
        100% {
          transform: translateX(0);
        }
      }

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

      /* Hero Stats */
      .hero-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 60px;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease-out 1s both;
      }

      .hero-stat-item {
        text-align: center;
      }

      .hero-stat-number {
        font-family: var(--font-oswald);
        font-size: 3rem;
        font-weight: 700;
        color: var(--accent-gold);
        line-height: 1;
        margin-bottom: 10px;
        display: block;
      }

      .hero-stat-text {
        font-family: var(--font-oswald);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-light);
        opacity: 0.9;
      }

      /* REDESIGNED Quote Section */
      .quote-section {
        background: var(--gradient-dark);
        color: var(--text-light);
        text-align: center;
        padding: 120px 0;
        position: relative;
        overflow: hidden;
      }

      .quote-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(
          circle at 50% 50%,
          rgba(200, 245, 80, 0.1) 0%,
          transparent 60%
        );
      }

      .quote-container {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        padding: 60px 40px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(200, 245, 80, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(60px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .quote-container.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .quote-icon {
        font-size: 3rem;
        color: var(--accent-gold);
        margin-bottom: 30px;
        opacity: 0.7;
        position: relative;
      }

      .quote-icon::before,
      .quote-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent-gold));
      }

      .quote-icon::before {
        right: calc(100% + 30px);
      }

      .quote-icon::after {
        left: calc(100% + 30px);
        background: linear-gradient(90deg, var(--accent-gold), transparent);
      }

      .quote-text {
        font-size: 2.8rem;
        font-family: var(--font-baskerville);
        font-style: italic;
        line-height: 1.4;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        color: var(--text-light);
      }

      .quote-author {
        font-family: var(--font-oswald);
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--accent-gold);
        position: relative;
        padding-top: 20px;
      }

      .quote-author::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: var(--gradient-gold);
        border-radius: 2px;
      }

      /* About Section */
      .about {
        background-color: var(--light-bg);
        position: relative;
        overflow: hidden;
      }

      .about-bg-text {
        position: absolute;
        font-size: 20rem;
        font-family: var(--font-oswald);
        font-weight: 900;
        color: rgba(0, 0, 0, 0.03);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
        z-index: 0;
        letter-spacing: 0.1em;
      }

      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1;
      }

      .about-text {
        opacity: 0;
        transform: translateX(-80px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .about-text.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .about-text h2 {
        margin-bottom: 30px;
      }

      .about-text p {
        margin-bottom: 25px;
        font-size: 1.15rem;
        color: var(--text-dark);
        line-height: 1.8;
        position: relative;
        padding-left: 20px;
      }

      .about-text p::before {
        content: "•";
        color: var(--accent-gold);
        font-weight: bold;
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: 0;
      }

      .about-stats {
        display: flex;
        gap: 30px;
        margin-top: 40px;
        flex-wrap: wrap;
      }

      .stat-item {
        text-align: center;
        padding: 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        flex: 1;
        min-width: 120px;
        transition: all 0.3s ease;
      }

      .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
      }

      .stat-number {
        font-family: var(--font-oswald);
        font-size: 2.5rem;
        font-weight: 700;
        color: #3a5f0b;
        line-height: 1;
        margin-bottom: 10px;
      }

      .stat-label {
        font-family: var(--font-oswald);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-dark);
      }

      .about-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
        opacity: 0;
        transform: translateX(80px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .about-image.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .about-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
      }

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

      .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: var(--text-light);
        transform: translateY(100%);
        transition: transform 0.6s ease;
      }

      .about-image:hover .image-overlay {
        transform: translateY(0);
      }
/* RSDI Information Styles */
.rsdi-info {
  background: rgba(200, 245, 80, 0.05);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border-left: 4px solid #3a5f0b;
}

.rsdi-info h3 {
  font-family: var(--font-oswald);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.btn-rsdi {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border: none;
  padding: 12px 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-rsdi:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(200, 245, 80, 0.3);
}

/* RSDI Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  background: var(--gradient-dark);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(200, 245, 80, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(200, 245, 80, 0.1);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  font-family: var(--font-oswald);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  background: rgba(200, 245, 80, 0.1);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--gradient-gold);
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-content {
  padding: 30px;
}

/* Updated RSDI Logo Container */
.rsdi-logo-container {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rsdi-logo-img {
  height: 80px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(200, 245, 80, 0.3);
}

.rsdi-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rsdi-logo-name {
  font-family: var(--font-oswald);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0 5px 15px rgba(200, 245, 80, 0.3);
}

.rsdi-subtitle {
  font-family: var(--font-baskerville);
  font-size: 1.3rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
  opacity: 0.9;
}

.rsdi-info-content {
  color: var(--text-light);
}

.rsdi-info-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.rsdi-info-content strong {
  color: var(--accent-gold);
  font-weight: 600;
}

/* RSDI Services Section */
.rsdi-services-section {
  margin: 40px 0;
  padding: 30px;
  background: rgba(200, 245, 80, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(200, 245, 80, 0.1);
}

.rsdi-services-section h3 {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rsdi-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.rsdi-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: default;
}

.rsdi-service-item:hover {
  background: rgba(200, 245, 80, 0.1);
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.rsdi-service-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 245, 80, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.rsdi-service-item span {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

/* RSDI Brochure Section */
.rsdi-brochure {
  text-align: center;
  margin-top: 40px;
  padding: 35px;
  background: linear-gradient(135deg, rgba(200, 245, 80, 0.08) 0%, rgba(168, 212, 64, 0.05) 100%);
  border-radius: 15px;
  border: 2px solid rgba(200, 245, 80, 0.2);
}

.rsdi-brochure h3 {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.rsdi-brochure p {
  margin-bottom: 25px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-download-brochure {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border: none;
  padding: 16px 35px;
  font-size: 1.1rem;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-download-brochure:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(200, 245, 80, 0.4);
}

.btn-download-brochure i {
  margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-container {
    max-width: 95%;
    margin: 20px;
  }
  
  .modal-header {
    padding: 20px;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .modal-content {
    padding: 20px;
  }
  
  .rsdi-logo-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .rsdi-logo-img {
    height: 70px;
  }
  
  .rsdi-logo-name {
    font-size: 2.8rem;
  }
  
  .rsdi-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .rsdi-service-item {
    padding: 12px;
  }
  
  .rsdi-service-item i {
    font-size: 1.1rem;
    width: 35px;
    height: 35px;
  }
  
  .rsdi-service-item span {
    font-size: 0.9rem;
  }
  
  .rsdi-services-section {
    padding: 20px;
  }
  
  .rsdi-services-section h3 {
    font-size: 1.3rem;
  }
  
  .rsdi-brochure {
    padding: 25px 20px;
  }
  
  .rsdi-brochure h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .modal-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .rsdi-info {
    padding: 20px 15px;
  }
  
  .btn-rsdi {
    width: 100%;
    justify-content: center;
  }
  
  .rsdi-logo-name {
    font-size: 2.5rem;
  }
  
  .rsdi-subtitle {
    font-size: 1.1rem;
  }
  
  .rsdi-services-section {
    padding: 15px;
  }
  
  .btn-download-brochure {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
  }
  
  .rsdi-logo-name {
    font-size: 2.2rem;
  }
  
  .rsdi-logo-img {
    height: 60px;
  }
  
  .rsdi-services-section h3 {
    font-size: 1.2rem;
  }
  
  .rsdi-brochure h3 {
    font-size: 1.2rem;
  }
}
.download-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  min-width: 260px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #111, #1c1c1c);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.download-btn:hover::before {
  transform: translateX(100%);
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.download-btn .icon {
  font-size: 22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.download-btn .text strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.download-btn .text small {
  font-size: 12px;
  opacity: 0.7;
}

/* Brochure Button */
.brochure-btn {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
}

.brochure-btn .icon {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.brochure-btn strong {
  color: #fff;
}

.brochure-btn small {
  color: #ddd;
}

/* Project Button */
.project-btn {
  background: linear-gradient(135deg, #0c1c2b, #132f45);
}

.project-btn .icon {
  background: rgba(255, 193, 7, 0.18);
  color: #ffc107;
}

.project-btn strong {
  color: #ffc107;
}

.project-btn small {
  color: #e6e6e6;
}

/* Mobile */
@media (max-width: 576px) {
  .download-btn {
    width: 100%;
  }
}
/* ONLY inside RSDI download section */
.rsdi-download-wrapper {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Buttons */
.rsdi-download-wrapper .rsdi-btn {
  all: unset; /* 🔥 resets inherited/global styles safely */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 50px;
  cursor: pointer;
  background: var(--gradient-dark);
  border: 2px solid transparent;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.rsdi-download-wrapper .rsdi-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Brochure */
.rsdi-download-wrapper .brochure-btn {
  border-color: #dc3545;
}

.rsdi-download-wrapper .brochure-btn i {
  color: #dc3545;
}

/* Project */
.rsdi-download-wrapper .project-btn {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.rsdi-download-wrapper .project-btn i {
  color: var(--accent-gold);
}

/* Icon */
.rsdi-download-wrapper .rsdi-btn i {
  font-size: 16px;
}

/* Mobile */
@media (max-width: 576px) {
  .rsdi-download-wrapper .rsdi-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ============================================
   ACHIEVEMENTS MARQUEE SLIDER - WHITE/TEXTURED THEME
   PREMIUM LIGHT DESIGN - ATTRACTIVE SOCIAL ICONS
   FIXED: Smaller button + smaller social icons
   ============================================ */

.achievements-slider-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Textured Background - Subtle Pattern */
.achievements-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
  background-size: 60px 60px, 100% 100%;
  pointer-events: none;
  opacity: 0.8;
}

/* Additional Subtle Texture */
.achievements-slider-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.01) 0%, transparent 30%),
                    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.01) 0%, transparent 30%),
                    radial-gradient(circle at 90% 20%, rgba(0, 0, 0, 0.01) 0%, transparent 40%);
  pointer-events: none;
}

.achievements-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.achievements-header h2 {
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: var(--font-oswald);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.achievements-header .accent-text {
  color: #4a4a4a;
  font-family: var(--font-baskerville);
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  position: relative;
}

.achievements-header .accent-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
  border-radius: 4px;
}

.achievements-subtitle {
  font-size: 1.25rem;
  color: #666666;
  font-family: var(--font-baskerville);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Marquee Container - Touch Optimized */
.achievements-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  cursor: grab;
  transition: cursor 0.2s ease;
}

.achievements-marquee:active {
  cursor: grabbing;
}

/* FIXED: Proper infinite scroll animation */
@keyframes scrollAchievements {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

.achievements-marquee-content {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
  transition: animation-play-state 0.2s ease;
  animation: scrollAchievements 45s linear infinite;
}

.achievements-marquee-content.playing {
  animation-play-state: running !important;
}

.achievements-marquee-content.paused {
  animation-play-state: paused !important;
}

/* Pause on hover (desktop) */
@media (min-width: 769px) {
  .achievements-marquee:hover .achievements-marquee-content {
    animation-play-state: paused;
  }
}

/* Achievement Card - Premium Light Design */
.achievement-marquee-card {
  width: 380px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.achievement-marquee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

/* Card Image Container */
.achievement-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8f8f8;
}

.achievement-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-marquee-card:hover .achievement-card-image img {
  transform: scale(1.08);
}

/* Category Badge - Light Theme */
.achievement-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #333333;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.achievement-category-badge i {
  color: #555555;
  font-size: 0.8rem;
}

/* Date Badge - Light Theme */
.achievement-date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #666666;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.achievement-date-badge i {
  color: #777777;
  font-size: 0.7rem;
}

/* Card Content - Light Theme */
.achievement-card-content {
  padding: 28px 25px;
  background: #ffffff;
}

.achievement-title {
  font-family: var(--font-oswald);
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.achievement-issuer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777777;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 400;
}

.achievement-issuer i {
  color: #555555;
  font-size: 0.85rem;
}

.achievement-description {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

/* ============================================
   CTA SECTION - SMALLER BUTTON & SOCIAL ICONS
   Everything else remains IDENTICAL
   ============================================ */

.achievement-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* VIEW BUTTON - Smaller size, same style */
.achievement-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.achievement-cta-button:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.achievement-cta-button i {
  font-size: 0.7rem;
  color: #ffffff;
}

.achievement-cta-button:active {
  transform: translateY(0);
}

/* ============================================
   ATTRACTIVE SOCIAL ICONS - SMALLER SIZE
   Perfect circles, same beautiful gradients
   ============================================ */

.achievement-social-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Base Social Icon Style - Smaller & Perfect Circles */
.achievement-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Instagram - Gradient Background */
.achievement-social-icon[title="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border: none;
}

/* LinkedIn - Professional Blue */
.achievement-social-icon[title="LinkedIn"] {
  background: #0077b5;
  color: white;
  border: none;
}

/* Facebook - Classic Blue */
.achievement-social-icon[title="Facebook"] {
  background: #1877f2;
  color: white;
  border: none;
}

/* Hover Effects - Lift and Shine */
.achievement-social-icon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Instagram Hover - Enhanced */
.achievement-social-icon[title="Instagram"]:hover {
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

/* LinkedIn Hover - Enhanced */
.achievement-social-icon[title="LinkedIn"]:hover {
  box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
}

/* Facebook Hover - Enhanced */
.achievement-social-icon[title="Facebook"]:hover {
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

/* Loading State - Light Theme */
.achievements-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.achievements-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 0, 0, 0.03);
  border-top-color: #333333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 25px;
}

.achievements-loading p {
  color: #777777;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Empty State - Light Theme */
.achievements-empty {
  text-align: center;
  padding: 80px 0;
  color: #777777;
}

.achievements-empty i {
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.achievements-empty h3 {
  font-family: var(--font-oswald);
  font-size: 2rem;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 600;
}

.achievements-empty p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  color: #888888;
}

/* ============================================
   RESPONSIVE DESIGN - SMALLER SIZES ON MOBILE
   ============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
  .achievement-marquee-card {
    width: 360px;
  }
  
  .achievement-card-image {
    height: 220px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .achievements-header h2 {
    font-size: 2.8rem;
  }
  
  .achievement-marquee-card {
    width: 340px;
  }
  
  .achievement-card-image {
    height: 200px;
  }
  
  .achievement-title {
    font-size: 1.3rem;
  }
}

/* Tablet Landscape */
@media (max-width: 992px) {
  .achievements-slider-section {
    padding: 80px 0;
  }
  
  .achievements-header h2 {
    font-size: 2.5rem;
  }
  
  .achievements-subtitle {
    font-size: 1.1rem;
    padding: 0 30px;
  }
  
  .achievement-marquee-card {
    width: 320px;
  }
  
  .achievement-card-image {
    height: 190px;
  }
  
  .achievement-card-content {
    padding: 25px 20px;
  }
  
  .achievement-title {
    font-size: 1.2rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .achievements-slider-section {
    padding: 70px 0;
  }
  
  .achievements-header {
    margin-bottom: 40px;
  }
  
  .achievements-header h2 {
    font-size: 2.2rem;
  }
  
  .achievements-subtitle {
    font-size: 1rem;
    padding: 0 25px;
    line-height: 1.5;
  }
  
  .achievements-marquee {
    padding: 20px 0;
    mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 5%,
      black 95%,
      transparent
    );
  }
  
  .achievements-marquee-content {
    gap: 25px;
    animation-duration: 35s;
  }
  
  .achievement-marquee-card {
    width: 300px;
  }
  
  .achievement-card-image {
    height: 180px;
  }
  
  .achievement-category-badge {
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    font-size: 0.7rem;
  }
  
  .achievement-date-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.65rem;
  }
  
  .achievement-card-content {
    padding: 22px 18px;
  }
  
  .achievement-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .achievement-issuer {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .achievement-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  
  .achievement-cta-button {
    padding: 7px 16px;
    font-size: 0.65rem;
    gap: 6px;
  }
  
  .achievement-cta-button i {
    font-size: 0.65rem;
  }
  
  .achievement-social-icons {
    gap: 5px;
  }
  
  .achievement-social-icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 50%;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .achievements-slider-section {
    padding: 60px 0;
  }
  
  .achievements-header h2 {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }
  
  .achievements-subtitle {
    font-size: 0.95rem;
    padding: 0 20px;
  }
  
  .achievements-marquee-content {
    gap: 20px;
    animation-duration: 30s;
  }
  
  .achievement-marquee-card {
    width: 280px;
  }
  
  .achievement-card-image {
    height: 170px;
  }
  
  .achievement-category-badge {
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    font-size: 0.65rem;
  }
  
  .achievement-date-badge {
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    font-size: 0.6rem;
  }
  
  .achievement-card-content {
    padding: 20px 16px;
  }
  
  .achievement-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .achievement-issuer {
    font-size: 0.8rem;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .achievement-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
  }
  
  .achievement-cta {
    padding-top: 16px;
  }
  
  .achievement-cta-button {
    padding: 6px 14px;
    font-size: 0.6rem;
    gap: 5px;
  }
  
  .achievement-cta-button i {
    font-size: 0.6rem;
  }
  
  .achievement-social-icons {
    gap: 4px;
  }
  
  .achievement-social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    border-radius: 50%;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .achievements-slider-section {
    padding: 50px 0;
  }
  
  .achievements-header h2 {
    font-size: 1.7rem;
  }
  
  .achievements-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }
  
  .achievements-marquee {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 3%,
      black 97%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 3%,
      black 97%,
      transparent
    );
  }
  
  .achievements-marquee-content {
    gap: 18px;
    animation-duration: 25s;
  }
  
  .achievement-marquee-card {
    width: 260px;
  }
  
  .achievement-card-image {
    height: 160px;
  }
  
  .achievement-card-content {
    padding: 18px 15px;
  }
  
  .achievement-title {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  
  .achievement-issuer {
    font-size: 0.75rem;
  }
  
  .achievement-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }
  
  .achievement-cta-button {
    padding: 5px 12px;
    font-size: 0.55rem;
    gap: 4px;
  }
  
  .achievement-cta-button i {
    font-size: 0.55rem;
  }
  
  .achievement-social-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    border-radius: 50%;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .achievements-header h2 {
    font-size: 1.5rem;
  }
  
  .achievements-subtitle {
    font-size: 0.85rem;
  }
  
  .achievement-marquee-card {
    width: 240px;
  }
  
  .achievement-card-image {
    height: 150px;
  }
  
  .achievement-card-content {
    padding: 16px 14px;
  }
  
  .achievement-title {
    font-size: 0.9rem;
  }
  
  .achievement-cta-button {
    padding: 4px 10px;
    font-size: 0.5rem;
    gap: 3px;
  }
  
  .achievement-social-icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    border-radius: 50%;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .achievement-marquee-card {
    cursor: default;
  }
  
  .achievement-cta-button {
    padding: 8px 18px;
    min-height: 40px;
    font-size: 0.7rem;
  }
  
  .achievement-social-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
  }
  
  .achievements-marquee-content {
    animation-duration: 35s;
  }
}

/* Print Styles */
@media print {
  .achievements-slider-section {
    background: white;
    border: 1px solid #eee;
  }
  
  .achievements-marquee-content {
    animation: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .achievement-marquee-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ============================================
   CTA SECTION - MUCH SMALLER BUTTON & SOCIAL ICONS
   ============================================ */

.achievement-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* VIEW BUTTON - Significantly smaller */
.achievement-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  line-height: 1;
}

.achievement-cta-button i {
  font-size: 0.6rem;
  color: #ffffff;
}

/* ============================================
   SOCIAL ICONS - PERFECT CIRCLES, SMALLER
   ============================================ */

.achievement-social-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.achievement-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* ============================================
   RESPONSIVE - EVEN SMALLER ON MOBILE
   ============================================ */

/* Tablet Portrait */
@media (max-width: 768px) {
  .achievement-cta-button {
    padding: 5px 12px !important;
    font-size: 0.6rem !important;
    gap: 5px !important;
  }
  
  .achievement-cta-button i {
    font-size: 0.55rem !important;
  }
  
  .achievement-social-icon {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.8rem !important;
    gap: 4px !important;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .achievement-cta {
    padding-top: 16px !important;
  }
  
  .achievement-cta-button {
    padding: 4px 10px !important;
    font-size: 0.55rem !important;
    gap: 4px !important;
  }
  
  .achievement-cta-button i {
    font-size: 0.5rem !important;
  }
  
  .achievement-social-icons {
    gap: 4px !important;
  }
  
  .achievement-social-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.75rem !important;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .achievement-cta-button {
    padding: 3px 8px !important;
    font-size: 0.5rem !important;
    gap: 3px !important;
  }
  
  .achievement-cta-button i {
    font-size: 0.45rem !important;
  }
  
  .achievement-social-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.7rem !important;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .achievement-cta-button {
    padding: 2px 6px !important;
    font-size: 0.45rem !important;
    gap: 2px !important;
  }
  
  .achievement-social-icon {
    width: 20px !important;
    height: 20px !important;
    font-size: 0.65rem !important;
  }
}

/* Touch Device Optimizations - Keep touch targets reasonable */
@media (hover: none) and (pointer: coarse) {
  .achievement-cta-button {
    padding: 6px 14px !important;
    min-height: 36px !important;
    font-size: 0.65rem !important;
  }
  
  .achievement-social-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border-radius: 50% !important;
  }
}
      /* Services Section */
      .services {
        background: var(--gradient-dark);
        color: var(--text-light);
        position: relative;
        overflow: hidden;
      }

      .services-bg-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 25vw;
        font-family: var(--font-oswald);
        font-weight: 900;
        color: rgba(200, 245, 80, 0.03);
        white-space: nowrap;
        z-index: 0;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        pointer-events: none;
        animation: floatText 30s linear infinite;
      }

      @keyframes floatText {
        0% {
          transform: translate(-50%, -50%) translateX(0);
        }
        100% {
          transform: translate(-50%, -50%) translateX(-50%);
        }
      }

      .services::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
          radial-gradient(
            circle at 10% 20%,
            rgba(200, 245, 80, 0.05) 0%,
            transparent 20%
          ),
          radial-gradient(
            circle at 90% 80%,
            rgba(200, 245, 80, 0.05) 0%,
            transparent 20%
          );
      }

      .services-header {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
        z-index: 1;
        opacity: 0;
        transform: translateY(60px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .services-header.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 1;
      }

      .service-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 50px 40px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateY(60px);
      }

      .service-card.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-gold);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
      }

      .service-card:hover::before {
        opacity: 0.1;
      }

      .service-card:hover {
        transform: translateY(-20px);
        border-color: var(--accent-gold);
        box-shadow:
          0 30px 60px rgba(0, 0, 0, 0.3),
          0 0 0 1px var(--accent-gold);
      }

      .service-card.visible:hover {
        transform: translateY(-20px);
      }

      .service-icon {
        font-size: 3rem;
        color: var(--accent-gold);
        margin-bottom: 25px;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(200, 245, 80, 0.1);
        border-radius: 50%;
        margin: 0 auto 25px;
        transition: all 0.3s ease;
      }

      .service-card:hover .service-icon {
        transform: scale(1.1) rotate(10deg);
        background: rgba(200, 245, 80, 0.2);
        box-shadow: 0 10px 30px rgba(200, 245, 80, 0.3);
      }

      .service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: var(--text-light);
        position: relative;
        padding-bottom: 15px;
      }

      .service-card h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: var(--gradient-gold);
        border-radius: 2px;
      }

      .service-card p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.05rem;
        line-height: 1.7;
      }

/* REDESIGNED WHITE VIDEO GALLERY */
.video-showcase {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

/* Textured White Background */
.video-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(58, 95, 11, 0.03) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(200, 245, 80, 0.02) 0%, transparent 25%),
    linear-gradient(45deg, transparent 49.7%, rgba(0, 0, 0, 0.015) 49.8%, transparent 50.2%),
    linear-gradient(-45deg, transparent 49.7%, rgba(0, 0, 0, 0.015) 49.8%, transparent 50.2%);
  background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  z-index: 0;
}

.video-showcase-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.video-showcase-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-showcase-subtitle {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.3rem;
  color: #555;
  line-height: 1.7;
  font-family: var(--font-roboto);
  font-weight: 300;
}

/* Video Player Container */
.video-player-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

/* Main Video Player */
.main-video-player {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-video-player:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(58, 95, 11, 0.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  background: #000;
  overflow: hidden;
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3a5f0b;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-btn:hover {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Video Controls */
.video-player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.video-wrapper:hover .video-player-controls {
  opacity: 1;
}

.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.controls-center {
  flex: 1;
}

.control-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #3a5f0b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: white;
  transform: scale(1.1);
  color: var(--accent-gold);
}

.time-display {
  color: white;
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 80px;
  text-align: center;
}

/* Progress Bar */
.progress-bar-container {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.progress-bar:hover .progress-thumb {
  opacity: 1;
}

/* Volume Slider */
.volume-slider {
  width: 80px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.controls-right:hover .volume-slider {
  opacity: 1;
}

.volume-range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
}

.volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.volume-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Video Info Section (Below Player) */
.video-info {
  padding: 35px;
  background: white;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.video-category,
.video-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #3a5f0b;
}

.video-category i,
.video-duration i {
  font-size: 1rem;
}

.video-title {
  font-family: var(--font-oswald);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.video-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
  font-family: var(--font-roboto);
  font-weight: 300;
}

.video-stats {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.stat i {
  color: #3a5f0b;
}

.video-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tag {
  background: rgba(58, 95, 11, 0.08);
  color: #3a5f0b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(58, 95, 11, 0.1);
}

.tag:hover {
  background: rgba(58, 95, 11, 0.15);
  transform: translateY(-2px);
}

.video-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-oswald);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn i {
  font-size: 1.1rem;
}

.like-btn {
  background: rgba(255, 65, 105, 0.1);
  color: #ff4169;
  border: 1px solid rgba(255, 65, 105, 0.2);
}

.like-btn:hover {
  background: rgba(255, 65, 105, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 65, 105, 0.15);
}

.share-btn {
  background: rgba(58, 95, 11, 0.1);
  color: #3a5f0b;
  border: 1px solid rgba(58, 95, 11, 0.2);
}

.share-btn:hover {
  background: rgba(58, 95, 11, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58, 95, 11, 0.15);
}

.instagram-btn {
  background: linear-gradient(45deg, #E1306C, #C13584);
  color: white;
  border: none;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

/* Video Thumbnails */
.video-thumbnails {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  align-self: start;
}

.thumbnails-title {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thumbnails-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thumbnail-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.thumbnail-item:hover {
  background: rgba(58, 95, 11, 0.03);
  border-color: rgba(58, 95, 11, 0.1);
  transform: translateX(5px);
}

.thumbnail-item.active {
  background: rgba(58, 95, 11, 0.08);
  border-color: rgba(58, 95, 11, 0.2);
  position: relative;
}

.thumbnail-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-gold);
  border-radius: 0 2px 2px 0;
}

.thumbnail-image {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-image img {
  transform: scale(1.1);
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
  opacity: 1;
}

.thumb-duration {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

.thumbnail-info {
  flex: 1;
}

.thumbnail-category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #3a5f0b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.thumbnail-info h5 {
  font-family: var(--font-oswald);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.thumbnail-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .video-player-container {
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }
  
  .video-wrapper {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .video-player-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 700px;
  }
  
  .video-wrapper {
    height: 400px;
  }
  
  .video-thumbnails {
    width: 100%;
  }
  
  .thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .thumbnail-item {
    flex-direction: column;
    padding: 20px;
  }
  
  .thumbnail-image {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .video-showcase {
    padding: 70px 0;
  }
  
  .video-player-container {
    gap: 30px;
  }
  
  .video-wrapper {
    height: 350px;
  }
  
  .video-info {
    padding: 25px;
  }
  
  .video-title {
    font-size: 1.8rem;
  }
  
  .video-description {
    font-size: 1.05rem;
  }
  
  .thumbnails-grid {
    grid-template-columns: 1fr;
  }
  
  .video-actions {
    flex-wrap: wrap;
  }
  
  .action-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .video-showcase-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .video-wrapper {
    height: 300px;
  }
  
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .video-info {
    padding: 20px;
  }
  
  .video-title {
    font-size: 1.6rem;
  }
  
  .video-description {
    font-size: 1rem;
  }
  
  .video-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .video-actions {
    flex-direction: column;
  }
  
  .action-btn {
    width: 100%;
  }
  
  .video-thumbnails {
    padding: 20px;
  }
  
  .thumbnail-image {
    height: 100px;
  }
}

/* Fullscreen Styles */
.video-wrapper:fullscreen {
  width: 100%;
  height: 100%;
  background: #000;
}

.video-wrapper:fullscreen .main-video {
  object-fit: contain;
}

.video-wrapper:fullscreen .video-player-controls {
  bottom: 20px;
  left: 20px;
  right: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 20px;
}
.youtube-btn {
  background: #ff0000;
  color: #fff;
}

.youtube-btn:hover {
  background: #e60000;
}
/* Hide the small play/pause button in controls on mobile */
@media (max-width: 768px) {
  .controls-left .play-pause-btn {
    display: none;
  }
  
  /* Make the big play button more visible on mobile */
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  /* Ensure the overlay is always visible when video is paused on mobile */
  .video-wrapper:not(.playing) .video-overlay {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* UPDATED Testimonials Section - COMPLETE FIXED */
.testimonials {
    background: var(--gradient-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* TEXTURED Background with YOUR SVG pattern */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.08'%3E%3Crect x='15' y='20' width='20' height='60' fill='%23ffffff'/%3E%3Crect x='40' y='10' width='20' height='80' fill='%23ffffff' opacity='0.7'/%3E%3Crect x='65' y='30' width='20' height='50' fill='%23ffffff' opacity='0.5'/%3E%3Crect x='90' y='40' width='20' height='40' fill='%23ffffff' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(circle at 10% 20%, rgba(200, 245, 80, 0.02) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(58, 95, 11, 0.02) 0%, transparent 25%);
    background-size: 120px 120px, 100% 100%, 100% 100%;
    background-position: 0 0, 0 0, 0 0;
    z-index: 0;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(17, 17, 18, 0.8);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(200, 245, 80, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
}

.google-rating-stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-score {
    font-family: var(--font-oswald);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.rating-text {
    font-family: var(--font-oswald);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    opacity: 0.9;
}

/* FIXED: Simple Carousel - NO OVERLAPPING */
.reviews-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.carousel-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(17, 17, 18, 0.9);
    border: 1px solid rgba(200, 245, 80, 0.15);
    position: relative;
}

/* FIXED: Carousel Slides - NO FLEX WRAP */
.carousel-slides {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s ease-out;
    height: 400px;
}

/* FIXED: Each slide takes full width */
.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    user-select: none;
    flex-basis: 100%;
}

/* FIXED: Simple image - centers and scales */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    display: block;
}

/* Enhanced Touch Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(17, 17, 18, 0.9);
    border: 1px solid rgba(200, 245, 80, 0.3);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
    background: var(--gradient-gold);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Touch-friendly Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-indicator.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* CTA Button */
.view-all-reviews {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.view-all-reviews .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: 0.9rem;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: var(--font-oswald);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
}

.view-all-reviews .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 245, 80, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-slides {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .carousel-slides {
        height: 340px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .carousel-slides {
        height: 300px;
    }
    
    .google-rating-badge {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .google-rating-stars {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    
    .rating-score {
        font-size: 1.3rem;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .carousel-slides {
        height: 250px;
    }
    
    .google-rating-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .view-all-reviews .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel-nav.prev {
        left: -15px;
    }
    
    .carousel-nav.next {
        right: -15px;
    }
    
    @media (max-width: 400px) {
        .carousel-nav {
            display: none;
        }
    }
}

@media (max-width: 480px) {
    .carousel-slides {
        height: 220px;
    }
    
    .carousel-container {
        border-radius: 10px;
    }
    
    .carousel-slide img {
        border-radius: 6px;
    }
}
/* CTA Section - Updated */
.cta {
  position: relative;
  padding: 150px 0;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

/* Background image with overlay */
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/img/Transform.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
}

/* Dark overlay for better text readability */
.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 18, 0.9),
    rgba(26, 31, 26, 0.9)
  );
  z-index: -1;
}

/* Gold accent effects */
.cta .accent-text {
  color: var(--accent-gold);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Add this to your existing button styles */
.btn i.fab.fa-whatsapp {
  font-size: 1.2rem;
}

      /* REDESIGNED Footer */
      footer {
        background: var(--gradient-dark);
        color: var(--text-light);
        padding: 100px 0 40px;
        position: relative;
        border-top: 1px solid rgba(200, 245, 80, 0.1);
      }

      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(
          circle at 20% 80%,
          rgba(200, 245, 80, 0.05) 0%,
          transparent 40%
        );
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 60px;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
      }

      .footer-column {
        opacity: 0;
        transform: translateY(40px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .footer-column.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .footer-column h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
        color: var(--accent-gold);
        position: relative;
        padding-bottom: 15px;
        font-family: var(--font-oswald);
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }

      .footer-column h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--gradient-gold);
      }

      .footer-column p {
        margin-bottom: 20px;
        opacity: 0.9;
        color: var(--text-light);
        font-size: 1.05rem;
        line-height: 1.7;
      }

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

      .footer-links li {
        margin-bottom: 15px;
      }

      .footer-links a {
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        padding: 5px 0;
        position: relative;
        padding-left: 25px;
        font-family: var(--font-roboto);
        font-size: 1rem;
      }

      .footer-links a::before {
        content: "→";
        position: absolute;
        left: 0;
        color: var(--accent-gold);
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
      }

      .footer-links a:hover {
        color: var(--accent-gold);
        transform: translateX(10px);
      }

      .footer-links a:hover::before {
        opacity: 1;
        transform: translateX(0);
      }

      .social-links {
        display: flex;
        gap: 20px;
        margin-top: 30px;
      }

      .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.2rem;
      }

      .social-links a:hover {
        background: var(--gradient-gold);
        color: var(--text-dark);
        transform: translateY(-10px) rotate(10deg);
        box-shadow: 0 15px 30px rgba(200, 245, 80, 0.3);
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        transition: all 0.3s ease;
      }

      .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(10px);
      }

      .contact-item i {
        color: var(--accent-gold);
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(200, 245, 80, 0.1);
        border-radius: 8px;
      }

      .contact-item div {
        flex: 1;
      }

      .contact-item strong {
        display: block;
        font-family: var(--font-oswald);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent-gold);
        margin-bottom: 5px;
      }

      .copyright {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        opacity: 0.7;
        color: var(--text-light);
        position: relative;
        z-index: 1;
      }

      .copyright p {
        font-family: var(--font-baskerville);
        font-style: italic;
        font-size: 1.1rem;
        margin-bottom: 10px;
      }

      /* Responsive Styles */
      @media (max-width: 1200px) {
        .section-title {
          font-size: 3rem;
        }

        .hero-title {
          font-size: 3.5rem;
        }

        .quote-text {
          font-size: 2.5rem;
        }

        .services-bg-text {
          font-size: 20vw;
        }
      }

      @media (max-width: 992px) {
        .section-title {
          font-size: 2.8rem;
        }

        .hero-title {
          font-size: 3rem;
        }

        .hero-content,
        .about-content,
        .visual-item {
          grid-template-columns: 1fr;
          flex-direction: column;
          gap: 60px;
        }

        .visual-item:nth-child(even) {
          flex-direction: column;
        }

        .quote-text {
          font-size: 2.2rem;
        }

        .quote-icon::before,
        .quote-icon::after {
          width: 50px;
        }

        .header-actions-desktop {
          display: none;
        }

        .services-bg-text {
          font-size: 15vw;
        }

        .visual-image img {
          height: 400px;
        }

        .impact-stories {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .hero {
          padding-top: 120px;
        }

        .hero-title {
          font-size: 2.5rem;
        }

        .hero-subtitle {
          font-size: 1.4rem;
        }

        .hero-stats {
          gap: 40px;
        }

        .hero-stat-number {
          font-size: 2.5rem;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: stretch;
        }

        .section-title {
          font-size: 2.5rem;
        }

        .quote-text {
          font-size: 1.8rem;
          padding: 0 10px;
        }

        .quote-icon::before,
        .quote-icon::after {
          width: 30px;
        }

        .cta h2 {
          font-size: 3rem;
        }

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

        .services-bg-text {
          font-size: 12vw;
        }

        .training-highlights {
          grid-template-columns: 1fr;
        }

        .visual-image img {
          height: 300px;
        }

        .footer-content {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }

      @media (max-width: 576px) {
        .section-title {
          font-size: 2.2rem;
        }

        .hero-title {
          font-size: 2.2rem;
        }

        .hero-subtitle {
          font-size: 1.2rem;
        }

        .hero-stats {
          flex-direction: column;
          gap: 30px;
        }

        .cta h2 {
          font-size: 2.5rem;
        }

        .preloader-logo {
          font-size: 3.5rem;
        }

        .quote-text {
          font-size: 1.6rem;
        }

        .quote-icon::before,
        .quote-icon::after {
          display: none;
        }

        .quote-container {
          padding: 40px 20px;
        }

        .visual-image img,
        .about-image img {
          height: 300px;
        }

        .impact-quote {
          font-size: 1.5rem;
          padding: 0 10px;
        }

        .impact-quote::before,
        .impact-quote::after {
          font-size: 3rem;
        }
      }
      /* PROFESSIONAL DIGITAL PARTNER SECTION */
.digital-partner-section {
  margin: 40px 0 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(200, 245, 80, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.digital-partner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--accent-gold), 
    transparent);
}

.digital-partner-divider {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.digital-partner-divider span {
  display: inline-block;
  padding: 0 20px;
  background: var(--gradient-dark);
  font-family: var(--font-oswald);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  position: relative;
  z-index: 2;
}

.digital-partner-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(200, 245, 80, 0.3), 
    transparent);
  z-index: 1;
}

.digital-partner-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(200, 245, 80, 0.15);
}

.partner-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77, 171, 247, 0.2), rgba(77, 171, 247, 0.1));
  border-radius: 10px;
  font-size: 1.5rem;
  color: #4dabf7;
  border: 1px solid rgba(77, 171, 247, 0.3);
}

.partner-info h4 {
  font-family: var(--font-oswald);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.partner-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Responsive Design for Digital Partner Section */
@media (max-width: 768px) {
  .digital-partner-section {
    padding: 20px;
    margin: 30px 0 25px;
  }
  
  .partner-logo-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .digital-partner-divider span {
    font-size: 0.85rem;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .digital-partner-section {
    padding: 15px;
  }
  
  .partner-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .partner-info h4 {
    font-size: 1.1rem;
  }
}