    :root {
      --primary: #ff7a3d;
      --primary-dark: #e56a34;
      --secondary: #2c3e50;
      --accent: #ff5252;
      --light: #f8f9fa;
      --dark: #343a40;
      --success: #28a745;
      --gradient: linear-gradient(135deg, #ff7a3d 0%, #ff5252 100%);
      --gradient-light: linear-gradient(135deg, #ff9a3d 0%, #ff7a7a 100%);
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      overflow-x: hidden;
      background: #f8f9fa;
    }

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

/* ===== ENHANCED NAVIGATION BAR ===== */
.navbar {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  background-color: white !important;
}

.navbar-brand {
  padding: 0;
  margin-right: 2rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 0.1rem;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.brand-email {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 400;
}

.navbar-nav {
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--secondary) !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(255, 122, 61, 0.1);
}

.navbar-nav .nav-link::after {
  display: none;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: rgba(255, 122, 61, 0.1);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  margin-left: 1rem;
}

.nav-btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Mobile Navigation Styles */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav {
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
  }
  
  .nav-actions {
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .brand-wrapper {
    gap: 0.75rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .brand-subtitle {
    font-size: 0.8rem;
  }
  
  .brand-email {
    font-size: 0.7rem;
  }
  
  .nav-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .brand-email {
    display: none;
  }
  
  .navbar-brand {
    margin-right: 1rem;
  }
}


    /* ===== PROFESSIONAL HERO SECTION ===== */
    .hero-section {
      background: linear-gradient(135deg, #0f1a25 0%, #1a2a3a 50%, #2c3e50 100%);
      color: white;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0;
    }

    /* Enhanced Background Effects */
    .enhanced-bg-effects {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    /* Particle Network */
    .particle-network {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--primary);
      border-radius: 50%;
      animation: particleFloat 8s ease-in-out infinite;
    }

    .particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
    .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
    .particle:nth-child(3) { top: 40%; left: 10%; animation-delay: 2s; }
    .particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 3s; }
    .particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 4s; }
    .particle:nth-child(6) { top: 70%; left: 20%; animation-delay: 5s; }

    @keyframes particleFloat {
      0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.3;
      }
      50% { 
        transform: translateY(-20px) scale(1.5);
        opacity: 0.8;
      }
    }

    /* Geometric Patterns */
    .geometric-patterns {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0.1;
    }

    .pattern-1 {
      position: absolute;
      width: 200px;
      height: 200px;
      border: 2px solid var(--primary);
      top: 10%;
      right: 10%;
      animation: patternRotate 20s linear infinite;
    }

    .pattern-2 {
      position: absolute;
      width: 150px;
      height: 150px;
      border: 1px solid var(--primary);
      bottom: 20%;
      left: 5%;
      animation: patternRotateReverse 25s linear infinite;
    }

    @keyframes patternRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes patternRotateReverse {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(-360deg); }
    }

    /* Enhanced Book Background */
    .book-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 61, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 82, 82, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(255, 122, 61, 0.05) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 122, 61, 0.05) 50%, transparent 52%);
      background-size: cover, cover, 100px 100px, 100px 100px;
      opacity: 0.6;
      z-index: 1;
      animation: backgroundShift 15s ease-in-out infinite;
    }

    @keyframes backgroundShift {
      0%, 100% { background-position: 0% 0%, 0% 0%, 0 0, 0 0; }
      50% { background-position: 2% 2%, -2% -2%, 50px 50px, 50px 50px; }
    }

    /* Floating Publishing Elements */
    .publishing-elements {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .floating-element {
      position: absolute;
      background: rgba(255, 122, 61, 0.1);
      border: 1px solid rgba(255, 122, 61, 0.3);
      border-radius: 8px;
      animation: floatElement 20s ease-in-out infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 122, 61, 0.5);
      font-size: 1.5rem;
    }

    .element-1 {
      width: 80px;
      height: 100px;
      top: 15%;
      left: 10%;
      animation-delay: 0s;
    }

    .element-2 {
      width: 60px;
      height: 80px;
      top: 65%;
      left: 85%;
      animation-delay: 4s;
    }

    .element-3 {
      width: 70px;
      height: 90px;
      top: 80%;
      left: 15%;
      animation-delay: 8s;
    }

    .element-4 {
      width: 50px;
      height: 70px;
      top: 25%;
      left: 90%;
      animation-delay: 12s;
    }

    @keyframes floatElement {
      0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
      }
      25% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
        opacity: 0.6;
      }
      50% {
        transform: translateY(-15px) rotate(-5deg) scale(0.9);
        opacity: 0.4;
      }
      75% {
        transform: translateY(-25px) rotate(3deg) scale(1.05);
        opacity: 0.7;
      }
    }
  /* Enhanced Ad Styles */
  .professional-ad-container {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: adSlideIn 0.6s ease-out;
  }

  .ad-banner:hover,
  .ad-sidebar:hover,
  .ad-inline:hover,
  .ad-video:hover,
  .ad-social:hover,
  .ad-email:hover {
    transform: translateY(-4px) !important;
  }

  /* YouTube Sticky Ad Responsive */
  @media (max-width: 768px) {
    .youtube-sticky-container {
      width: 280px !important;
      right: 10px !important;
      bottom: 10px !important;
    }
  }

  @media (max-width: 480px) {
    .youtube-sticky-container {
      width: calc(100vw - 20px) !important;
      right: 10px !important;
      left: 10px !important;
    }
  }

  /* Sidebar Ads Container */
  .sidebar-ads-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .sidebar-ads-container .ad-sidebar {
    margin: 0 !important;
  }

  /* Responsive Ads */
  @media (max-width: 768px) {
    .ad-inline-content {
      flex-direction: column !important;
      text-align: center !important;
      gap: 20px !important;
    }

    .ad-banner .ad-content {
      flex-direction: column !important;
      gap: 15px !important;
      text-align: center !important;
    }

    .ad-banner button,
    .ad-inline button {
      margin-left: 0 !important;
      margin-top: 10px !important;
      width: 100% !important;
    }

    .email-form {
      flex-direction: column !important;
    }

    .email-form input,
    .email-form button {
      width: 100% !important;
      margin: 5px 0 !important;
    }

    .social-actions {
      flex-direction: column !important;
      gap: 10px !important;
    }

    .social-actions .learn-btn {
      margin-right: 0 !important;
      margin-bottom: 10px !important;
    }
  }

  /* Animations */
  @keyframes adSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes popupIn {
    from {
      opacity: 0;
      transform: scale(0.8) translateY(-20px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  /* Focus styles for accessibility */
  .ad-cta-btn:focus,
  .close-popup:focus,
  .email-submit-btn:focus,
  .learn-btn:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
  }

  /* High contrast mode support */
  @media (prefers-contrast: high) {
    .professional-ad-container {
      border: 2px solid currentColor !important;
    }
  }

  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    .professional-ad-container {
      animation: none !important;
      transition: none !important;
    }

    .ad-banner:hover,
    .ad-sidebar:hover,
    .ad-inline:hover {
      transform: none !important;
    }
  }
  /* Leaderboard Ad Styles */
.ad-leaderboard {
  transition: all 0.3s ease;
}

.ad-leaderboard.mobile {
  max-width: 100%;
}

.ad-leaderboard.desktop {
  max-width: 100%;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .ad-leaderboard.desktop {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .ad-leaderboard.mobile {
    display: none !important;
  }
}

/* Ensure proper positioning */
.professional-ad-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Focus styles for accessibility */
.ad-leaderboard:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.ad-leaderboard button:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
    /* Enhanced Global Network */
    .global-network {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .network-node {
      position: absolute;
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      animation: nodePulse 4s ease-in-out infinite;
    }

    .node-1 { top: 25%; left: 70%; animation-delay: 0s; }
    .node-2 { top: 40%; left: 85%; animation-delay: 0.5s; }
    .node-3 { top: 55%; left: 75%; animation-delay: 1s; }
    .node-4 { top: 35%; left: 60%; animation-delay: 1.5s; }
    .node-5 { top: 50%; left: 65%; animation-delay: 2s; }

    @keyframes nodePulse {
      0%, 100% { 
        transform: scale(1); 
        opacity: 0.6;
        box-shadow: 0 0 0 var(--primary);
      }
      50% { 
        transform: scale(2); 
        opacity: 1;
        box-shadow: 0 0 20px var(--primary);
      }
    }

    /* Connection Waves */
    .connection-wave {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .wave {
      position: absolute;
      width: 300px;
      height: 300px;
      border: 2px solid rgba(255, 122, 61, 0.2);
      border-radius: 50%;
      top: 50%;
      left: 70%;
      transform: translate(-50%, -50%);
      animation: waveExpand 6s linear infinite;
    }

    .wave-2 { animation-delay: 2s; }
    .wave-3 { animation-delay: 4s; }

    @keyframes waveExpand {
      0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
      }
      100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
      }
    }

    /* Bottom Curve */
    .bottom-curve-container {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 120px;
      z-index: 2;
    }

    .bottom-curve-divider {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
      transform: scaleX(1.5);
    }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 3;
      padding: 100px 0 200px;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(255, 122, 61, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 122, 61, 0.4);
      border-radius: 50px;
      padding: 12px 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 25px;
      letter-spacing: 1.5px;
      color: #ff9a3d;
      animation: badgeGlow 2s ease-in-out infinite alternate;
    }

    @keyframes badgeGlow {
      0% { box-shadow: 0 0 10px rgba(255, 122, 61, 0.3); }
      100% { box-shadow: 0 0 20px rgba(255, 122, 61, 0.6); }
    }

    .hero-title {
      font-size: 3.8rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(to right, #ffffff, #ff9a3d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
      font-size: 1.3rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      max-width: 600px;
      opacity: 0.9;
      font-weight: 400;
    }

    /* Stunning Star Buttons */
    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .star-button {
      position: relative;
      padding: 16px 40px;
      background: #ff7a3d;
      font-size: 17px;
      font-weight: 600;
      color: #181818;
      border: 3px solid #ff7a3d;
      border-radius: 8px;
      box-shadow: 0 0 0 #ff7a3d8c;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      overflow: hidden;
    }

    .star-button:hover {
      background: transparent;
      color: #ff7a3d;
      box-shadow: 0 0 25px #ff7a3d8c;
      text-decoration: none;
    }

    /* Star elements */
    .star-1 {
      position: absolute;
      top: 20%;
      left: 20%;
      width: 25px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
    }

    .star-2 {
      position: absolute;
      top: 45%;
      left: 45%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-3 {
      position: absolute;
      top: 40%;
      left: 40%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-4 {
      position: absolute;
      top: 20%;
      left: 40%;
      width: 8px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-5 {
      position: absolute;
      top: 25%;
      left: 45%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
    }

    .star-6 {
      position: absolute;
      top: 5%;
      left: 50%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 0 #fffdef);
      z-index: -5;
      transition: all 0.8s ease;
    }

    .star-button:hover .star-1 {
      position: absolute;
      top: -80%;
      left: -30%;
      width: 25px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    .star-button:hover .star-2 {
      position: absolute;
      top: -25%;
      left: 10%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    .star-button:hover .star-3 {
      position: absolute;
      top: 55%;
      left: 25%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    .star-button:hover .star-4 {
      position: absolute;
      top: 30%;
      left: 80%;
      width: 8px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    .star-button:hover .star-5 {
      position: absolute;
      top: 25%;
      left: 115%;
      width: 15px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    .star-button:hover .star-6 {
      position: absolute;
      top: 5%;
      left: 60%;
      width: 5px;
      height: auto;
      filter: drop-shadow(0 0 10px #fffdef);
      z-index: 2;
    }

    .fil0 {
      fill: #fffdef;
    }

    /* Outline Star Button */
    .star-button-outline {
      position: relative;
      padding: 16px 40px;
      background: transparent;
      font-size: 17px;
      font-weight: 600;
      color: #ff7a3d;
      border: 3px solid #ff7a3d;
      border-radius: 8px;
      box-shadow: 0 0 0 #ff7a3d8c;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      overflow: hidden;
    }

    .star-button-outline:hover {
      background: #ff7a3d;
      color: #181818;
      box-shadow: 0 0 25px #ff7a3d8c;
      text-decoration: none;
    }

    /* Professional Trust badges */
    .trust-badges {
      margin-top: 2rem;
    }

    .trust-badges .d-flex {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .trust-badge {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 15px 25px;
      font-weight: 600;
      font-size: 0.95rem;
      color: white;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: trustBadgeFloat 6s ease-in-out infinite;
    }

    .trust-badge:nth-child(1) { animation-delay: 0s; }
    .trust-badge:nth-child(2) { animation-delay: 2s; }
    .trust-badge:nth-child(3) { animation-delay: 4s; }

    @keyframes trustBadgeFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .trust-badge:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .trust-badge i {
      font-size: 1.2rem;
      color: #ff9a3d;
    }

    /* Premium Contact Form - ORIGINAL CONTENT */
    .contact-form-container {
      position: relative;
      z-index: 10;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 15px;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
      padding: 45px 35px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      position: relative;
      overflow: hidden;
      animation: formGlow 3s ease-in-out infinite alternate;
    }

    @keyframes formGlow {
      0% { box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3); }
      100% { box-shadow: 0 25px 80px rgba(255, 122, 61, 0.2); }
    }

    .contact-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--gradient);
    }

    .form-title {
      color: var(--secondary);
      font-weight: 800;
      font-size: 1.7rem;
      margin-bottom: 30px;
      position: relative;
      text-align: center;
    }

    .form-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--gradient);
      border-radius: 2px;
    }

    .form-group-icon {
      position: relative;
      margin-bottom: 25px;
    }

    .form-icon {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary);
      z-index: 10;
      font-size: 1.2rem;
    }

    .form-control-lg, .form-select-lg {
      padding-left: 55px !important;
      padding-right: 20px;
      height: 60px;
      border-radius: 10px;
      border: 2px solid #f0f0f0;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.9);
    }

    .form-control-lg:focus, .form-select-lg:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(255, 122, 61, 0.25);
      background: white;
    }

    .form-submit-btn {
      position: relative;
      padding: 18px;
      background: #ff7a3d;
      font-size: 1.2rem;
      font-weight: 700;
      color: #181818;
      border: 3px solid #ff7a3d;
      border-radius: 10px;
      box-shadow: 0 0 0 #ff7a3d8c;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      width: 100%;
      margin-top: 10px;
    }

    .form-submit-btn:hover {
      background: transparent;
      color: #ff7a3d;
      box-shadow: 0 0 25px #ff7a3d8c;
    }

    /* Form Status Messages */
    .form-success, .form-error, .form-loading {
      border-radius: 10px;
      padding: 20px;
      margin-top: 25px;
      text-align: center;
      font-weight: 600;
      display: none;
      backdrop-filter: blur(10px);
    }

    .form-success {
      background: rgba(212, 255, 212, 0.9);
      border: 2px solid #28a745;
      color: #155724;
    }

    .form-error {
      background: rgba(255, 212, 212, 0.9);
      border: 2px solid #dc3545;
      color: #721c24;
    }

    .form-loading {
      background: rgba(212, 234, 255, 0.9);
      border: 2px solid #007bff;
      color: #004085;
    }

    /* Animation classes */
    .fade-in {
      opacity: 0;
      animation: fadeIn 1s ease-in 0.3s forwards;
    }

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

    .slide-up {
      opacity: 0;
      transform: translateY(40px);
      animation: slideUp 1s ease-out 0.5s forwards;
    }

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

    /* Responsive design */
    @media (max-width: 1199.98px) {
      .hero-title {
        font-size: 3.2rem;
      }
    }

    @media (max-width: 991.98px) {
      .hero-section {
        min-height: auto;
      }
      
      .hero-title {
        font-size: 2.8rem;
        text-align: center;
      }
      
      .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }
      
      .hero-buttons {
        justify-content: center;
      }
      
      .trust-badges .d-flex {
        justify-content: center;
      }
      
      .contact-form-container {
        margin-top: 40px;
      }
      
      .hero-content {
        padding: 80px 0 150px;
      }
    }

    @media (max-width: 767.98px) {
      .hero-section {
        padding: 0;
      }
      
      .hero-title {
        font-size: 2.4rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }
      
      .hero-buttons .star-button,
      .hero-buttons .star-button-outline {
        width: 100%;
        max-width: 300px;
      }
      
      .trust-badges .d-flex {
        gap: 1rem;
      }
      
      .trust-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
      }
      
      .contact-form {
        padding: 35px 25px;
      }
      
      .hero-content {
        padding: 60px 0 120px;
      }
      
      .bottom-curve-container {
        height: 80px;
      }
    }

    @media (max-width: 575.98px) {
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-subtitle {
        font-size: 1rem;
      }
      
      .hero-content {
        padding: 50px 0 100px;
      }
      
      .contact-form {
        padding: 30px 20px;
      }
      
      .form-title {
        font-size: 1.5rem;
      }
    }
/* ===== DISTRIBUTION SECTION ===== */
.distribution-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.distribution-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='300' viewBox='0 0 400 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.node %7B fill: %23ff7a3d; opacity: 0.3; transition: all 0.3s ease; %7D .connection %7B stroke: %23ff7a3d; stroke-width: 1; opacity: 0.15; stroke-dasharray: 3,3; %7D .hub %7B fill: %23ff7a3d; opacity: 0.4; %7D %3C/style%3E%3C/defs%3E%3Cg%3E%3C!-- Major Hubs --%3E%3Ccircle class='hub' cx='200' cy='150' r='8'/%3E%3Ccircle class='hub' cx='80' cy='80' r='6'/%3E%3Ccircle class='hub' cx='320' cy='80' r='6'/%3E%3Ccircle class='hub' cx='80' cy='220' r='6'/%3E%3Ccircle class='hub' cx='320' cy='220' r='6'/%3E%3C!-- Network Nodes --%3E%3Ccircle class='node' cx='50' cy='50' r='3'/%3E%3Ccircle class='node' cx='120' cy='40' r='3'/%3E%3Ccircle class='node' cx='40' cy='120' r='3'/%3E%3Ccircle class='node' cx='100' cy='110' r='3'/%3E%3Ccircle class='node' cx='280' cy='40' r='3'/%3E%3Ccircle class='node' cx='350' cy='50' r='3'/%3E%3Ccircle class='node' cx='360' cy='120' r='3'/%3E%3Ccircle class='node' cx='300' cy='110' r='3'/%3E%3Ccircle class='node' cx='50' cy='250' r='3'/%3E%3Ccircle class='node' cx='120' cy='260' r='3'/%3E%3Ccircle class='node' cx='40' cy='180' r='3'/%3E%3Ccircle class='node' cx='100' cy='190' r='3'/%3E%3Ccircle class='node' cx='280' cy='260' r='3'/%3E%3Ccircle class='node' cx='350' cy='250' r='3'/%3E%3Ccircle class='node' cx='360' cy='180' r='3'/%3E%3Ccircle class='node' cx='300' cy='190' r='3'/%3E%3Ccircle class='node' cx='150' cy='30' r='3'/%3E%3Ccircle class='node' cx='250' cy='30' r='3'/%3E%3Ccircle class='node' cx='150' cy='270' r='3'/%3E%3Ccircle class='node' cx='250' cy='270' r='3'/%3E%3Ccircle class='node' cx='180' cy='80' r='3'/%3E%3Ccircle class='node' cx='220' cy='80' r='3'/%3E%3Ccircle class='node' cx='180' cy='220' r='3'/%3E%3Ccircle class='node' cx='220' cy='220' r='3'/%3E%3C!-- Network Connections --%3E%3Cline class='connection' x1='200' y1='150' x2='80' y2='80'/%3E%3Cline class='connection' x1='200' y1='150' x2='320' y2='80'/%3E%3Cline class='connection' x1='200' y1='150' x2='80' y2='220'/%3E%3Cline class='connection' x1='200' y1='150' x2='320' y2='220'/%3E%3Cline class='connection' x1='80' y1='80' x2='50' y2='50'/%3E%3Cline class='connection' x1='80' y1='80' x2='120' y2='40'/%3E%3Cline class='connection' x1='80' y1='80' x2='40' y2='120'/%3E%3Cline class='connection' x1='80' y1='80' x2='100' y2='110'/%3E%3Cline class='connection' x1='320' y1='80' x2='280' y2='40'/%3E%3Cline class='connection' x1='320' y1='80' x2='350' y2='50'/%3E%3Cline class='connection' x1='320' y1='80' x2='360' y2='120'/%3E%3Cline class='connection' x1='320' y1='80' x2='300' y2='110'/%3E%3Cline class='connection' x1='80' y1='220' x2='50' y2='250'/%3E%3Cline class='connection' x1='80' y1='220' x2='120' y2='260'/%3E%3Cline class='connection' x1='80' y1='220' x2='40' y2='180'/%3E%3Cline class='connection' x1='80' y1='220' x2='100' y2='190'/%3E%3Cline class='connection' x1='320' y1='220' x2='280' y2='260'/%3E%3Cline class='connection' x1='320' y1='220' x2='350' y2='250'/%3E%3Cline class='connection' x1='320' y1='220' x2='360' y2='180'/%3E%3Cline class='connection' x1='320' y1='220' x2='300' y2='190'/%3E%3Cline class='connection' x1='200' y1='150' x2='150' y2='30'/%3E%3Cline class='connection' x1='200' y1='150' x2='250' y2='30'/%3E%3Cline class='connection' x1='200' y1='150' x2='150' y2='270'/%3E%3Cline class='connection' x1='200' y1='150' x2='250' y2='270'/%3E%3Cline class='connection' x1='200' y1='150' x2='180' y2='80'/%3E%3Cline class='connection' x1='200' y1='150' x2='220' y2='80'/%3E%3Cline class='connection' x1='200' y1='150' x2='180' y2='220'/%3E%3Cline class='connection' x1='200' y1='150' x2='220' y2='220'/%3E%3C!-- Inter-hub connections --%3E%3Cline class='connection' x1='80' y1='80' x2='320' y2='80'/%3E%3Cline class='connection' x1='80' y1='220' x2='320' y2='220'/%3E%3Cline class='connection' x1='80' y1='80' x2='80' y2='220'/%3E%3Cline class='connection' x1='320' y1='80' x2='320' y2='220'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
  animation: pulseTopology 8s ease-in-out infinite;
}

/* Enhanced Animations */
@keyframes pulseTopology {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
  75% {
    opacity: 0.4;
  }
}

/* Node Pulsing Animation */
.distribution-bg-pattern .node {
  animation: nodePulse 4s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

/* Hub Pulsing Animation */
.distribution-bg-pattern .hub {
  animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Connection Flow Animation */
.distribution-bg-pattern .connection {
  animation: connectionFlow 6s linear infinite;
  stroke-dasharray: 5, 5;
}

@keyframes connectionFlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.1;
  }
  50% {
    opacity: 0.25;
  }
  100% {
    stroke-dashoffset: -20;
    opacity: 0.1;
  }
}

/* Staggered animations for different node groups */
.distribution-bg-pattern .node:nth-child(6) { animation-delay: 0.1s; } /* 50,50 */
.distribution-bg-pattern .node:nth-child(7) { animation-delay: 0.2s; } /* 120,40 */
.distribution-bg-pattern .node:nth-child(8) { animation-delay: 0.3s; } /* 40,120 */
.distribution-bg-pattern .node:nth-child(9) { animation-delay: 0.4s; } /* 100,110 */
.distribution-bg-pattern .node:nth-child(10) { animation-delay: 0.5s; } /* 280,40 */
.distribution-bg-pattern .node:nth-child(11) { animation-delay: 0.6s; } /* 350,50 */
.distribution-bg-pattern .node:nth-child(12) { animation-delay: 0.7s; } /* 360,120 */
.distribution-bg-pattern .node:nth-child(13) { animation-delay: 0.8s; } /* 300,110 */

/* Staggered hub animations */
.distribution-bg-pattern .hub:nth-child(1) { animation-delay: 0s; } /* Central hub */
.distribution-bg-pattern .hub:nth-child(2) { animation-delay: 0.5s; } /* Top-left */
.distribution-bg-pattern .hub:nth-child(3) { animation-delay: 1s; } /* Top-right */
.distribution-bg-pattern .hub:nth-child(4) { animation-delay: 1.5s; } /* Bottom-left */
.distribution-bg-pattern .hub:nth-child(5) { animation-delay: 2s; } /* Bottom-right */

/* Data packet animation moving through connections */
.distribution-bg-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='300' viewBox='0 0 400 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.data-packet %7B fill: %23ff9a3d; opacity: 0; animation: movePacket 4s linear infinite; %7D @keyframes movePacket %7B 0%25 %7B opacity: 0; transform: translate(200px, 150px); %7D 10%25 %7B opacity: 1; %7D 90%25 %7B opacity: 1; %7D 100%25 %7B opacity: 0; transform: translate(80px, 80px); %7D %7D .data-packet-2 %7B animation: movePacket2 4s linear infinite 1s; %7D @keyframes movePacket2 %7B 0%25 %7B opacity: 0; transform: translate(200px, 150px); %7D 10%25 %7B opacity: 1; %7D 90%25 %7B opacity: 1; %7D 100%25 %7B opacity: 0; transform: translate(320px, 80px); %7D %7D .data-packet-3 %7B animation: movePacket3 4s linear infinite 2s; %7D @keyframes movePacket3 %7B 0%25 %7B opacity: 0; transform: translate(200px, 150px); %7D 10%25 %7B opacity: 1; %7D 90%25 %7B opacity: 1; %7D 100%25 %7B opacity: 0; transform: translate(80px, 220px); %7D %7D .data-packet-4 %7B animation: movePacket4 4s linear infinite 3s; %7D @keyframes movePacket4 %7B 0%25 %7B opacity: 0; transform: translate(200px, 150px); %7D 10%25 %7B opacity: 1; %7D 90%25 %7B opacity: 1; %7D 100%25 %7B opacity: 0; transform: translate(320px, 220px); %7D %7D %3C/style%3E%3C/defs%3E%3Ccircle class='data-packet' cx='0' cy='0' r='2'/%3E%3Ccircle class='data-packet data-packet-2' cx='0' cy='0' r='2'/%3E%3Ccircle class='data-packet data-packet-3' cx='0' cy='0' r='2'/%3E%3Ccircle class='data-packet data-packet-4' cx='0' cy='0' r='2'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

/* Hover effects */
.distribution-section:hover .distribution-bg-pattern {
  animation-duration: 4s;
  opacity: 0.6;
}

.distribution-section:hover .distribution-bg-pattern .node {
  animation-duration: 2s;
  opacity: 0.8;
}

.distribution-section:hover .distribution-bg-pattern .hub {
  animation-duration: 1.5s;
  opacity: 0.9;
}

.distribution-section:hover .distribution-bg-pattern .connection {
  animation-duration: 3s;
  opacity: 0.4;
  stroke-dasharray: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .distribution-bg-pattern,
  .distribution-bg-pattern .node,
  .distribution-bg-pattern .hub,
  .distribution-bg-pattern .connection,
  .distribution-bg-pattern::after {
    animation: none;
  }
  
  .distribution-bg-pattern {
    opacity: 0.3;
  }
  
  .distribution-bg-pattern .node {
    opacity: 0.4;
  }
  
  .distribution-bg-pattern .hub {
    opacity: 0.5;
  }
  
  .distribution-bg-pattern .connection {
    opacity: 0.2;
  }
}

/* Add hover effects to make it interactive */
.distribution-section:hover .distribution-bg-pattern .node {
  opacity: 0.6;
  transform: scale(1.2);
}

.distribution-section:hover .distribution-bg-pattern .connection {
  opacity: 0.3;
  stroke-dasharray: none;
}

.distribution-section .container {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Network Visualization */
.distribution-network-wrapper {
  position: relative;
  padding: 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distribution-network {
  position: relative;
  width: 100%;
  height: 500px;
  max-width: 600px;
  margin: 0 auto;
}

.network-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 40px rgba(255, 122, 61, 0.3);
  z-index: 10;
  border: 4px solid white;
}

.center-logo i {
  font-size: 36px;
  margin-bottom: 8px;
}

.center-logo span {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.network-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  z-index: 5;
  border: 3px solid transparent;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.5);
}

.network-node.visible {
  opacity: 1;
  transform: scale(1);
}

.network-node:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
  z-index: 20;
}

.network-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.network-node:hover .network-logo {
  transform: scale(1.1);
}

.node-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 30;
}

