﻿
/* 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);
    -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);
    -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: 60px 20px;
    position: relative;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1 1 50%;
    min-width: 280px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #f1f1f1;
}

    .hero-desc span {
        color: #ffd700;
        font-weight: bold;
    }

.btn {
    background-color: #fd7e14;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.hero-right {
    flex: 1 1 45%;
    min-width: 280px;
    position: relative;
}

.graph-container {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    padding: 50px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.ball-svg {
    position: absolute;
    top: 0;
    right: 0;
    animation: bounce 2s infinite ease-in-out;
    transform: scale(1.5);
    opacity: 0.3;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1.5);
    }

    50% {
        transform: translateY(-20px) scale(1.5);
    }
}

canvas#graphChart {
    width: 100% !important;
    max-width: 100%;
    height: 350px !important;
    position: relative;
    z-index: 2;
}

.dynamic-text span {
    font-weight: bold;
    color: #ffd700;
    display: inline-block;
    min-width: 80px;
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
}

.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 */
.search-container {
    background-color: #ffffff;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    transition: box-shadow 0.3s ease-in-out;
}

    .search-container:focus-within {
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

/* Gradient button style */
.search-btn {
    background: linear-gradient(135deg, #007bff, #0056d2);
    color: white;
    font-size: 16px;
    border: none;
    transition: background 0.3s ease;
}

    .search-btn:hover {
        background: linear-gradient(135deg, #0056d2, #0040a3);
        color: #fff;
    }

    /* Optional: Icon sizing */
    .search-btn i {
        font-size: 18px;
    }

.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;
}
}

