@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Inter', sans-serif;
}
/* Styles for the slider */
.slider-container {
    position: relative;
    height: 80vh; /* Adjust height as needed */
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide.active {
    opacity: 1;
}
.slide-content {
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    border-radius: 0.5rem;
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: white;
}
/* Simple fade-in animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
/* stars animation */
.stars {
    pointer-events: none;
}
.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 5s infinite;
}
.star:nth-child(1) { top: 10%; left: 15%; width: 2px; height: 2px; animation-delay: 0.5s; }
.star:nth-child(2) { top: 25%; left: 80%; width: 3px; height: 3px; animation-delay: 1s; }
.star:nth-child(3) { top: 50%; left: 5%; width: 2px; height: 2px; animation-delay: 2s; }
.star:nth-child(4) { top: 70%; left: 90%; width: 4px; height: 4px; animation-delay: 3s; }
.star:nth-child(5) { top: 85%; left: 20%; width: 3px; height: 3px; animation-delay: 4s; }
.star:nth-child(6) { top: 40%; left: 45%; width: 2px; height: 2px; animation-delay: 5s; }
.star:nth-child(7) { top: 60%; left: 70%; width: 3px; height: 3px; animation-delay: 6s; }
@keyframes sparkle {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}
.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}
.delay-200 {
    animation-delay: 0.2s;
}
.delay-400 {
    animation-delay: 0.4s;
}
* {
    font-family: 'Inter', sans-serif;
}
/* Gradient Animations */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #667eea 75%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* Floating Animation */
.float-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
    animation: glowing 2s ease-in-out infinite;
}
@keyframes glowing {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.6); }
    50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 40px rgba(102, 126, 234, 0.4); }
    100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.6); }
}
/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Navbar Dropdown */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.card-hover:hover::before {
    left: 100%;
}
.card-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
/* Animated Background Shapes */
.bg-shape {
    position: absolute;
    opacity: 0.1;
    animation: morphing 10s ease-in-out infinite;
}
@keyframes morphing {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}
/* Modern Button */
.modern-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.modern-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.modern-btn:hover::after {
    width: 300px;
    height: 300px;
}
/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Loading Animation */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Mobile Menu Animation */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.mobile-menu.active {
    transform: translateX(0);
}
.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
}
.gradient-text {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.card-shine:hover::before {
    left: 100%;
}
.glass-morphism {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
}
.gradient-text {
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.icon-glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}
.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease-out;
    z-index: 1;
}
.service-card:hover::before {
    left: 100%;
}
.service-card:hover {
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}
.icon-container {
    position: relative;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}