.node-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--secondary);
}

.network-node:hover .node-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: -35px;
}

/* Node positions for desktop */
.node-1 { top: 10%; left: 50%; transform: translateX(-50%); transition-delay: 0.1s; }
.node-2 { top: 20%; left: 75%; transition-delay: 0.2s; }
.node-3 { top: 50%; left: 90%; transform: translateY(-50%); transition-delay: 0.3s; }
.node-4 { top: 80%; left: 75%; transition-delay: 0.4s; }
.node-5 { top: 90%; left: 50%; transform: translateX(-50%); transition-delay: 0.5s; }
.node-6 { top: 80%; left: 25%; transition-delay: 0.6s; }
.node-7 { top: 50%; left: 10%; transform: translateY(-50%); transition-delay: 0.7s; }
.node-8 { top: 20%; left: 25%; transition-delay: 0.8s; }
.node-9 { top: 35%; left: 65%; transition-delay: 0.9s; }
.node-10 { top: 65%; left: 35%; transition-delay: 1s; }

.network-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* World Map Section */
.world-map-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.world-map {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 122, 61, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
}

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

.stat-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-content h3 {
  color: var(--primary);
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.stat-content p {
  margin: 0;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Mobile Fallback */
.distribution-mobile {
  display: none;
}

.mobile-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.mobile-logo:hover {
  transform: translateY(-5px);
}

.mobile-logo img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.mobile-logo:hover img {
  filter: grayscale(0%);
}

/* ===== PROCESS STEPS ===== */
.process-step {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

/* ===== FEATURE BOXES ===== */
.feature-box {
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--secondary);
  color: white;
  padding: 60px 0 20px;
}

.footer-links h5 {
  color: var(--primary);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== BOOK CARDS ===== */
.book-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.book-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.book-image {
  height: 250px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.book-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-carousel .carousel-item {
  height: 100%;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

/* ===== FORM STYLES ===== */
.form-success {
  display: none;
  padding: 15px;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  color: #155724;
  margin-top: 15px;
}

.form-error {
  display: none;
  padding: 15px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  color: #721c24;
  margin-top: 15px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in 0.3s forwards;
}

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

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease-out 0.5s forwards;
}

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

.pulse {
  animation: pulse 2s infinite 1.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== ENHANCED BOOKS SHOWCASE ===== */
.books-showcase {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.showcase-intro {
  position: relative;
  z-index: 2;
}

.showcase-intro .section-title::after {
  left: 0;
  transform: none;
}

.featured-illustration {
  margin-top: 30px;
  max-width: 100%;
}

.featured-illustration img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.premium-carousel-container {
  position: relative;
  padding: 20px 0;
}
/* Mobile Book Cards */
.book-card-mobile {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 1rem;
}

.book-card-mobile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.book-image-mobile {
  height: 180px;
  overflow: hidden;
}

.book-image-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-card-mobile:hover .book-image-mobile img {
  transform: scale(1.05);
}

.book-info-mobile {
  padding: 15px;
}

.book-info-mobile .badge {
  font-size: 10px;
  padding: 4px 8px;
}

.book-info-mobile h6 {
  color: var(--secondary);
  margin: 8px 0 5px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}

.book-info-mobile .text-muted {
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.book-price-mobile {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 991.98px) {
  .book-card-side {
    margin: 10px 0;
  }
  
  .book-card-mobile {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .book-card-mobile {
    margin-bottom: 1rem;
  }
  
  .book-image-mobile {
    height: 160px;
  }
  
  .book-info-mobile {
    padding: 12px;
  }
  
  .book-info-mobile h6 {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .book-image-mobile {
    height: 140px;
  }
  
  .book-info-mobile {
    padding: 10px;
  }
  
  .book-info-mobile h6 {
    font-size: 0.8rem;
  }
  
  .book-price-mobile {
    font-size: 14px;
  }
}
/* Premium Carousel Controls */
#premiumBooksCarousel .carousel-control-prev,
#premiumBooksCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

#premiumBooksCarousel .carousel-control-prev {
  left: -25px;
}

#premiumBooksCarousel .carousel-control-next {
  right: -25px;
}

#premiumBooksCarousel .carousel-control-prev:hover,
#premiumBooksCarousel .carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

#premiumBooksCarousel .carousel-indicators {
  bottom: -50px;
}

#premiumBooksCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  transition: all 0.3s ease;
}

#premiumBooksCarousel .carousel-indicators button.active {
  background-color: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* Featured Book Card (Center) */
.book-card-featured {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
}

.book-card-featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.book-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), #ff9a3d);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(255, 122, 61, 0.3);
}

.book-image-featured {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.book-image-featured::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
}

.book-image-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.book-card-featured:hover .book-image-featured img {
  transform: scale(1.05);
}

.book-info-featured {
  padding: 25px;
  position: relative;
}

.book-info-featured .badge {
  font-size: 12px;
  padding: 6px 12px;
  font-weight: 600;
}

.book-info-featured h3 {
  color: var(--secondary);
  margin: 10px 0 5px;
  font-weight: 700;
  font-size: 1.5rem;
}

.book-info-featured .text-muted {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.book-price-featured {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 15px 0;
}

.book-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.book-actions {
  display: flex;
  gap: 10px;
}

.book-actions .btn {
  flex: 1;
  border-radius: 8px;
  padding: 10px 15px;
  font-weight: 600;
}

/* Side Book Cards */
.book-card-side {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 20px 0;
}

.book-card-side:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.book-image-side {
  height: 180px;
  overflow: hidden;
}

.book-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-card-side:hover .book-image-side img {
  transform: scale(1.05);
}

.book-info-side {
  padding: 15px;
}

.book-info-side .badge {
  font-size: 10px;
  padding: 4px 8px;
}

.book-info-side h6 {
  color: var(--secondary);
  margin: 8px 0 5px;
  font-weight: 600;
  font-size: 0.95rem;
}

.book-info-side .text-muted {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.book-price-side {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== QUOTES SECTION ===== */
.quotes-section {
  padding: 80px 0;
  background-color: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
}

.quotes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.pexels.com/photos/1742370/pexels-photo-1742370.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.quotes-section .container {
  position: relative;
  z-index: 2;
}

.quote-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  margin: 20px;
  height: 100%;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

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

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #ff9a3d);
}

.quote-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.8;
}

.quote-text {
  font-style: italic;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
}

.quote-text::before,
.quote-text::after {
  content: '"';
  font-size: 60px;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  line-height: 1;
}

.quote-text::before {
  top: -20px;
  left: -10px;
}

.quote-text::after {
  bottom: -40px;
  right: -10px;
}

.quote-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
  text-align: right;
}
/* Mobile Quotes Carousel - 1 quote at a time */
@media (max-width: 767.98px) {
  .quotes-carousel .carousel-inner {
    padding: 10px 0;
  }
  
  .quotes-carousel .carousel-item .row {
    display: flex;
    justify-content: center;
  }
  
  .quotes-carousel .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .quotes-carousel .quote-card {
    margin: 0 auto;
    max-width: 400px;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Desktop: Show 3 quotes */
@media (min-width: 768px) {
  .quotes-carousel .carousel-item .d-none.d-md-block {
    display: block !important;
  }
  
  .quotes-carousel .carousel-item .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* ===== CAROUSEL STYLES ===== */
.books-carousel .carousel-inner {
  padding: 20px 0;
}

.books-carousel .carousel-item.active .row {
  display: flex;
}

.books-carousel .carousel-control-prev,
.books-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.books-carousel .carousel-control-prev {
  left: -25px;
}

.books-carousel .carousel-control-next {
  right: -25px;
}

.books-carousel .carousel-control-prev:hover,
.books-carousel .carousel-control-next:hover {
  opacity: 1;
}

.books-carousel .carousel-indicators {
  bottom: -50px;
}

.books-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
}

.books-carousel .carousel-indicators button.active {
  background-color: var(--primary);
}

.quotes-carousel .carousel-inner {
  padding: 20px 0;
}

.quotes-carousel .carousel-control-prev,
.quotes-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.quotes-carousel .carousel-control-prev {
  left: -25px;
}

.quotes-carousel .carousel-control-next {
  right: -25px;
}

.quotes-carousel .carousel-control-prev:hover,
.quotes-carousel .carousel-control-next:hover {
  opacity: 1;
}

.quotes-carousel .carousel-indicators {
  bottom: -50px;
}

.quotes-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
}

.quotes-carousel .carousel-indicators button.active {
  background-color: var(--primary);
}

/* ===== ENHANCED TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  padding: 20px 0;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 122, 61, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff9a3d);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.rating-stars {
  font-size: 1.1rem;
}

.rating-stars i {
  margin-right: 2px;
}

.verified-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  flex: 1;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-info {
  flex: 1;
}

.author-info h6 {
  color: var(--secondary);
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info small {
  font-size: 0.9rem;
  color: #6c757d;
}

.author-stats {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.stat-badge {
  background: rgba(255, 122, 61, 0.1);
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 122, 61, 0.2);
}

.testimonial-illustration img {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.4s ease;
}

.testimonial-illustration:hover img {
  transform: scale(1.05) rotate(2deg);
}

.achievement-stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 25px 0;
}

.achievement-stats .stat-item {
  text-align: center;
}

.achievement-stats h3 {
  font-weight: 800;
  font-size: 2.2rem;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.trust-badge {
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  color: var(--secondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 122, 61, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

/* Carousel Controls */
#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#testimonialsCarousel .carousel-control-prev {
  left: -25px;
}

#testimonialsCarousel .carousel-control-next {
  right: -25px;
}

#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

#testimonialsCarousel .carousel-indicators {
  bottom: -50px;
}

#testimonialsCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  transition: all 0.3s ease;
}

