    :root {
      --primary: #e74c3c;
      --primary-dark: #c0392b;
      --secondary: #2c3e50;
      --accent: #f39c12;
      --accent-dark: #e67e22;
      --light: #f8f9fa;
      --dark: #2c3e50;
      --light-bg: #f9f9f9;
      --transition: all 0.3s ease;
      --shadow: 0 10px 30px rgba(0,0,0,0.1);
      --shadow-hover: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 12px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
      border: 2px solid #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-dark);
    }
    
    /* Firefox Scrollbar */
    html {
      scrollbar-width: thin;
      scrollbar-color: var(--primary) #f1f1f1;
    }
    
    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
            overflow-x: hidden;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      color: #444;
      overflow-x: hidden;
      line-height: 1.7;
    }
    
    h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--dark);
    }
    
    .section-title {
      position: relative;
      margin-bottom: 3rem;
      text-align: center;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: var(--accent);
      margin: 15px auto;
    }
    
    /* Preloader */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--light);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .loader {
      width: 50px;
      height: 50px;
      border: 5px solid rgba(var(--primary), 0.2);
      border-radius: 50%;
      border-top-color: var(--primary);
      animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
     
    /* Navbar */
    .navbar {
      padding: 15px 0;
      transition: var(--transition);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
    }
    
    .navbar-brand img {
      border: 2px solid var(--accent);
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 10px;
      position: relative;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent);
      transition: var(--transition);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    /* Navbar */
   .navbar {
      padding: 20px 0;
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--dark) !important;
    }
    
    .navbar-brand img {
      border: 2px solid var(--accent);
      transition: var(--transition);
    }
    
    .navbar-brand:hover img {
      transform: rotate(10deg);
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 12px;
      position: relative;
      color: var(--dark) !important;
      transition: var(--transition);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent);
      transition: var(--transition);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }
    
    .nav-link:hover {
      color: var(--primary) !important;
    }
    
    .navbar-scrolled {
      padding: 12px 0;
      background: rgba(255, 255, 255, 0.98) !important;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    /* Hero Section */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 80px;
      overflow: hidden;
    }
    
    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
      z-index: -1;
    }
    
    .hero-content {
      padding: 80px 0;
    }
    
    .hero-badge {
      display: inline-block;
      background: var(--accent);
      color: white;
      padding: 5px 15px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 20px;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .hero-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
    }
    
    /* Buttons */
    .btn {
      border-radius: 30px;
      padding: 14px 32px;
      font-weight: 600;
      transition: var(--transition);
      border: none;
      font-family: 'Montserrat', sans-serif;
    }
    
    .btn-primary {
      background-color: var(--primary);
      box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
    }
    
    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(231, 76, 60, 0.4);
    }
    
    .btn-warning {
      background-color: var(--accent);
      color: white;
      box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
    }
    
    .btn-warning:hover {
      background-color: var(--accent-dark);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(243, 156, 18, 0.4);
    }
    
    .btn-outline-light:hover {
      background-color: transparent;
      color: var(--accent);
      border-color: var(--accent);
    }
    
    /* Cards */
    .feature-card {
      border-radius: 15px;
      overflow: hidden;
      transition: var(--transition);
      border: none;
      height: 100%;
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }
    
    .feature-card .card-img-top {
      height: 200px;
      object-fit: cover;
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: -35px auto 20px;
      position: relative;
      z-index: 1;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .menu-card {
      border-radius: 15px;
      overflow: hidden;
      transition: var(--transition);
      border: none;
      box-shadow: var(--shadow);
    }
    
    .menu-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }
    
    .menu-card img {
      transition: var(--transition);
      height: 200px;
      object-fit: cover;
    }
    
    .menu-card:hover img {
      transform: scale(1.05);
    }
    
    .menu-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 2;
    }
    
    /* Testimonials */
    .testimonial-section {
      background: linear-gradient(to right, var(--secondary), var(--dark));
      position: relative;
      overflow: hidden;
    }
    
    .testimonials-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.15;
    }
    
    .testimonial-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 30px;
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.1);
      height: 100%;
    }
    
    .testimonial-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--accent);
    }
    
    .rating {
      color: var(--accent);
      margin-bottom: 15px;
    }
    
    /* Stats Counter */
    .stats-section {
      background: var(--light-bg);
    }
    
    .stat-item {
      text-align: center;
      padding: 30px 20px;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
    }
    
    .stat-text {
      font-size: 1.1rem;
      color: var(--secondary);
      font-weight: 500;
    }
    
    /* Newsletter */
    .newsletter-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    
    .footer-pattern {
      position: absolute;
      bottom: 0;
      right: 0;
      opacity: 0.05;
      width: 500px;
      height: 500px;
    }
    
    .footer-links h6 {
      color: white;
      margin-bottom: 20px;
      font-weight: 600;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-links h6:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background: var(--accent);
    }
    
    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
    }
    
    .footer-links a:hover {
      color: var(--accent);
      transform: translateX(5px);
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-radius: 50%;
      margin-right: 10px;
      transition: var(--transition);
    }
    
    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    /* Utilities */
    .text-accent {
      color: var(--accent) !important;
    }
    
    .bg-light-custom {
      background: var(--light-bg) !important;
    }
    
    .section-padding {
      padding: 100px 0;
    }
    
    /* Scroll Progress Bar */
    .progress-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: transparent;
      z-index: 9999;
    }
    
    .progress-bar {
      height: 4px;
      background: var(--accent);
      width: 0%;
      transition: width 0.3s ease;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 2.8rem;
      }
      
      .section-padding {
        padding: 80px 0;
      }
      
      .stat-number {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.3rem;
      }
      
      .section-padding {
        padding: 60px 0;
      }
      
      .btn {
        padding: 12px 25px;
      }
      
      .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: -30px auto 15px;
      }
      
      /* Adjust scrollbar for mobile */
      ::-webkit-scrollbar {
        width: 6px;
      }
    }
    
    /* Animation delays */
    .delay-1 {
      animation-delay: 0.1s;
    }
    
    .delay-2 {
      animation-delay: 0.2s;
    }
    
    .delay-3 {
      animation-delay: 0.3s;
    }
    
    .delay-4 {
      animation-delay: 0.4s;
    }
    
    .delay-5 {
      animation-delay: 0.5s;
    }