/* === General === */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #3b2f8f; /* Primary brand color */
  }
  
  a {
    color: #3b2f8f;
    text-decoration: none;
  }
  
  a:hover {
    color: #e6007e; /* Secondary accent color */
  }
  
  /* === Navbar === */
  .navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
  }
  
  .navbar-light .navbar-nav .nav-link:hover {
    color: #3b2f8f;
  }
  
  /* === Hero Section === */
  .hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* === Loader === */
  .loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
  }
  
  .loader-icon img {
    width: 80px;
    animation: bounce 1s infinite alternate;
  }
  
  .swag-text {
    font-size: 1.2rem;
    color: #3b2f8f;
    margin: 10px 0;
  }
  
  .progress-bar {
    width: 200px;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .progress-fill {
    width: 0%;
    height: 100%;
    background: #e6007e;
    transition: width 0.5s;
  }
  
  .loading-percent {
    font-size: 0.9rem;
    color: #666;
  }
  
  /* === Scroll To Top === */
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3b2f8f;
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
  }
  
  .scroll-to-top:hover {
    background: #e6007e;
  }
  
  /* === WhatsApp Floating === */
  .whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
  }
  
  /* === Sections === */
  .section-title {
    font-size: 2.2rem;
    color: #3b2f8f;
    margin-bottom: 0.5rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #666;
  }
  
  /* === Brand Slider === */
  .brand-slider {
    overflow-x: auto;
    display: flex;
    scrollbar-width: none;
  }
  
  .brand-slider::-webkit-scrollbar {
    display: none;
  }
  
  .brand-logo img {
    display: block;
    height: 80px;
    filter: grayscale(100%);
    transition: filter 0.3s, transform 0.3s;
  }
  
  .brand-logo img:hover {
    filter: none;
    transform: scale(1.1);
  }
  
  /* === Custom Cursor === */
  body {
    cursor: url('../images/cursor.png'), auto;
  }
  
  /* === Keyframes === */
  @keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
  }
  
  /* === Responsive Adjustments === */
  @media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
  }
  