#testimonialsCarousel .carousel-indicators button.active {
  background-color: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
  .testimonial-card {
    padding: 25px;
    min-height: 280px;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  #testimonialsCarousel .carousel-control-prev {
    left: 10px;
  }
  
  #testimonialsCarousel .carousel-control-next {
    right: 10px;
  }
  
  .testimonial-illustration img {
    max-width: 300px;
  }
  
  .achievement-stats {
    gap: 15px;
  }
  
  .achievement-stats h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 20px;
    min-height: auto;
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .author-stats {
    gap: 5px;
  }
  
  .stat-badge {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
  
  .testimonial-illustration {
    margin-top: 30px;
  }
  
  .testimonial-illustration img {
    max-width: 250px;
  }
  
  #testimonialsCarousel .carousel-control-prev,
  #testimonialsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .achievement-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 18px;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .author-info h6 {
    font-size: 1rem;
  }
  
  .testimonial-illustration img {
    max-width: 200px;
  }
  
  .verified-badge {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}
/* Mobile Quotes Carousel Adjustments */
@media (max-width: 767.98px) {
  .quotes-carousel .carousel-inner {
    padding: 10px 0;
  }
  
  .quotes-carousel .carousel-item .row {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .quotes-carousel .carousel-item .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  
  .quotes-carousel .quote-card {
    margin: 0;
    height: auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .quotes-carousel .carousel-control-prev,
  .quotes-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 122, 61, 0.9);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .quotes-carousel .carousel-control-prev {
    left: 5px;
  }
  
  .quotes-carousel .carousel-control-next {
    right: 5px;
  }
  
  .quotes-carousel .carousel-indicators {
    bottom: -40px;
  }
  
  .quotes-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    border-radius: 50%;
  }
  
  .quotes-carousel .carousel-indicators button.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 6px;
  }
}

