/* All existing styles from testing.html */
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
        }
        .section-title {
            position: relative;
            display: inline-block;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            bottom: -8px;
            left: 0;
            background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
            border-radius: 2px;
        }
        .nav-link {
            position: relative;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #2563eb;
            transition: width 0.3s ease;
        }
        .nav-link:hover:after {
            width: 100%;
        }
        .hero-bg {
            background-image: url('/images/hero-bg.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .services-bg {
            background-image: url('/images/services-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .contact-bg {
            background-image: url('/images/contact-bg.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        .overlay {
            background-color: rgba(0, 0, 0, 0.7);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .testimonial-card {
            position: relative;
        }
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 10px;
            font-size: 80px;
            color: rgba(37, 99, 235, 0.1);
            font-family: serif;
            z-index: 0;
        }
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.3;
            z-index: -1;
        }
        .shape-1 {
            width: 300px;
            height: 300px;
            background-color: #2563eb;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        .shape-2 {
            width: 200px;
            height: 200px;
            background-color: #7c3aed;
            bottom: 20%;
            right: 10%;
            animation: float-reverse 7s ease-in-out infinite;
        }
        .shape-3 {
            width: 150px;
            height: 150px;
            background-color: #f59e0b;
            top: 60%;
            left: 20%;
            animation: float 6s ease-in-out infinite;
        }
        .hamburger {
            cursor: pointer;
            width: 24px;
            height: 24px;
            transition: all 0.25s;
            position: relative;
        }
        .hamburger-top,
        .hamburger-middle,
        .hamburger-bottom {
            position: absolute;
            top: 0;
            left: 0;
            width: 24px;
            height: 2px;
            background: #fff;
            transform: rotate(0);
            transition: all 0.5s;
        }
        .hamburger-middle {
            transform: translateY(7px);
        }
        .hamburger-bottom {
            transform: translateY(14px);
        }
        .open .hamburger-top {
            transform: rotate(45deg) translateY(6px) translateX(6px);
        }
        .open .hamburger-middle {
            display: none;
        }
        .open .hamburger-bottom {
            transform: rotate(-45deg) translateY(6px) translateX(-6px);
        }
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .mobile-menu.open {
            max-height: 500px;
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #1e293b;
            color: white;
            padding: 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .cookie-consent.active {
            transform: translateY(0);
        }
        
        .spinner {
            width: 70px;
            height: 70px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #2563eb;
            animation: spin 1s ease-in-out infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .price-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .price-card:hover {
            border-color: #2563eb;
            transform: scale(1.03);
        }
        .price-card.popular {
            border-color: #2563eb;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: #f59e0b;
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .subdomain-card {
            transition: all 0.3s ease;
            perspective: 1000px;
        }
        .subdomain-card:hover {
            transform: translateY(-5px);
        }
        .subdomain-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        .subdomain-card:hover .subdomain-card-inner {
            transform: rotateY(10deg) rotateX(5deg);
        }

       
        
        /* Metrics Counter */
        .metrics-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 4rem 0;
            color: white;
        }
        
        .metric-card {
            text-align: center;
            padding: 2rem;
        }
        
        .metric-value {
            font-size: 3rem;
            font-weight: bold;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 0.5rem;
            color: #f59e0b;
        }
        
        .metric-label {
            font-size: 1.25rem;
            color: #cbd5e1;
        }
        /* Testimonial Slider */
.testimonial-slider {
    overflow: hidden;
    position: relative;
    padding: 0 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-prev, .testimonial-next {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: #1d4ed8;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-dots button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots button.dot-active {
    background-color: #2563eb;
    transform: scale(1.2);
}

.testimonial-dots button:hover:not(.dot-active) {
    background-color: #93c5fd;
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 50%;
    }
}
/* Service Page Styles */
.service-hero-bg {
    background-image: url('/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.step-content {
    padding-top: 10px;
}

/* FAQ Styles */
.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question.active {
    color: #2563eb;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-answer.show {
    max-height: 500px;
}

/* Animation for headings */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
/* Enhanced Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #1e293b; /* Dark color for visibility */
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: 0;
    left: 20%;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.section-title:hover:after {
    transform: scaleX(1);
}

/* Ensure text visibility */
.bg-white .section-title {
    color: #1e293b;
}

.bg-dark .section-title,
.bg-primary .section-title {
    color: white;
}

.hero-bg .section-title {
    color: white;
}
/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #f8fafc;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite 1s;
}

.animate-pulse {
    animation: pulse 3s ease infinite;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #2563eb;
    animation: spin 1s ease-in-out infinite;
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: 0;
    left: 20%;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.section-title:hover:after {
    transform: scaleX(1);
}

/* Navigation Links */
.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.card-hover:hover {
    transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background-color: #2563eb;
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background-color: #7c3aed;
    bottom: 20%;
    right: 10%;
    animation: float 7s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background-color: #f59e0b;
    top: 60%;
    left: 20%;
    animation: float 6s ease-in-out infinite 2s;
}

/* Mobile Menu Styles */
.hamburger {
    cursor: pointer;
    width: 24px;
    height: 24px;
    transition: all 0.25s;
    position: relative;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #fff;
    transform: rotate(0);
    transition: all 0.5s;
}

.hamburger-middle {
    transform: translateY(7px);
}

.hamburger-bottom {
    transform: translateY(14px);
}

.open .hamburger-top {
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
    display: none;
}

.open .hamburger-bottom {
    transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: white;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.active {
    transform: translateY(0);
}

/* Testimonial Slider */
.testimonial-slider {
    overflow: hidden;
    position: relative;
    padding: 0 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-slide {
        min-width: 50%;
    }
}

.testimonial-prev, .testimonial-next {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: #1d4ed8;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-dots button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots button.dot-active {
    background-color: #2563eb;
    transform: scale(1.2);
}

.testimonial-dots button:hover:not(.dot-active) {
    background-color: #93c5fd;
}

/* FAQ Styles */
.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question.active {
    color: #2563eb;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.faq-answer.show {
    max-height: 500px;
}

/* Animate on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Button Animations */
.btn-hover-animate {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-animate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Text Colors */
.text-primary {
    color: #2563eb;
}

.text-accent {
    color: #f59e0b;
}

/* Background Colors */
.bg-dark {
    background-color: #1e293b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-bg, .services-bg, .contact-bg, .blog-hero-bg {
        background-attachment: scroll;
    }
    
    .floating-shape {
        display: none;
    }
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Advanced Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #2563eb, #7c3aed, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Premium Card Hover Effects */
.premium-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Advanced Button Effects */
.btn-premium {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2563eb, #7c3aed, #f59e0b);
    background-size: 200% 200%;
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.btn-premium:hover::before {
    opacity: 1;
    animation: gradientShift 3s ease infinite;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Floating Particles Effect */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: linear-gradient(45deg, #2563eb, #7c3aed);
    opacity: 0.6;
    animation: float-particle 15s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

/* Advanced Section Dividers */
.section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.section-divider.reverse::before {
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* 3D Hover Effect */
.hover-3d {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.03);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}

/* Glow Effect */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
    opacity: 1;
}

/* Advanced Input Fields */
.premium-input {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.8);
}

.premium-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    background: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#2563eb, #7c3aed);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Animated Underline Effect */
.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transition: width 0.4s ease, left 0.4s ease;
}

.animated-underline:hover::after {
    width: 100%;
    left: 0;
}

/* Advanced Pricing Card */
.pricing-card-premium {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
}

.pricing-card-premium:hover {
    border-color: #2563eb;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.pricing-card-premium .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Advanced Testimonial Card */
.testimonial-card-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Advanced Tooltip */
.tooltip-premium {
    position: relative;
}

.tooltip-premium::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: #2563eb;
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip-premium:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Advanced Loading Animation */
.loading-spinner-premium {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    border-top-color: #2563eb;
    animation: spin 1s linear infinite;
    position: relative;
}

.loading-spinner-premium::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top-color: #7c3aed;
    animation: spin 1.5s linear infinite reverse;
}

/* Advanced Floating Animation */
.float-animation {
    animation: float-premium 6s ease-in-out infinite;
}

@keyframes float-premium {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

/* Advanced Background Patterns */
.bg-pattern-dots {
    background-image: radial-gradient(rgba(37, 99, 235, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-pattern-grid {
    background-image: linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Advanced Transition Effects */
.transition-all-smooth {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .glass-effect {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .section-divider {
        height: 60px;
    }
}
/* Floating Animations for Blog Cards */
.blog-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Animation */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay-1 {
    animation: float 6s ease-in-out infinite 0.5s;
}

.animate-float-delay-2 {
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Image Zoom Effect */
.blog-card img {
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover img {
    transform: scale(1.1);
}

/* Arrow Animation */
.group:hover span {
    transform: translateX(5px);
}

/* Gradient Overlay */
.blog-card .relative::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .relative::after {
    opacity: 1;
}

/* Staggered Animation */
@media (min-width: 768px) {
    .blog-card:nth-child(3n+1) {
        animation-delay: 0s;
    }
    .blog-card:nth-child(3n+2) {
        animation-delay: 0.3s;
    }
    .blog-card:nth-child(3n+3) {
        animation-delay: 0.6s;
    }
}

/* Pulse Effect on Hover */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.blog-card:hover {
    animation: pulse 1.5s infinite;
}

/* Subtle Tilt Effect */
.blog-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.blog-card:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg) scale(1.02);
}

/* New Modal Styles */
.modal-fade {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-fade.active {
    opacity: 1;
    visibility: visible;
}

.modal-slide-up {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-fade.active .modal-slide-up {
    transform: translateY(0);
    opacity: 1;
}

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Custom Button Styles for Modal */
.btn-primary-gradient {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
}
.btn-primary-gradient:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #6d2fcc 100%);
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid #cbd5e1;
    color: #4a5568;
}
.btn-secondary-outline:hover {
    background-color: #f0f4f8;
    border-color: #a0aec0;
}

/* Ensure icons are visible */
.fa-check-circle {
    color: #22c55e; /* green-500 */
}
/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    color: #1f2937;
}

/* Contact Form Container */
#contact-form {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background: url('https://rosuma.tech/images/pattern-bg.png') center/cover, #ffffff;
    background-blend-mode: overlay;
}

/* Form Header */
#contact-form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

#contact-form h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #f59e0b);
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Form Fields */
.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.15s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.2);
    background: white;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Input Icons */
.form-group input[name="name"],
.form-group input[name="email"],
.form-group input[name="phone"],
.form-group input[name="business"],
.form-group input[name="location"] {
    padding-left: 36px;
}

.form-group::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10px;
    width: 18px;
    height: 18px;
    background-size: contain;
    opacity: 0.6;
}

/* Validation Errors */
.invalid-field {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
}

.validation-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
    position: relative;
    font-weight: 500;
}

/* Submit Button */
button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4b5ef4 0%, #8b5cf6 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    position: relative;
    overflow: hidden;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 94, 244, 0.4);
}

button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinner Animation */
.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading .loading-spinner {
    display: inline-block;
}

/* Success and Error Notifications */
.animate-pop-in {
    animation: popIn 0.2s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Notification Buttons */
.btn-premium {
    background: linear-gradient(135deg, #4b5ef4 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 94, 244, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 140, 126, 0.4);
}

/* Responsive Design */
@media (max-width: 640px) {
    #contact-form {
        padding: 15px;
        margin: 15px;
    }

    #contact-form h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    button[type="submit"] {
        padding: 10px;
        font-size: 1rem;
    }
}
#educationLevelOther {
    display: block !important; /* Force display block */
    opacity: 1 !important; /* Force opaque */
    height: auto !important; /* Ensure it has height */
    min-height: 30px !important; /* Give it a minimum height to be noticeable */
}