:root {
    --primary: #00b4d8;
    --secondary: #0077b6;
    --dark: #121212;
    --light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}
.custom-nav-color {
        color: #3498db !important; 
    .custom-nav-color:hover {
        color: #2980b9 !important; 
    }
}

.navbar {
    background-color: rgba(18, 18, 18, 0.9) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    
}

.nav-link {
    color: var(--light) !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    font-weight: 600;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    bottom: -10px;
    left: 0;
}

.service-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.7);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,40,60,0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}
.footer{
    max-width: fit-content;

} 

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

.contact-form input,
.contact-form textarea {
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background-color: rgba(30, 30, 30, 0.9);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.25);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.progress {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background-color: var(--primary);
}

.bg-dark-custom {
    background-color: var(--dark);
}

.text-primary-custom {
    color: var(--primary) !important;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-indicator.show {
    opacity: 1;
}

#notification {
    z-index: 1000;
    max-width: 300px;
}

.success-notification {
    background-color: #ffffff00;
}

.error-notification {
    background-color: #1b91b1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delay-1 {
    animation: float 4s ease-in-out infinite 0.5s;
}

.animate-float-delay-2 {
    animation: float 4s ease-in-out infinite 1s;
}

.animate-float-delay-3 {
    animation: float 4s ease-in-out infinite 1.5s;
}

/* Hide scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Smooth horizontal scroll */
.overflow-x-auto {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.hidden {
    display: none;
}

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* Custom Animations */
    @keyframes fade-in-down {
        0% {
            opacity: 0;
            transform: translateY(-30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fade-in-up {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    
    .animate-fade-in-down {
        animation: fade-in-down 1s ease-out forwards;
    }
    
    .animate-fade-in-up {
        animation: fade-in-up 1s ease-out forwards;
    }
    
    .animate-float {
        animation: float 6s ease-in-out infinite;
    }
    
    .animate-float-delay-1 {
        animation: float 7s ease-in-out infinite 1s;
    }
    
    .animate-float-delay-2 {
        animation: float 5s ease-in-out infinite 1.5s;
    }
    
    .animate-delay-300 {
        animation-delay: 300ms;
    }
    
    .animate-delay-500 {
        animation-delay: 500ms;
    }
    .bg-primary {
        background-color: #3B82F6;
    }
    .text-primary {
        color: #3B82F6;
    }
    .bg-secondary {
        background-color: #0eb3dc;
    }
    .text-secondary {
        color: #0eb3dc;
    }
 .mobile-swipe-area {
    display: none;
  }
  
  @media (max-width: 767px) {
    .mobile-swipe-area {
      display: block;
      position: fixed;
      bottom: 0;
      width: 100%;
      padding: 15px;
      text-align: center;
    }
    
    .swipe-button {
      padding: 12px 24px;
      background-color: #4285f4;
      color: white;
      border: none;
      border-radius: 50px;
    }
  }
  @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @keyframes float-delay-1 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        @keyframes float-delay-2 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes float-delay-3 {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        .animate-float-delay-1 {
            animation: float-delay-1 3s ease-in-out infinite;
            animation-delay: 0.5s;
        }
        .animate-float-delay-2 {
            animation: float-delay-2 3s ease-in-out infinite;
            animation-delay: 1s;
        }
        .animate-float-delay-3 {
            animation: float-delay-3 3s ease-in-out infinite;
            animation-delay: 1.5s;
        }
        .animate-fade-in-down {
            animation: fadeInDown 1s ease-out;
        }
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-fade-in-up {
            animation: fadeInUp 1s ease-out;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-delay-300 {
            animation-delay: 0.3s;
        }
        .animate-delay-500 {
            animation-delay: 0.5s;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .hero {
            background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
        }
     /* Animation Keyframes */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Animation Classes */
    .animate-fade-in-up {
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .animate-delay-100 {
        animation-delay: 0.1s;
    }
    
    .animate-delay-200 {
        animation-delay: 0.2s;
    }
    
    .animate-delay-300 {
        animation-delay: 0.3s;
    }
    
    .animate-delay-400 {
        animation-delay: 0.4s;
    }
    
    /* Smooth transitions */
    .transform-gpu {
        transform: translateZ(0);
    }
    /* Infinite Scroll Animation */
    @keyframes infinite-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .animate-infinite-scroll {
        animation: infinite-scroll 20s linear infinite;
        display: inline-flex;
    }
    
    /* Pause on hover */
    .animate-infinite-scroll:hover {
        animation-play-state: paused;
    }
    
    /* Remove scrollbar */
    .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .scrollbar-hide::-webkit-scrollbar {
        display: none;
    }
    /* Mobile menu styles */
@media (max-width: 767px) {
  #mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
  }

  #mobile-menu:not(.hidden) {
    max-height: 500px;
    padding: 1rem 0;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--light) !important;
  }

  .nav-link::after {
    display: none;
  }

  header {
    position: relative;
    z-index: 1000;
  }
}