/* Hide additional mobile quotes on desktop */
@media (min-width: 768px) {
  .quotes-carousel .d-md-none {
    display: none !important;
  }
}
/* ===== PUBLISHING PROCESS ===== */
.publishing-process {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.publishing-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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='%23FF7A3D'/%3E%3Crect x='40' y='10' width='20' height='80' fill='%23FF7A3D' opacity='0.7'/%3E%3Crect x='65' y='30' width='20' height='50' fill='%23FF7A3D' opacity='0.5'/%3E%3Crect x='90' y='40' width='20' height='40' fill='%23FF7A3D' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  z-index: 1;
}

.publishing-process .container {
  position: relative;
  z-index: 2;
}

/* ===== SCROLL SNAPPING ===== */
.scroll-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ===== CELEBRATION POPUP ===== */
.celebration-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-in;
}

.celebration-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10000;
  animation: slideUp 0.5s ease-out;
  max-width: 400px;
  width: 90%;
}

.celebration-icon {
  font-size: 80px;
  color: #28a745;
  margin-bottom: 20px;
  animation: bounce 1s ease-in-out;
}

.celebration-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 28px;
}

.celebration-content p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.celebration-close-btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 25px;
}

.celebration-confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: confettiFall 2s ease-in-out forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* ===== FORM LOADING STATE ===== */
.form-loading {
  display: none;
  padding: 15px;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: 5px;
  color: #0c5460;
  margin-top: 15px;
  text-align: center;
}

