/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --logo-color: white:
    --primary-color: #3b82f6;
    --primary-glow: #4f46e5;
    --secondary-color: #2563eb;
    --accent-color: #60a5fa;
    --dark-color: #0f172a;
    --darker-color: #020617;
    --light-color: #f8fafc;
    --text-color: #e2e8f0;
    --text-light: #94a3b8;
    --border-color: #334155;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --card-bg: rgba(15, 23, 42, 0.8);
    --gradient-blue: linear-gradient(135deg, #1e40af, #3b82f6);
    --gradient-dark: linear-gradient(135deg, #0f172a, #1e293b);
    --gradient-glow: linear-gradient(135deg, #4f46e5, #3b82f6);
    --gradient-red:  linear-gradient(to right, #c33764, #1d2671);
    --gradient-majic: linear-gradient(to right, #59c173, #a17fe0, #5d26c1);
    --gradient-jshine: linear-gradient(to right, #373b44, #4286f4);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  @keyframes glow {
    0% {
      box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    50% {
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
    100% {
      box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes gradientBG {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 20px auto;
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  body {
    font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--darker-color);
    /* background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(79, 70, 229, 0.1) 0%, transparent 50%); */
      background: #C33764;  /* fallback for old browsers */
      background: -webkit-linear-gradient(to right, #1D2671, #C33764);  /* Chrome 10-25, Safari 5.1-6 */
      background: linear-gradient(to right, #1D2671, #C33764); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
      
      background-attachment: fixed;
    overflow-x: hidden;
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
    z-index: -1;
    opacity: 0.5;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  
  .section-header h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gradient-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
  }
  
  .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
  }
  
  .btn:hover::before {
    left: 0;
  }
  
  .btn-primary {
    background: var(--gradient-red);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  }
  
  .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
  }
  
  .btn-secondary:hover {
    background-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
  }
  
  .btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    position: relative;
  }
  
  .btn-text::after {
    content: "→";
    margin-left: 5px;
    transition: all 0.3s ease;
  }
  
  .btn-text:hover::after {
    margin-left: 10px;
  }
  
  /* Header Styles */
  header {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    color: var(--logo-color);
    margin-bottom: 0;
    text-shadow: 0 0 10px rgba(103, 156, 241, 0.5);
  }
  
  .logo p {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .nav-menu {
    display: flex;
  }
  
  .nav-menu li {
    margin-left: 25px;
  }
  
  .nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
  }
  
  .nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  }
  
  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }
  
  .nav-menu a.active {
    color: var(--primary-color);
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.9));
    background-size: cover;
    background-position: center;
    height: 1080px;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(79, 70, 229, 0.15) 0%, transparent 50%);
  }

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity for darkness */
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    animation: fadeIn 1s ease-out;
    overflow: hidden;
  }
  
  .hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    /* text-shadow: 0 0 15px rgba(59, 130, 246, 0.7); */
    background: var(--gradient-majic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  /* Services Section */
  .services {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
  }
  
  .services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
  }
  
  .service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    animation: float 3s ease-in-out infinite;
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    color: var(--light-color);
  }
  
  .service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
  }
  
  .service-booking {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(5px);
  }
  
  .service-booking h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    background-color: rgba(15, 23, 42, 0.8);
  }
  
  /* Products Section */
  .products {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
  }
  
  .products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 50%);
  }
  
  .product-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 25px;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-light);
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    border-color: transparent;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--card-bg);
    border: 1px solid rgba(59, 130, 246, 0.1);
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .product-img {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-img img {
    transform: scale(1.1);
  }
  
  .product-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-jshine);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-info h3 {
    margin-bottom: 10px;
    color: var(--light-color);
  }
  
  .product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
  }
  
  .product-desc {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  
  .sell-cta {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .sell-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
  }
  
  .sell-cta h3 {
    margin-bottom: 15px;
    color: var(--light-color);
    position: relative;
  }
  
  .sell-cta p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    position: relative;
  }
  
  /* About Section */
  .about {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
  }
  
  .about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-img img {
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    height: 650px;
    width: 566px;
  }
  
  .about-text h3 {
    margin-bottom: 20px;
    color: var(--light-color);
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  
  .about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  
  .feature {
    display: flex;
    align-items: center;
  }
  
  .feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  }
  
  /* Contact Section */
  .contact {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
  }
  
  .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 50%);
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .contact-info {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(5px);
  }
  
  .info-item {
    display: flex;
    margin-bottom: 30px;
  }
  
  .info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
  }
  
  .info-item h3 {
    margin-bottom: 10px;
    color: var(--light-color);
  }
  
  .info-item p {
    color: var(--text-light);
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(15, 23, 42, 0.6);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  .social-link:hover {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
  }
  
  .contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(5px);
  }
  
  .contact-form h3 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  
  .map-container {
    margin-top: 50px;
  }
  
  .map-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  
  .map {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.1);
  }
  
  .map-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Footer */
 /* footer {
    (130,246,0.1);
  } */
  
  .map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
  }
  
  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
    z-index: 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  
  .footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  
  .footer-logo p {
    color: var(--text-light);
  }
  
  .footer-links h3,
  .footer-services h3,
  .footer-newsletter h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
  }
  
  .footer-links ul li,
  .footer-services ul li {
    margin-bottom: 10px;
  }
  
  .footer-links a,
  .footer-services a {
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
  }
  
  .footer-links a::before,
  .footer-services a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: transform 0.3s ease;
  }
  
  .footer-links a:hover,
  .footer-services a:hover {
    color: var(--primary-color);
    padding-left: 20px;
  }
  
  .footer-links a:hover::before,
  .footer-services a:hover::before {
    transform: scale(1.2);
  }
  
  .footer-newsletter p {
    color: var(--text-light);
    margin-bottom: 15px;
  }
  
  .footer-newsletter form {
    display: flex;
    position: relative;
  }
  
  .footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    color: var(--text-color);
  }
  
  .footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
  }
  
  .footer-newsletter button {
    border-radius: 0 5px 5px 0;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 1;
  }
  
  .footer-bottom p {
    color: var(--text-light);
  }

  .footer-bottom a {
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-content {
      grid-template-columns: 1fr;
    }
  
    .contact-content {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      flex-direction: column;
      background-color: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(10px);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      padding: 20px 0;
      border-bottom: 1px solid rgba(59, 130, 246, 0.2);
      z-index: 100;
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-menu li {
      margin: 15px 0;
    }
  
    .hero-content h2 {
      font-size: 2.2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    .service-booking {
      padding: 20px;
    }
  
    .about-features {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .section-header h2 {
      font-size: 2rem;
    }
  
    .product-filters {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-newsletter form {
      flex-direction: column;
    }
  
    .footer-newsletter input {
      border-radius: 5px;
      margin-bottom: 10px;
    }
  
    .footer-newsletter button {
      border-radius: 5px;
    }
  }
  
  /* Animation Classes */
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
  
  .animate-pulse {
    animation: pulse 2s infinite;
  }
  
  .animate-glow {
    animation: glow 2s infinite;
  }
  
  /* Particle Background */
  .particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
  }
  
  .particle {
    position: absolute;
    background-color: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    pointer-events: none;
  }
  
  