@tailwind base;
@tailwind components;
@tailwind utilities;


html {
  scroll-behavior: smooth;
  
}
.body{
   font-family: "Saira", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
   .sidebar {
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .sidebar.open {
      transform: translateX(0);
    }
    .sidebar-overlay {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .sidebar-overlay.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-link {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-link:hover {
      transform: translateX(8px);
      background: rgba(250, 204, 21, 0.05);
    }

.yellow-gradient-text {
        background: linear-gradient(to right, #facc15, #eab308, #facc15);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
       .testimonial-card {
      background: linear-gradient(145deg, #121212, #1a1a1a);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(250, 204, 21, 0.1);
    }
    .active-testimonial {
      border: 2px solid rgba(250, 204, 21, 0.3);
      background: linear-gradient(145deg, #1a1a1a, #121212);
    }
    .quote-icon {
      color: rgba(250, 204, 21, 0.3);
      font-size: 3rem;
    }
    .nav-dot {
      width: 10px;
      height: 10px;
      transition: all 0.3s ease;
    }
    .nav-dot.active {
      width: 30px;
      background-color: #facc15;
    }
    .nav-arrow {
      background: rgba(250, 204, 21, 0.1);
      transition: all 0.3s ease;
    }
    .nav-arrow:hover {
      background: rgba(250, 204, 21, 0.3);
    }
     .faq-item {
      background: linear-gradient(145deg, #121212, #1a1a1a);
      border: 1px solid rgba(250, 204, 21, 0.1);
    }
    .faq-item:hover {
      border-color: rgba(250, 204, 21, 0.3);
    }
    .active-faq {
      border-color: rgba(250, 204, 21, 0.5);
    }
     .footer-divider {
      border-color: rgba(250, 204, 21, 0.1);
    }
    .footer-link:hover {
      color: #facc15;
      transform: translateX(5px);
    }
    .newsletter-input {
      background: rgba(250, 204, 21, 0.05);
      border-color: rgba(250, 204, 21, 0.3);
    }
    .newsletter-input:focus {
      outline: none;
      border-color: #facc15;
      box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
    }