/* ===== ENHANCED MOBILE CAROUSEL ===== */
.books-showcase .carousel {
  touch-action: pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.books-showcase .carousel-inner {
  overflow: visible;
}

.carousel-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1399.98px) {
  .distribution-network {
    height: 450px;
  }
  
  .network-node {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 1199.98px) {
  .hero-section {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .distribution-network {
    height: 400px;
  }
  
  .network-center {
    width: 120px;
    height: 120px;
  }
  
  .network-node {
    width: 60px;
    height: 60px;
  }
  
  .distribution-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 991.98px) {
  .distribution-network-wrapper {
    display: none;
  }
  
  .distribution-mobile {
    display: block;
    margin-top: 2rem;
  }
  
  .world-map-container {
    gap: 1.5rem;
  }
  
  .world-map {
    height: 250px;
  }

  .books-carousel .carousel-control-prev {
    left: 10px;
  }

  .books-carousel .carousel-control-next {
    right: 10px;
  }

  .quotes-carousel .carousel-control-prev {
    left: 10px;
  }

  .quotes-carousel .carousel-control-next {
    right: 10px;
  }

  .books-showcase {
    padding: 80px 0;
  }
  
  .showcase-intro {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .showcase-intro .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .featured-illustration {
    max-width: 300px;
    margin: 30px auto 0;
  }
  
  #premiumBooksCarousel .carousel-control-prev {
    left: 10px;
  }
  
  #premiumBooksCarousel .carousel-control-next {
    right: 10px;
  }
  
  .book-card-featured {
    max-width: 100%;
  }
  
  .book-actions {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-form {
    margin-top: 30px;
  }

  .book-slide-buttons {
    flex-direction: column;
  }

  .distribution-section {
    padding: 60px 0;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .distribution-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 1.25rem;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .stat-content h3 {
    font-size: 1.5rem;
  }

  .books-showcase {
    padding: 60px 0;
  }
  
  .book-image-featured {
    height: 220px;
  }
  
  .book-info-featured {
    padding: 20px;
  }
  
  .book-info-featured h3 {
    font-size: 1.3rem;
  }
  
  .book-price-featured {
    font-size: 24px;
  }
  
  .featured-illustration {
    max-width: 250px;
  }

  /* Mobile book carousel - show one book */
  .books-carousel .carousel-item .row .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .books-carousel .carousel-item .row .col-md-4:not(:first-child) {
    display: none;
  }

  /* Mobile quotes carousel - show one quote */
  .quotes-carousel .carousel-item .row .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .quotes-carousel .carousel-item .row .col-md-4:not(:first-child) {
    display: none;
  }

  /* Enhanced mobile carousel controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 122, 61, 0.9);
  }
  
  .carousel-control-prev {
    left: 5px;
  }
  
  .carousel-control-next {
    right: 5px;
  }
  
  .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  
  .carousel-indicators button.active {
    width: 25px;
  }
}

@media (max-width: 575.98px) {
  .distribution-section {
    padding: 50px 0;
  }
  
  .world-map {
    height: 200px;
  }
  
  .mobile-logo {
    padding: 1rem;
  }
  
  .mobile-logo img {
    height: 35px;
  }

  .book-image-featured {
    height: 200px;
  }
  
  .book-info-featured {
    padding: 15px;
  }
  
  .book-info-featured h3 {
    font-size: 1.2rem;
  }
  
  .book-description {
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  /* Desktop - show 3 books and 3 quotes */
  .books-carousel .carousel-item .row .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .quotes-carousel .carousel-item .row .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.scroll-section,
.scroll-trigger {
  will-change: transform, opacity;
}

.scroll-section {
  min-height: 1px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .scroll-section,
  .scroll-trigger,
  .feature-box,
  .process-step,
  .card,
  .network-node,
  .quote-card,
  .stat-item {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===== SMOOTH SCROLL BEHAVIOR ===== */
html {
  scroll-behavior: smooth;
}

/* Services Section Styles */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,122,61,0.3), transparent);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff7a3d, #ff5252);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Card Styles */
.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,122,61,0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff7a3d;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff7a3d, #ff5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255,122,61,0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: #ff7a3d;
}

.service-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #495057;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: #ff7a3d;
    transform: translateX(5px);
}

.service-features li i {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    color: #ff7a3d;
    transform: scale(1.2);
}

/* Animation for card entrance */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .service-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
}

/* Hover effects for mobile */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-10px);
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .service-card:active {
        transform: scale(0.98);
    }
}

