* {
    user-select: none;
}

/* Card Styles */
.card {
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.2),
        0 0 0 1px rgba(13, 110, 253, 0.1);
}

.card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(145deg, #4cc9f0, #4361ee, #7209b7);
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.card:hover::after {
    opacity: 0.15;
}

.card a {
    color: #0d6efd;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card a span {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease;
    opacity: 0;
}

.card:hover a span {
    width: 85px;
    opacity: 1;
}

.card a i {
    transition: transform 0.3s ease;
}

.card:hover a i {
    transform: translateX(5px);
}

/* Updated Hero Section Styles */
.hero-section {
    background: #0f172a;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.cloud-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('cloud-8533106_640.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    z-index: 1;
}

.container.position-relative {
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(14, 165, 233, 0.15), transparent);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(125deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%230ea5e9" width="100" height="100"/></svg>') repeat;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.2), transparent 70%);
    animation: glow 4s ease-in-out infinite alternate;
}

.hero-section .display-4 {
    color: white;
    background: linear-gradient(145deg, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .lead {
    color: #94a3b8 !important;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Add particle effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.15) 0%, transparent 10%),
        radial-gradient(circle at 40% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 10%),
        radial-gradient(circle at 70% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 10%);
    animation: floatingParticles 20s linear infinite;
}

@keyframes floatingParticles {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.display-4 {
    background: linear-gradient(145deg, #2D3748, #1A365D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Button Styles */
.btn-lg {
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(145deg, #4361ee, #3730a3);
    border: none;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Feature Card Styles */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(67, 97, 238, 0.1);
}

/* Steps List Styles */
.steps-list {
    position: relative;
}

.step-item {
    position: relative;
    z-index: 1;
}

.steps-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    height: 100%;
    width: 2px;
    background: rgba(67, 97, 238, 0.2);
    z-index: 0;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Contact Form */
.form-control-lg {
    padding: 1rem;
    border-radius: 12px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    border-color: #4361ee;
}

/* Footer Styles */
.footer {
    background: linear-gradient(145deg, #1a1c23 0%, #24282f 100%);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.1);
}

.footer a:hover {
    color: white !important;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

/* Updated Navigation Styles */
/* Simplify navbar background */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    /* Remove backdrop-filter */
}

/* Reduce shadow complexity */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
}

/* Simplify transitions */
.card, .btn, .feature-card {
    transition: transform 0.2s ease;
}

/* Remove complex hover effects */
.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
    transform: translateY(-3px);
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #4361ee;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu.mega-menu {
    min-width: 600px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: block;
}

.dropdown:hover .mega-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(67, 97, 238, 0.1);
    transform: translateX(5px);
}

.dropdown-toggle .bi-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .bi-chevron-down {
    transform: rotate(-180deg);
}

@media (max-width: 992px) {
    .dropdown-menu.mega-menu {
        min-width: auto;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #4361ee;
}

.dropdown-menu {
    border: none;
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(67, 97, 238, 0.1);
    color: #4361ee;
    transform: translateX(5px);
}