  /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo i {
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            color: var(--dark);
            font-weight: 700;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--primary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }


 /* Hero Slider Styles */
        .hero {
            padding-top: 80px;
            position: relative;
        }
        
        .swiper {
            width: 100%;
            height: 90vh;
        }
        
        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;

        }
        
        .slide-content {
            position: absolute;
            left: 30%;
            max-width: 100vw;
            color: white;
            z-index: 10;
            transform: translateY(-50px);
            opacity: 0;
            transition: all 0.5s ease;
            text-align: center;
        }
        
        .swiper-slide-active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .slide-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }
        
        .btn:hover {
            background-color: transparent;
            color: white;
            border-color: white;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary);
        }
        
        .swiper-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.4);
        }
        
        /* Services Section */
        .services {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transform: translateY(50px);
            opacity: 0;
        }
        
        .service-card.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-icon {
            background-color: var(--primary);
            color: white;
            font-size: 2rem;
            padding: 1.5rem;
            text-align: center;
        }
        
        .service-content {
            padding: 1.5rem;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .service-content p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .service-link:hover {
            color: var(--secondary);
        }
        
        .service-link i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
 @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .animate-float {
    animation: float 3s ease-in-out infinite;
  }
         @keyframes float-1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
  }
  @keyframes float-2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(15px) translateX(-15px); }
  }
  @keyframes float-3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(-10px); }
  }
  @keyframes float-4 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(20px) translateX(15px); }
  }
  
  .animate-float-1 { animation: float-1 8s ease-in-out infinite; }
  .animate-float-2 { animation: float-2 10s ease-in-out infinite; }
  .animate-float-3 { animation: float-3 9s ease-in-out infinite; }
  .animate-float-4 { animation: float-4 7s ease-in-out infinite; }
  
  /* Swiper pagination */
  .swiper-pagination-bullet {
    @apply w-2.5 h-2.5 mx-1 bg-white/30 transition-all duration-300;
  }
  .swiper-pagination-bullet-active {
    @apply w-6 h-1.5 bg-gradient-to-r from-blue-400 to-purple-500 rounded-full;
  }
  
  /* Navigation arrows */
  .swiper-button-next:after, .swiper-button-prev:after {
    @apply text-xl font-bold;
  }

 @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
                z-index: 999;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 2rem;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }