﻿
/* Organized & Cleaned CSS */
/* ==== Backgrounds ==== */
body,
.bg {
    background: linear-gradient(to bottom, #001f3f, #ffffff);
}

.bg-orange {
    background: linear-gradient(135deg, #ff7700, #cc6600) !important;
    border: none;
}

/* ==== Typography & Headings ==== */
.heading-glow {
    font-size: 1.5rem;
    color: #00558C;
}

.text-gradient,
.fd-heading {
    background: linear-gradient(90deg, #00558C, #FF8746);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.highlight-orange {
    color: #FF8746;
}

/* ==== Buttons ==== */
.btn-glow {
    border-radius: 30px;
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #00558C;
    color: #00558C;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-glow:hover {
        background: linear-gradient(to right, #00558C, #cc6600);
        color: #fff;
        border: none;
        box-shadow: 0 0 12px #cc6600;
    }

.btn-fd {
    background: linear-gradient(to right, #FF8746, #00558C);
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

    .btn-fd:hover {
        background: linear-gradient(to right, #00558C, #FF8746);
        box-shadow: 0 0 12px rgba(255, 135, 70, 0.5);
        transform: scale(1.05);
    }

/* ==== Badge & Text Effects ==== */
.badge-gradient-text {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 50rem;
    font-size: 0.95rem;
    border: 2px solid #cc6600;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #003366, #cc6600);
    transition: all 0.3s ease;
}

    .badge-gradient-text:hover {
        background-image: linear-gradient(to right, #cc6600, #003366);
    }

.min-vh-50 {
    min-height: 50vh;
}

/* ==== Animations ==== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px #cc6600;
    }

    50% {
        box-shadow: 0 0 20px #00558C;
    }
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 102, 0, 0.3);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(204, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(204, 102, 0, 0);
    }
}

/* ==== Card Styles ==== */
.wow-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 2px solid transparent;
    animation: pulseBorder 3s infinite;
    box-shadow: 0 0 0 2px transparent;
}

    .wow-card:hover {
        box-shadow: 0 12px 30px rgba(0, 85, 140, 0.15);
        border-image: linear-gradient(45deg, #00558C, #cc6600) 1;
    }

.icon-glow,
.icon-glow-dual {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: float 2.5s ease-in-out infinite, glow 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 85, 140, 0.4);
}

.icon-glow {
    background: linear-gradient(135deg,#F15A29, #F15A29);
    color: #fff;
}

.icon-glow-dual {
    background: linear-gradient(135deg, #00558C, #FF8746);
    box-shadow: 0 0 15px rgba(255, 135, 70, 0.5);
}

    .icon-glow-dual i {
        color: #FF8746 !important;
    }


.swiper-slide {
    display: flex;
    justify-content: center;
}

.fd-card {
    width: 320px;
    background: linear-gradient(135deg, #fff5eb, #e8f4fd);
    border-radius: 1.5rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease-in-out;
    position: relative;
}

    .fd-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 20px 40px rgba(255, 135, 70, 0.2);
        background: linear-gradient(135deg, #fef1e6, #e0f0ff);
        border-color: #FF8746;
    }

.fd-card-img {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .fd-card-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.fd-card:hover img {
    transform: scale(1.05);
}

.fd-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 0.5rem;
}

.rate-text {
    font-weight: 500;
    color: #FF8746;
    margin-bottom: 1rem;
}

.rate-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF8746;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ==== Utilities ==== */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-effect {
    transition: all 0.3s ease-in-out;
}

    .hover-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.collection h5 {
    min-height: 50px;
}

.shadow-effect {
    background: #1f3c88;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #273d70;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .shadow-effect p {
        font-size: 16px;
        line-height: 1.6;
        color: #e0e0e0;
        margin-bottom: 15px;
    }

.testimonial-name {
    background: #ff7a00;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(255, 122, 0, 0.3);
}

#customers-testimonials .item {
    padding: 20px;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
}

#customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    transform: scale(1);
}

#customers-testimonials.owl-carousel .owl-dots {
    text-align: center;
    padding-top: 20px;
}

    #customers-testimonials.owl-carousel .owl-dots .owl-dot span {
        display: inline-block;
        width: 14px;
        height: 14px;
        margin: 5px;
        background: #ccc;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    #customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
    #customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
        background: #ff7a00;
        transform: scale(1.2);
    }

.text-orange {
    color: #ff7a00 !important;
}

.collection-section {
    background: linear-gradient(to bottom right, #f4f7fb, #ffffff);
}

.sparkle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: sparkleMove 15s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes sparkleMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

/* Updated card background to light blue */
.wow-card {
    background: linear-gradient(135deg, #e6f0fa, #f5faff);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #d3e5f4;
    /* 🔷 Equal width/height ratio */
    aspect-ratio: 1 / 1;
    height: auto;
    /* Flex to align button at bottom */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.icon-glow svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(0, 123, 255, 0.3));
}

.wow-card:hover .icon-glow svg {
    filter: drop-shadow(0 0 6px rgba(255, 123, 0, 0.5));
}

.wow-card h5 {
    min-height: 48px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Force square ratio in IE/fallback (if needed) */
@supports not (aspect-ratio: 1 / 1) {
    .wow-card::before {
        content: "";
        display: block;
        padding-top: 100%;
    }
}

/* Optional: Responsive fix */
@media (max-width: 767px) {
    .wow-card {
        aspect-ratio: unset;
        height: auto;
        min-height: 320px;
    }
}

.wow-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* ICON GLOW with consistent size */
.icon-glow svg {
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(0, 123, 255, 0.3));
}

.wow-card:hover .icon-glow svg {
    filter: drop-shadow(0 0 6px rgba(255, 123, 0, 0.5));
}

/* Heading glow */
.heading-glow {
    animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 115, 0, 0.3), 0 0 10px rgba(0, 86, 179, 0.3);
    }

    100% {
        text-shadow: 0 0 12px rgba(255, 115, 0, 0.6), 0 0 20px rgba(0, 86, 179, 0.5);
    }
}

/* Gradient text effect */
.text-gradient {
    background: linear-gradient(to right, #ff7300, #0056b3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card badge styling */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(to right, #ff6f00, #ffa500);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    z-index: 2;
}

/* Explore button */
.btn-glow {
    background: linear-gradient(to right, #ff7300, #ffaf00);
    color: white;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(255, 115, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
}

    .btn-glow:hover {
        background: linear-gradient(to right, #ff9600, #ffc400);
        box-shadow: 0 6px 16px rgba(255, 123, 0, 0.6);
        transform: scale(1.05);
    }

/* Optional responsiveness */
@media (max-width: 576px) {
    .wow-card {
        padding: 25px 15px;
    }

    .icon-glow svg {
        width: 36px;
        height: 36px;
    }
}

.bond-card {
    background-color: #fff;
    border: 1px solid #dbe1ea;
    border-left: 5px solid #003366;
    border-radius: 16px;
    padding: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .bond-card:hover {
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
        transform: translateY(-6px);
    }

.bond-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

.bond-badge {
    display: inline-block;
    background: #ffcb05;
    color: #000;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bond-info {
    font-size: 0.9rem;
    color: #222;
    flex-grow: 1;
}

    .bond-info i {
        color: #003366;
        margin-right: 8px;
        width: 18px;
    }

.btn-buy {
    background: #003366;
    color: #fff;
    padding: 6px 16px;
    font-size: 0.9rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .btn-buy:hover {
        background: #001d3d;
    }

.btn-share {
    border: 1px solid #003366;
    color: #003366;
    background: transparent;
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-left: 10px;
}

    .btn-share:hover {
        background-color: #003366;
        color: #fff;
    }

.section-title {
    color: #000;
    font-weight: 700;
    margin-bottom: 2rem;
}

.swiper {
    padding-bottom: 50px;
}


.swiper-slide {
    display: flex;
    height: auto;
    width: auto;
}

.bond-card {
    width: 100%;
    height: 510px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card {
    background-color: #fff;
    border: 1px solid #dbe1ea;
    border-left: 5px solid #003366;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .product-card:hover {
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
        transform: translateY(-6px);
    }

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.product-badge {
    display: inline-block;
    background: #ffcb05;
    color: #000;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-explore {
    background: #003366;
    color: #fff;
    padding: 6px 16px;
    font-size: 0.9rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    width: 100%;
}

    .btn-explore:hover {
        background: #001d3d;
    }

.products-fd-section {
    background-color: #f8f9fa;
}

.fd-heading {
    font-size: 1.75rem;
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
}

.text-highlight-orange {
    color: #FF6A00;
}

.swiper-slide {
    display: flex;
    height: 100%;
}

.fd-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #003366;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
}

    .fd-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 24px rgba(0, 51, 102, 0.2);
        border-left-color: #0055aa;
    }

.fd-product-logo img {
    max-width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.fd-rate-badge {
    background: radial-gradient(circle at center, #FF6A00, #ff9800);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
    margin-bottom: 1rem;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(255, 106, 0, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
    }
}

.fd-rate-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.fd-buy-btn,
.fd-share-btn {
    background: #FF6A00;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.fd-share-btn {
    background: #003366;
}

    .fd-buy-btn:hover,
    .fd-share-btn:hover {
        background: #e55a00;
        color: #fff;
    }




.hero-section {
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(180deg, rgba(243, 248, 255, 0.9) 0%, #ffffff 65%);
    overflow: hidden;
}

.section-shell {
    width: min(92vw, 1320px);
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 1500px) {
    .section-shell {
        width: 1400px;
    }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.4;
    z-index: 0;
}

.hero-shape-one {
    width: 300px;
    height: 300px;
    background: #b3d4ff;
    top: -60px;
    left: -40px;
}

.hero-shape-two {
    width: 260px;
    height: 260px;
    background: #ffd2bd;
    bottom: -80px;
    right: -40px;
}

.hero-pill {
    background: rgba(0, 85, 140, 0.1);
    color: #00558C;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-headline {
    line-height: 1.2;
}

.hero-search-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hero-trust-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #3f4b5b;
}

.hero-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.metric-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 85, 140, 0.08);
    box-shadow: 0 15px 35px rgba(0, 85, 140, 0.08);
}

    .metric-card i {
        font-size: 1.8rem;
    }

.hero-cta-group .btn-outline-dark {
    border-color: #003366;
    color: #003366;
}

    .hero-cta-group .btn-outline-dark:hover {
        background: #003366;
        color: #fff;
    }

.hero-search {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

    .hero-search .form-control {
        box-shadow: none;
        font-weight: 500;
        color: #0b2540;
    }

        .hero-search .form-control::placeholder {
            color: #8b99a7;
        }

        .hero-search .form-control:focus {
            box-shadow: none;
            background-color: transparent;
        }

.hero-search-btn {
    background: linear-gradient(120deg, #fe7b2d, #ffb347);
    color: #fff;
    border: none;
}

.hero-chip {
    border: 1px solid #e1e6ef;
    background: #fff;
    color: #003366;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .hero-chip:hover {
        background: #00558C;
        color: #fff;
        border-color: #00558C;
    }

.hero-visual-card {
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), rgba(0, 58, 99, 0.85));
    border-radius: 36px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 40px 70px rgba(7, 28, 63, 0.35);
    transform-style: preserve-3d;
}

.hero-orbit-dot {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.35;
}

.hero-dot-one {
    top: -30px;
    right: 20%;
    background: #ffb199;
}

.hero-dot-two {
    bottom: -20px;
    left: 15%;
    background: #6ec3ff;
}

.hero-chart-shell {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(204, 229, 255, 0.85));
    border-radius: 26px;
    padding: 24px 28px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 15px 25px rgba(255, 255, 255, 0.4), 0 25px 50px rgba(8, 23, 53, 0.35);
    transform: perspective(900px) rotateX(7deg);
    transform-origin: center top;
}

.hero-floating-card {
    background: #0b2c4d;
    color: #fff;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px;
    flex-wrap: wrap;
}

    .hero-floating-card h4 {
        font-weight: 700;
    }

.hero-left .btn-outline-dark {
    border-color: #003366;
    color: #003366;
}

    .hero-left .btn-outline-dark:hover {
        background: #003366;
        color: #fff;
    }

.hero-right {
    position: relative;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 18px;
    padding: 12px 18px;
    width: max-content;
    text-align: left;
}

.hero-badge-top {
    top: 18px;
}

.hero-badge-bottom {
    bottom: 18px;
}

.ball-svg {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 260px;
    height: 260px;
    animation: bounce 4s infinite ease-in-out;
    opacity: 0.2;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

canvas#graphChart {
    width: 100% !important;
    height: 350px !important;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
    .hero-floating-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual-card {
        padding: 24px 20px;
    }

    .hero-chart-shell {
        transform: none;
    }

    .kyc-visual-stack {
        min-height: 260px;
        margin-bottom: 1.5rem;
    }
}

.kyc-journey {
    background: linear-gradient(135deg, #f4f9ff, #edf4ff);
    border-radius: 32px;
    margin: 40px 0;
    padding: 40px 30px;
}

.kyc-visual-stack {
    position: relative;
    min-height: 558px;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.kyc-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: block;
}

    .kyc-visual.active {
        opacity: 1;
        transform: scale(1);
        z-index: 1;
    }

.kyc-visual-stack::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.3));
    border-radius: 28px;
    pointer-events: none;
}

.kyc-stepper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kyc-step-card {
    border: 1px solid rgba(0, 85, 140, 0.15);
    border-radius: 20px;
    padding: 18px 20px;
    background: #fff;
    text-align: left;
    display: flex;
    gap: 16px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .kyc-step-card:focus-visible {
        outline: 2px solid #00558C;
    }

    .kyc-step-card ul {
        padding-left: 18px;
    }

    .kyc-step-card.active {
        border-color: #00558C;
        box-shadow: 0 20px 40px rgba(0, 85, 140, 0.15);
        transform: translateY(-4px);
    }

.kyc-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 85, 140, 0.12);
    color: #00558C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.kyc-step-card.active .kyc-step-icon {
    background: #00558C;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glow-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    padding: 2px;
    margin-top: 60px;
}

    .glow-wrapper::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 400%;
        top: -150%;
        left: -50%;
        background: conic-gradient(from 0deg, #f7941d, #fdd835, #f7941d);
        animation: rotateGlow 4s linear infinite;
        z-index: 0;
    }

    .glow-wrapper::after {
        content: '';
        position: absolute;
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        background: white;
        border-radius: 12px;
        z-index: 1;
    }

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.glow-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 24px 20px;
    border-radius: 12px;
}

/* Hover Glow on Each Feature Item */
.feature-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

    .feature-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 12px rgba(255, 166, 0, 0.4);
        background: rgba(255, 238, 200, 0.2);
        cursor: pointer;
    }

    /* Adjust | Separator to work with rounded glow */
    .feature-item:not(.last)::after {
        content: '|';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
        color: #ccc;
        font-size: 20px;
        pointer-events: none;
    }

/* Add spacing above the CTA button */
.hero-left .btn {
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .glow-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
/* Smaller Glow Wrapper */
.glow-wrapper.small-glow {
    margin-top: 20px;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    padding: 2px;
    height: auto;
}

    /* Animate border with visible color motion */
    .glow-wrapper.small-glow::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 400%;
        top: -150%;
        left: -50%;
        background: conic-gradient(from 0deg, #ff8800, #fdd835, #ffa500, #ff8800);
        animation: rotateGlow 3s linear infinite;
        z-index: 0;
    }

    .glow-wrapper.small-glow::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
        background: white;
        border-radius: 10px;
        z-index: 1;
    }

/* Compact Layout */
.glow-content.compact {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    gap: 10px;
    border-radius: 10px;
}

.feature-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 6px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}

/* | Separator */
.feature-item:not(.last)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #ccc;
    font-size: 20px;
}

/* Animation */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fd {
    scroll-behavior: smooth;
}

a#ContentPlaceHolder1_lnkSearch {
    padding: 10px !important;
    border: none;
    border: 1px solid black;
    border-radius: 0 20px 20px 0 !important;
    margin-left: -6px;
}

.button1 {
    text-align: center;
}

img.col-12.p-0.def {
    height: 200px;
}

span.abcd {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

span.kgs {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

span.abs {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

span.mmm {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

span.defg {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* number of lines to show */
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

a.btn.btn1.ase {
    width: 185px;
}

ul#ui-id-2 {
    position: absolute;
    margin-top: 210px;
    margin-left: 395px;
    width: 653.375px;
    display: none;
}
/* Search container wrapper styling */
.fd-card {
    min-height: 260px;
    background: linear-gradient(to right, #e3f2fd, #ffe0b2);
    transition: transform 0.3s ease;
}

    .fd-card:hover {
        transform: translateY(-4px);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-effect {
    transition: all 0.3s ease-in-out;
}

    .hover-effect:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.collection h5 {
    min-height: 50px;
}
/* Card Styling */
.fd-card {
    min-width: 300px;
    max-width: 350px;
    margin: auto;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .fd-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

.fd-section h3 {
    text-shadow: 0 0 6px rgba(255,255,255,0.3), 0 0 12px rgba(255,255,255,0.2), 0 0 20px rgba(255,255,255,0.1);
}

.swiper {
    padding-bottom: 40px; /* space for pagination */
}



/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.5s ease-in-out;
}

/* Popup Box */
.popup-content {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    overflow: hidden;
    position: relative;
    text-align: center;
    animation: zoomIn 0.5s ease;
    transition: transform 0.3s ease;
}

    .popup-content:hover {
        transform: scale(1.01);
    }

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

    .close-btn:hover {
        background: #ff4d4d;
    }

/* Image */
.popup-image {
    width: 100%;
    height: auto;
    max-width: 650px;
    max-height: 90vh; /* Ensures it fits in the viewport */
    display: block;
    border-radius: 20px; /* Rounded all around */
    object-fit: contain; /* Keeps full image visible without crop */
}


/* Contact Info Section */
.contact-section {
    padding: 15px 20px 25px;
    background: linear-gradient(135deg, #004aad, #0072ff);
    color: #fff;
    border-top: 3px solid #f0f0f0;
}

    .contact-section h3 {
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 1.3rem;
    }

.contact-info a {
    color: #ffd700;
    text-decoration: none;
}

    .contact-info a:hover {
        text-decoration: underline;
    }

/* Button */
.invest-btn {
    margin-top: 15px;
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .invest-btn:hover {
        background: #ffaa00;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }





    to {
        transform: scale(1);
        opacity: 1;
    }
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

    .tab-content.active {
        display: block;
        opacity: 1;
    }

/* For smooth fade animation */
.fade {
    opacity: 0;
}

    .fade.active {
        opacity: 1;
    }

.hero-showcase {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%), linear-gradient(135deg, #00558C, #0A3D66 55%, #022742);
    border-radius: 32px;
    padding: 32px;
    color: #fff;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 25px 60px rgba(0, 43, 82, 0.35);
}

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-showcase-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(241, 90, 41, 0.15);
    filter: blur(70px);
    top: -40px;
    right: -60px;
}

.hero-showcase-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.hero-pill-badge--light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

.hero-showcase-tags {
    position: relative;
    z-index: 2;
}

.hero-showcase-title {
    font-size: 1.9rem;
}

.hero-mini-metric {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 12px;
    text-align: center;
}

    .hero-mini-metric small {
        display: block;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
    }

    .hero-mini-metric strong {
        font-size: 1.1rem;
        color: #fff;
    }

.hero-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.hero-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #F15A29, #FDB813);
    transition: width 0.6s ease;
}

.hero-progress-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-showcase-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 24px;
    padding-top: 18px;
}

    .hero-showcase-footer .item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.85);
    }

    .hero-showcase-footer .icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #FDD06C;
        font-size: 1rem;
    }

.hero-floating-card--alt {
    background: linear-gradient(120deg, #013A63, #00558C);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .hero-floating-card--alt div {
        min-width: 90px;
    }

@media (max-width: 991px) {
    .hero-showcase {
        margin-top: 1.5rem;
    }

    .hero-floating-card--alt {
        flex-wrap: wrap;
        gap: 1.2rem;
    }
}