/* Loading state for cards */
.service-card.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Print styles */
@media print {
    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .service-card:hover {
        transform: none;
    }
}

/* ===== LOGISTICS PARTNERS SECTION ===== */
.logistics-partners {
  margin-top: 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.logistics-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ff7a3d' stroke-width='1' stroke-opacity='0.05'%3E%3Crect x='10' y='10' width='20' height='20'/%3E%3Crect x='50' y='10' width='20' height='20'/%3E%3Crect x='10' y='50' width='20' height='20'/%3E%3Crect x='50' y='50' width='20' height='20'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.logistics-partners h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.logistics-partners h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), #ff9a3d);
  border-radius: 2px;
}

.logistics-logo {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  z-index: 2;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logistics-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Removed grayscale filter - logos display in normal colors */
}

/* Specific logo adjustments for better visibility */
.logistics-logo:nth-child(1) img {
  max-height: 50px; /* DTDC */
}

.logistics-logo:nth-child(2) img {
  max-height: 55px; /* India Post */
}

.logistics-logo:nth-child(3) img {
  max-height: 45px; /* Blue Dart */
}

.logistics-logo:nth-child(4) img {
  max-height: 40px; /* DHL */
}

.logistics-logo:nth-child(5) img {
  max-height: 50px; /* Delivery Booking */
}

