
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --gold: #FFD700;
    --white: #ffffff;
    --dark-blue: #0f0c29;
    --purple: #302b63;
    --radius-8: 8px;
    --shadow-1: 0 2px 10px rgba(0,0,0,0.1);
  }
  .header {
    position: relative;
    background-color: var(--white);
    padding-block: 15px;
    box-shadow: var(--shadow-1);
    z-index: 4;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .logo {
    display: flex;
    z-index: 5;
  }
  
  .header .logo-dark { 
    display: block !important; 
  }
  .header .logo-light { 
    display: none !important; 
  }
  
  /* ===== Mobile Menu Styles ===== */
  /* .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    background-color: var(--white);
    width: 300px;
    height: 100vh;
    padding: 30px 20px;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    visibility: hidden;
    z-index: 5;
  } */
  .navbar {
    position: fixed;
    top: 0;
    right: -100%; /* Changed from transform to position property */
    width: 500px;
    height: 100vh;
    background-color: var(--charcoal);
    padding: 30px 20px;
    transition: right 0.3s ease-in-out; /* Animate right property */
    overflow-y: auto;
    z-index: 5;
  }
  
  .navbar.active {
    right: 0;
    
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4;
    display: none;
    transition: opacity 0.3s ease;
    opacity: 0; /* Start invisible */
    pointer-events: none; /* Disable interactions when hidden */
  }
  
  .overlay.active {
    display: block;
    opacity: 1; /* Fade in overlay */
    pointer-events: auto; /* Enable interactions when visible */

  }
  
  /* Mobile Menu Toggle Buttons */
  .nav-open-btn,
  .nav-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--charcoal);
    display: none;
  }
  
  .nav-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  
  /* Mobile Menu List */
  .navbar-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
  
  .navbar-link {
    color: var(--charcoal);
    font-size: 18px;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
  }
  
  .navbar-link:hover {
    color: var(--violet-blue-crayola);
  }
  
  /* ===== Desktop Styles ===== */
  @media (min-width: 769px) {
    .navbar {
      position: static;
      background-color: transparent;
      width: auto;
      height: auto;
      padding: 0;
      flex-direction: row;
      visibility: visible;
      transform: none;
      overflow-y: visible;
    }
  
    .navbar-list {
      flex-direction: row;
      margin-top: 0;
      gap: 25px;
    }
  
    .nav-open-btn,
    .nav-close-btn,
    .overlay {
      display: none !important;
    }
  }
  
  /* ===== Mobile Adjustments ===== */
  @media (max-width: 768px) {
    .nav-open-btn {
      display: block;
      z-index: 10; 
      padding: 40px 25px;
      width: 180px;
      right: -280px;
    }
  
    .navbar {
        padding: 40px 25px;
        width: 280px;
      }
    
      .navbar-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
      }
      .navbar-link{
        color: var(--white)
      }
    
      /* Contact Info Wrapper */
      .wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
      }
    
      .contact-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--white);
        font-size: 15px;
      }
    
      /* Social Links */
      .social-list {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
      }
    
      .social-link {
        font-size: 24px;
        color: var(--white);
        transition: color 0.3s ease;
      }
    
      .social-link:hover {
        color: var(--violet-blue-crayola);
      }
    
      /* Adjust navbar link sizes */
      .navbar-link {
        font-size: 17px;
        padding: 12px 0;
      }
    
      /* Hide desktop-only elements */
      .header .logo-light {
        display: none !important;
      }
      .header .logo-dark{
        display: block !important;
      }
      .hero-title{
        margin-right: -100px;
      }
    }
/* Products Page Specific Styles */
.products-hero {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    text-align: center;
    padding: 100px 0;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .products-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 3rem;
  }
  
  .product-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .card-icon {
    font-size: 2.5rem;
    color: #302b63;
    margin-bottom: 1rem;
  }
  
  .card-title {
    color: #0f0c29;
    margin-bottom: 1.5rem;
  }
  
  .card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }
  
  .card-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }
  
  .comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
  }
  
  th {
    background-color: #302b63;
    color: #fff;
  }
  
  tr:hover {
    background-color: #f9f9f9;
  }
  
  .btn-outline {
    border: 2px solid #302b63;
    color: #302b63;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background: #302b63;
    color: #fff;
  }
  