h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    overflow-x: hidden;
}

body,
body * {
    scroll-behavior: smooth;
}

.hero-pattern {
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='202' height='33.7' viewBox='0 0 600 100'%3E%3Cg stroke='%2396A6CE' stroke-width='0.3' stroke-miterlimit='10' %3E%3Ccircle fill='%23FFFFFF' cx='0' cy='0' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='100' cy='0' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='200' cy='0' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='300' cy='0' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='400' cy='0' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='500' cy='0' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='600' cy='0' r='50'/%3E%3Ccircle cx='-50' cy='50' r='50'/%3E%3Ccircle fill='%23ffffff' cx='50' cy='50' r='50'/%3E%3Ccircle fill='%23ffffff' cx='150' cy='50' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='250' cy='50' r='50'/%3E%3Ccircle fill='%23ffffff' cx='350' cy='50' r='50'/%3E%3Ccircle fill='%23ffffff' cx='450' cy='50' r='50'/%3E%3Ccircle fill='%23ffffff' cx='550' cy='50' r='50'/%3E%3Ccircle cx='650' cy='50' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='0' cy='100' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='100' cy='100' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='200' cy='100' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='300' cy='100' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='400' cy='100' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='500' cy='100' r='50'/%3E%3Ccircle fill='%23FFFFFF' cx='600' cy='100' r='50'/%3E%3Ccircle cx='50' cy='150' r='50'/%3E%3Ccircle cx='150' cy='150' r='50'/%3E%3Ccircle cx='250' cy='150' r='50'/%3E%3Ccircle cx='350' cy='150' r='50'/%3E%3Ccircle cx='450' cy='150' r='50'/%3E%3Ccircle cx='550' cy='150' r='50'/%3E%3C/g%3E%3C/svg%3E");
}

/* 🌈 Animated Gradient */
.hero-gradient {
    background: linear-gradient(120deg, #eef2ff, #e0f2fed3, #f8fafc);
    background-size: 200% 200%;
    animation: gradientMove 12s ease infinite;
}


.bgPattern {
    background-color: #ffffff;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='976' height='976' viewBox='0 0 200 200'%3E%3Cpolygon fill='%23A8C8FF' points='100 0 0 100 100 100 100 200 200 100 200 0'/%3E%3C/svg%3E"); */
}


@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 🧊 Glass overlay */
.hero-overlay {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.4);
}

/* 🔵 Floating Orbs */
.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
}

.orb1 {
    width: 350px;
    height: 350px;
    background: #b6bbbe;
    top: 10%;
    left: 10%;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: #b9dbffbf;
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}

/* 🔳 Pattern */
.pattern {
    background-image: url("https://www.transparenttextures.com/pat  terns/cubes.png");
    opacity: 0.08;
}




/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
}

.header p {
    margin-top: 10px;
    color: #64748b;
    font-size: 16px;
}

/* Dynamic Section Styles */
.benefit-item {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #e0e7ff6e;
}

.benefit-item.active {
    background: white;
    border-color: #6366f1;
    /* Matches your orb color */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-image-container img {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.benefit-image-container img.active {
    display: block;
}

#overlay-title,
#overlay-desc {
    transition: opacity 0.3s ease;
}

.benefit-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
}

.benefit-image-container img.active {
    opacity: 1;
    position: relative;
    /* Keep the container height */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



.proof-section {
    background: #0a0a0a;
    padding: 100px 0;
    overflow: hidden;
}

/* The Marquee Container */
.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 120%;
    /* Overflows parent to hide edges */
    margin-left: -10%;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

.marquee-track-reverse {
    animation-direction: reverse;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* 🌈 Soft animated gradient base */
.hero-bg {
    background: linear-gradient(120deg, #c7e3ff52, #f5f7ff52, #c8e9ff56);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 🔵 Floating glow orbs */
.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(90px);
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

.orb1 {
    width: 320px;
    height: 320px;
    background: #93c5fd;
    top: 15%;
    left: 10%;
}

.orb2 {
    width: 380px;
    height: 380px;
    background: #c7d2fe;
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-35px);
    }
}

/* 🧊 Glass card */
.glass {
    background: rgba(255, 255, 255, 0.438);
    backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 18s linear infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Styling the Swiper pagination dots to match your brand */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;

    border-radius: 4px !important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.award-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(234, 179, 8, 0.15);
    transition: all 0.3s ease;
}

.award-card:hover {
    border-color: rgba(234, 179, 8, 0.5);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.08) 0%, rgba(234, 179, 8, 0.02) 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(234, 179, 8, 0.12);
}

.gold-text {
    background: linear-gradient(90deg, #f59e0b, #fde68a, #ca8a04);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-badge {
    background: linear-gradient(90deg, rgba(234, 179, 8, 0.2), rgba(234, 179, 8, 0.05));
    border-left: 3px solid #eab308;
}




.sash-container {
    background: #f8fafc;
    overflow: hidden;
}

.feature-sash {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

/* The "Unique" Card Shape */
.sash-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 40px 5px 40px 5px;
    /* Asymmetric corners */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
    position: relative;
}

.sash-card:hover {
    transform: translateY(-15px) rotate(1deg);
    border-color: #312e81;
    box-shadow: 0 25px 50px -12px rgba(49, 46, 129, 0.1);
}

/* Floating Number Label */
.sash-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: #312e81;
    opacity: 0.05;
    user-select: none;
}

.sash-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}


.mosaic-section {
    background-color: #0f172a;
    /* Deep dark blue */
    position: relative;
    overflow: hidden;
}

/* Massive background text to fill "empty" space */
.bg-ghost-text {
    position: absolute;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.mosaic-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* Tight gaps */
    position: relative;
    z-index: 2;
}

.mosaic-item {
    flex: 1 1 300px;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

/* Create the "Overlapping" feel on hover */
.mosaic-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #6366f1;
    transform: scale(1.02);
    z-index: 10;
}

.mosaic-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #818cf8;
    margin-bottom: 1rem;
    display: block;
}


/* Container for the cards */
.testimonial-wall {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    /* Mobile: 1 column */
    gap: 2rem;
}

/* Tablet and Desktop: 2 columns */
@media (min-width: 768px) {
    .testimonial-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Individual Card Styling */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-circle {
    color: #4f46e5;
    /* indigo-600 */
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.bgBlur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

#team .group.relative {
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.testimonial-marquee {
    display: flex;
    gap: 2rem;
    animation: testimonialScroll 40s linear infinite;
    width: max-content;
}

.testimonial-marquee:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

button{
    cursor: pointer;
}