/* Animation for logos */
.logistics-logo {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.logistics-logo:nth-child(1) { animation-delay: 0.1s; }
.logistics-logo:nth-child(2) { animation-delay: 0.2s; }
.logistics-logo:nth-child(3) { animation-delay: 0.3s; }
.logistics-logo:nth-child(4) { animation-delay: 0.4s; }
.logistics-logo:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1199.98px) {
  .logistics-partners {
    margin-top: 3rem;
    padding: 2.5rem 0;
  }
  
  .logistics-partners h3 {
    font-size: 1.75rem;
  }
  
  .logistics-logo {
    padding: 1.75rem 1.25rem;
    height: 110px;
  }
  
  .logistics-logo img {
    max-height: 55px;
  }
}

@media (max-width: 991.98px) {
  .logistics-partners {
    margin-top: 2.5rem;
    padding: 2rem 0;
  }
  
  .logistics-partners h3 {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }
  
  .logistics-logo {
    padding: 1.5rem 1rem;
    height: 100px;
    margin-bottom: 1rem;
  }
  
  .logistics-logo img {
    max-height: 50px;
  }
  
  /* Adjust specific logos for tablet */
  .logistics-logo:nth-child(1) img { max-height: 45px; }
  .logistics-logo:nth-child(2) img { max-height: 50px; }
  .logistics-logo:nth-child(3) img { max-height: 40px; }
  .logistics-logo:nth-child(4) img { max-height: 35px; }
  .logistics-logo:nth-child(5) img { max-height: 45px; }
}

