 
    :root {
      --primary-color: #2563eb;
      --secondary-color: #059669;
      --accent-color: #f59e0b;
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --bg-light: #f8fafc;
      --bg-white: #ffffff;
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
      --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 3px;
    }

    /* Enhanced Navbar */
    .navbar {
      backdrop-filter: blur(20px);
      background: rgba(255, 255, 255, 0.95) !important;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    .logo {
    width: 50px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between image and text */
}

    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      color: var(--text-dark) !important;
      transition: all 0.3s ease;
      position: relative;
      margin: 0 0.5rem;
    }

    .navbar-nav .nav-link:hover {
      color: var(--primary-color) !important;
      transform: translateY(-1px);
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 50%;
      background: var(--gradient-primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    /* Enhanced Dropdown */
    .dropdown-menu {
      border: none;
      box-shadow: var(--shadow-lg);
      border-radius: 16px;
      padding: 2rem;
      min-width: 700px;
      margin-top: 1rem;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
    }

    .dropdown-columns {
      display: grid;
      grid-template-columns: 1fr 1fr 300px;
      gap: 2rem;
    }

    .dropdown-columns h6 {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }

    .dropdown-columns ul {
      list-style: none;
      padding: 0;
    }

    .dropdown-columns li {
      padding: 0.75rem 1rem;
      margin: 0.25rem 0;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .dropdown-columns li:hover {
      background: var(--bg-light);
      color: var(--primary-color);
      transform: translateX(5px);
    }

    .product-preview {
      height: 250px;
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-md);
    }

    /* Hero Section */
    .hero-section {
      min-height: 100vh;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%),
                  url('./img/hero.png');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(1px);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: 2rem;
    }

    .hero-content h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 1s ease-out;
    }

    .hero-content p {
      font-size: 1.25rem;
      color: var(--text-light);
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .btn-primary {
      background: var(--gradient-primary);
      border: none;
      padding: 1rem 2rem;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
      background: var(--gradient-primary);
    }

    /* Section Styling */
    .section-padding {
      padding: 6rem 0;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 4rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Enhanced Product Cards */
    .product-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: var(--bg-white);
      box-shadow: var(--shadow-sm);
      height: 100%;
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .product-card img {
      height: 250px;
      object-fit:scale-down;
      transition: transform 0.3s ease;
    }

    .product-card:hover img {
      transform: scale(1.05);
    }

    .product-card .card-body {
      padding: 2rem;
    }

    .product-card .card-title {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .product-card .card-text {
      color: var(--text-light);
      line-height: 1.6;
    }

    /* Feature Cards */
    .feature-card {
      background: var(--bg-white);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-sm);
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 2rem;
    }

    .feature-card h5 {
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .feature-card p {
      color: var(--text-light);
      line-height: 1.6;
    }

 

    /* Contact Form */
    .contact-form {
      background: var(--bg-white);
      border-radius: 20px;
      padding: 3rem;
      box-shadow: var(--shadow-md);
      max-width: 800px;
      margin: 0 auto;
    }

    .form-control {
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      padding: 1rem;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    /* Footer */
    .footer {
      background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
      color: white;
      padding: 3rem 0 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h5 {
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .footer-section a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: white;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--primary-color);
      transform: translateY(-2px);
    }

    /* Offers Gallery Styles */
.offers-gallery {
  margin-top: 50px;
}



/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-card {
    height: 250px;
  }
  
  .gallery-content h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .gallery-card {
    height: 200px;
  }
  
  .gallery-content {
    padding: 15px;
  }
  
  .gallery-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .gallery-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item[data-aos="fade-up"] {
  animation: fadeInUp 0.8s ease forwards;
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.modal-body img {
  border-radius: 0 0 15px 15px;
}

/* Loading Effect */
.gallery-image {
  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;
  }
}

.gallery-image[src] {
  background: none;
  animation: none;
}

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-content {
        padding: 1rem;
      }
      
      .dropdown-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      
      .dropdown-menu {
        min-width: 300px;
        padding: 1rem;
      }
      
      .section-padding {
        padding: 3rem 0;
      }
      
      .contact-form {
        padding: 2rem 1rem;
      }
    }






   /* Container */
.offers-section {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: sans-serif;
}
.offers-section .header {
  text-align: center;
  margin-bottom: 40px;
}
.offers-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.offers-section p {
  color: #666;
  font-size: 1rem;
}

/* Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Card */
.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}
.offer-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.offer-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}
.offer-card:hover .overlay {
  opacity: 1;
}
.view-btn {
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 5px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
}
.modal-content img {
  width: 100%;
  border-radius: 10px;
}
.close-btn {
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}


