/* Global Styles */
:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #64748b;
    --accent-color: #8b5cf6;
    --light-bg: #f8fafc;
    --dark-text: #1e293b;
    --body-font: 'Plus Jakarta Sans', sans-serif;
    --heading-font: 'Outfit', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--dark-text);
    overflow-x: hidden;
}
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.2px;
}
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
}
.btn {
    transition: 0.2s ease-in-out;
}
.btn:hover {
    transform: translateY(-3px);
}
.card {
    border-radius: 18px !important;
}
.hover-card:hover {
    transform: translateY(-6px);
    transition: 0.3s;
}
.text-gradient {
    background: linear-gradient(90deg,#0066ff,#00c6ff);
    -webkit-background-clip: text;
    color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-soft-primary {
    background-color: rgba(79, 70, 229, 0.1);
}

.text-purple {
    color: #9333ea;
}

.bg-purple {
    background-color: #9333ea;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #ffffff, var(--light-bg));
}

.hero-blob {
    width: 500px;
    height: 500px;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2) !important;
}

/* Cards */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.icon-lg {
    width: 64px;
    height: 64px;
}

/* Accordion */
.custom-accordion .accordion-button {
    background-color: #fff;
    color: var(--dark-text);
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(79, 70, 229, 0.05);
    color: var(--primary-color);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Pricing */
.pricing-card {
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
}

/* Footer */
.hover-white:hover {
    color: #fff !important;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-card {
    animation: float 4s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 2s;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-section .d-flex {
        justify-content: center;
    }

    .hero-section img {
        margin-top: 3rem;
    }
}
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-left: 6px solid #4caf50;
    z-index: 9999;
    display: none;
    animation: fadeInUp 0.6s ease;
}
@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.dark-mode .sales-popup {
    background: #1e1e1e;
    color: white;
}
.countdown-timer {
    position: sticky;
    top: 55px;
    z-index: 9999;
    background: linear-gradient(90deg,#ff416c,#ff4b2b);
}
.dark-mode .countdown-timer {
    background: linear-gradient(90deg,#222,#444);
}

.project-card {
    transition: all 0.25s ease;
    border-radius: 18px !important;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0d6efd !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #0d6efd !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Glass + Glow */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 30px;
    transition: 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #0d6efd;
}

/* Gradient Glow Border */
/* .glass-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 24px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1, #d63384);
    opacity: 0;
    transition: .3s ease;
} */
.glass-card:hover::before {
    opacity: 1;
}

/* Avatar */
.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Verified Badge */
.verified-badge {
    padding: 4px 8px;
    background: #e8f3ff;
    color: #0d6efd;
    font-size: 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.verified-badge i {
    font-size: 14px;
}

/* Reaction row */
.reactions {
    font-size: 20px;
    margin-bottom: 12px;
    opacity: .85;
}
.reactions span {
    margin-right: 10px;
    cursor: pointer;
    transition: .2s;
}
.reactions span:hover {
    transform: scale(1.25);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    #testimonials {
        background: #0e0e0e !important;
    }
    .glass-card {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .glass-card p,
    .glass-card small {
        color: #cfd3d8 !important;
    }
    .swiper-button-next,
    .swiper-button-prev {
        color: #fff !important;
    }
    .swiper-pagination-bullet {
        background: #fff !important;
    }
}

/* Auto-height fix */
.testimonialSwiper {
    padding: 30px 50px;
}
.swiper-slide {
    height: auto !important;
}
.project-card img {
    height: 220px;        /* Fixed equal height */
    object-fit: cover;    /* Crops nicely without distortion */
    width: 100%;
    border-radius: 12px;
}
 .animate-float {
        animation: float 6s ease-in-out infinite;
    }
    .delay-2 {
        animation-delay: 2s;
    }
    @keyframes float {
        0% { transform: translateY(0); opacity: 0.8; }
        50% { transform: translateY(-15px); opacity: 1; }
        100% { transform: translateY(0); opacity: 0.8; }
    }

    /* Hover Glow Effect */
    .accordion-button:hover {
        background: rgba(0, 123, 255, 0.08);
        transition: 0.3s;
    }

    /* Active item highlight */
    .accordion-button:not(.collapsed) {
        background: rgba(0, 123, 255, 0.15) !important;
        color: #0d6efd !important;
        font-weight: 700;
    }