@media (max-width: 767.98px) {
  .logistics-partners {
    margin-top: 2rem;
    padding: 1.5rem 0;
    border-radius: 16px;
  }
  
  .logistics-partners h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  
  .logistics-partners h3::after {
    width: 50px;
    height: 3px;
    bottom: -10px;
  }
  
  .logistics-logo {
    padding: 1.25rem 0.75rem;
    height: 90px;
    margin-bottom: 0.75rem;
    border-radius: 12px;
  }
  
  .logistics-logo img {
    max-height: 45px;
  }
  
  /* Adjust specific logos for mobile */
  .logistics-logo:nth-child(1) img { max-height: 40px; }
  .logistics-logo:nth-child(2) img { max-height: 45px; }
  .logistics-logo:nth-child(3) img { max-height: 35px; }
  .logistics-logo:nth-child(4) img { max-height: 30px; }
  .logistics-logo:nth-child(5) img { max-height: 40px; }
}

@media (max-width: 575.98px) {
  .logistics-partners {
    margin-top: 1.5rem;
    padding: 1.25rem 0;
  }
  
  .logistics-partners h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .logistics-logo {
    padding: 1rem 0.5rem;
    height: 80px;
    margin-bottom: 0.5rem;
    border-radius: 10px;
  }
  
  .logistics-logo img {
    max-height: 40px;
  }
  
  /* Adjust specific logos for small mobile */
  .logistics-logo:nth-child(1) img { max-height: 35px; }
  .logistics-logo:nth-child(2) img { max-height: 40px; }
  .logistics-logo:nth-child(3) img { max-height: 30px; }
  .logistics-logo:nth-child(4) img { max-height: 25px; }
  .logistics-logo:nth-child(5) img { max-height: 35px; }
}

/* Extra small devices */
@media (max-width: 375px) {
  .logistics-partners h3 {
    font-size: 1.2rem;
  }
  
  .logistics-logo {
    height: 70px;
    padding: 0.75rem 0.5rem;
  }
  
  .logistics-logo img {
    max-height: 35px;
  }
  
  .logistics-logo:nth-child(1) img { max-height: 30px; }
  .logistics-logo:nth-child(2) img { max-height: 35px; }
  .logistics-logo:nth-child(3) img { max-height: 25px; }
  .logistics-logo:nth-child(4) img { max-height: 22px; }
  .logistics-logo:nth-child(5) img { max-height: 30px; }
}

/* Print styles */
@media print {
  .logistics-partners {
    background: white !important;
    box-shadow: none !important;
    border: 1px solid #ddd;
  }
  
  .logistics-logo {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    transform: none !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .logistics-logo {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===== INSTITUTIONAL PARTNERS MARQUEE ===== */
.institutional-partners {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.institutional-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ff7a3d' stroke-width='1' stroke-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3Ccircle cx='20' cy='20' r='15'/%3E%3Ccircle cx='80' cy='80' r='15'/%3E%3Ccircle cx='80' cy='20' r='10'/%3E%3Ccircle cx='20' cy='80' r='10'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.institutional-partners h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.institutional-partners h3::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), #ff9a3d);
  border-radius: 2px;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  z-index: 2;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 3rem;
  padding: 0 2rem;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.partner-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  /* Removed grayscale filter - logos will display in normal colors */
}

.partner-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  text-align: center;
  line-height: 1.3;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .institutional-partners h3 {
    font-size: 1.75rem;
  }
  
  .partner-logo {
    min-width: 160px;
    padding: 1.25rem;
  }
  
  .partner-logo img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 991.98px) {
  .institutional-partners h3 {
    font-size: 1.6rem;
  }
  
  .marquee-track {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .partner-logo {
    min-width: 140px;
    padding: 1rem;
  }
  
  .partner-logo img {
    width: 60px;
    height: 60px;
  }
  
  .partner-logo span {
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .institutional-partners {
    padding: 3rem 0 !important;
  }
  
  .institutional-partners h3 {
    font-size: 1.4rem;
  }
  
  .institutional-partners h3::after {
    width: 50px;
    height: 3px;
    bottom: -10px;
  }
  
  .marquee-track {
    gap: 1.5rem;
    padding: 0 0.5rem;
    animation-duration: 25s;
  }
  
  .partner-logo {
    min-width: 120px;
    padding: 0.75rem;
    border-radius: 12px;
  }
  
  .partner-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }
  
  .partner-logo span {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .institutional-partners {
    padding: 2.5rem 0 !important;
  }
  
  .institutional-partners h3 {
    font-size: 1.3rem;
  }
  
  .marquee-track {
    gap: 1rem;
    animation-duration: 20s;
  }
  
  .partner-logo {
    min-width: 100px;
    padding: 0.5rem;
    border-radius: 10px;
  }
  
  .partner-logo img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  
  .partner-logo span {
    font-size: 0.75rem;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .institutional-partners h3 {
    font-size: 1.2rem;
  }
  
  .partner-logo {
    min-width: 90px;
  }
  
  .partner-logo img {
    width: 35px;
    height: 35px;
  }
  
  .partner-logo span {
    font-size: 0.7rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