.service-card:hover .icon-container {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-10deg);
}
.service-icon {
    transition: all 0.4s ease;
}
.btn-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--btn-start), var(--btn-end));
    transition: all 0.3s ease;
}
.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.btn-modern:hover::before {
    left: 100%;
}
.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}
.shape:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { top: 60%; right: 10%; animation-delay: 5s; }
.shape:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 10s; }
.shape:nth-child(4) { top: 40%; right: 30%; animation-delay: 15s; }
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}
.title-gradient {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.reveal-animation {
    opacity: 1;
    transform: translateY(50px);
}
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}
.glow-effect {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    transition: box-shadow 0.3s ease;
}
.service-card:hover .glow-effect {
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
}
/* //-------------------------- */
/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: fadeInUp 0.8s ease-out;
}
.nav-link {
    transition: all 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #fbbf24;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after {
    width: 100%;
}
/* Slider Styles */
.slider-container {
    height: 100vh;
    position: relative;
}
.slide {
    animation: fadeInUp 1s ease-out;
}
.slide h1 {
    animation: fadeInLeft 1.2s ease-out 0.3s both;
}
.slide p {
    animation: fadeInLeft 1.2s ease-out 0.6s both;
}
.slide .flex {
    animation: fadeInLeft 1.2s ease-out 0.9s both;
}
/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
.section-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.section-bg2 {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
/* Card Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}
.service-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }
.service-card:nth-child(4) { animation-delay: 0.7s; }
.service-card:nth-child(5) { animation-delay: 0.9s; }
.service-card:nth-child(6) { animation-delay: 1.1s; }
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}
.icon-container {
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    animation: scale 3s ease-in-out infinite;
}
.btn-modern {
    background: linear-gradient(45deg, var(--btn-start), var(--btn-end));
    transition: all 0.3s ease;
}
.btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
/* Title Styles */
.title-gradient {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}
.glow-text {
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}
/* Floating Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.shape {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}
.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.shape:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}
.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}
.shape:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}
/* Feature Cards */
.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    animation: fadeInRight 1s ease-out;
}
.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.15);
}
.icon-wrapper {
    background: linear-gradient(45deg, #616468, #8d8787);
    animation: rotate 10s linear infinite;
}
.hero-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(139, 92, 246, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInLeft 1s ease-out;
}
.pulse-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
/* Stats Counter */
.stats-counter {
    animation: fadeInUp 1s ease-out 1s both;
}
/* Feature Cards Right Side */
.feature-card {
    background: white;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.3s; }
.feature-card:nth-child(3) { animation-delay: 0.5s; }
.feature-card:nth-child(4) { animation-delay: 0.7s; }
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.feature-card .icon-container {
    /* background: linear-gradient(45deg, #3b82f6, #8b5cf6); */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1rem;
    animation: scale 4s ease-in-out infinite;
}
/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.particle:nth-child(odd) {
    animation-direction: reverse;
}
/* Timeline Styles */
.timeline-step {
    animation: fadeInUp 0.8s ease-out;
}
.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.3s; }
.timeline-step:nth-child(3) { animation-delay: 0.5s; }
.timeline-step:nth-child(4) { animation-delay: 0.7s; }
/* Testimonial Cards */
.testimonial-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.8);
}
/* Blog Cards */
.blog-card {
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.3s ease;
}
.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.3s; }
.blog-card:nth-child(3) { animation-delay: 0.5s; }
.blog-card:hover {
    transform: translateY(-10px);
}
/* Contact Form */
.contact-form {
    animation: fadeInRight 1s ease-out;
}
.contact-info {
    animation: fadeInLeft 1s ease-out;
}
/* Form Elements */
input, textarea {
    transition: all 0.3s ease;
}
input:focus, textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}
/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}
/* Section Divider */
.section-divider {
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}
/* Responsive Animations */
@media (max-width: 768px) {
    .service-card, .feature-card, .blog-card {
        animation-delay: 0s;
    }
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #0077b6, #33a6df );
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #33a6df, #0077b6);
}
/* Custom styles for intl-tel-input to match Tailwind design */
.iti {
    width: 100% !important;
}
.iti__input {
    width: 100% !important;
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0.75rem !important;
    color: white !important;
    font-size: 1rem !important;
}
.iti__input::placeholder {
    color: rgba(156, 163, 175, 1) !important;
}
.iti__input:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.5) !important;
    border-color: transparent !important;
}
.iti__dropdown {
    background: rgba(31, 41, 55, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}
.iti__dropdown-content {
    color: white !important;
}
.iti__country:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}
.iti__country.iti__highlight {
    background: rgba(6, 182, 212, 0.3) !important;
}
.iti__selected-flag {
    background: transparent !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.iti__arrow {
    border-top-color: rgba(255, 255, 255, 0.7) !important;
}
/* Mobile Menu and Dropdown Styles */
/* Mobile menu base styles */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: -1;
}
.mobile-menu.active::before {
    opacity: 1;
    visibility: visible;
}
/* Mobile dropdown styles */
.mobile-dropdown {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.mobile-dropdown:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
.mobile-dropdown-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mobile-dropdown-btn:hover {
    color: #8b5cf6;
}
.mobile-dropdown-btn svg {
    transition: transform 0.3s ease;
}
.mobile-dropdown-menu {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
}
.mobile-dropdown-menu a {
    transition: all 0.2s ease;
    border-radius: 6px;
    padding: 8px 0;
}
.mobile-dropdown-menu a:hover {
    background: rgba(139, 92, 246, 0.1);
    padding-left: 8px;
    margin-left: -8px;
    margin-right: -8px;
}
/* Desktop dropdown styles */
.dropdown {
    position: relative;
}
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 50;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
/* Button and interaction styles */
#mobile-menu-btn {
    transition: transform 0.2s ease;
}
#mobile-menu-btn:hover {
    transform: scale(1.05);
}
#close-menu {
    transition: transform 0.2s ease, color 0.2s ease;
}
#close-menu:hover {
    transform: scale(1.1);
    color: #dc2626;
}
/* General mobile menu link styles */
.mobile-menu nav > a {
    transition: all 0.2s ease;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 4px 0;
    display: block;
}
.mobile-menu nav > a:hover {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    transform: translateX(8px);
}
/* Text gradient utility */
.text-gradient {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Modern button styles */
.modern-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.modern-btn:hover::before {
    left: 100%;
}
.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu {
        width: 100%;
        max-width: 320px;
    }
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}