body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111111;
}
/* NAVBAR */
.custom-navbar {
    height: 10vh;
    padding: 0 4vw;
    background-color: #f7f8f8;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
}

/* Section padding helper */
.px-section {
    padding-left: 4vw;
    padding-right: 4vw;
}

/* Logo */
.logo-img {
    height: 16vh;
    width: auto;
}

/* Nav links */
.navbar-nav .nav-link {
    font-size: 1rem;
    margin: 0 1vw;
    color: #111111;
}

/* Buttons */
.btn-demo {
    font-size: 1rem;
    padding: 1vh 2vw;
}

.btn-signin {
    font-size: 1rem;
    padding: 1vh 2vw;
}

/* Make space for fixed navbar */
body {
    padding-top: 10vh;
}


/* HERO */
.hero {
    min-height: 100vh;
    padding: 8vh 6vw;
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
}
/* HERO BANNER ONLY IMAGE - FIXED FOR MOBILE */
.hero-banner-only {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.banner-full-image {
    width: 100%;
    height: calc(100vh - 10vh); /* full screen minus navbar */
    display: block;
    object-fit: cover;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .banner-full-image {
        height: auto;          /* Let image keep ratio */
        max-height: 70vh;      /* Prevent too tall image */
        object-fit: contain;   /* Show full image without cropping */
    }
}


.playstore-icon i {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* STATS SECTION */
.stats-section {
    padding: 10vh 6vw;
    background-color: #ffffff;
}

.highlight-text {
    color: #0d6efd;
}

.stats-desc {
    max-width: 60vw;
    margin: 3vh auto 0 auto;
    font-size: 1.05rem;
    color: #555555;
}

/* Cards */
.stats-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 6vh 3vw;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Numbers */
.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d2a5c;
    margin-bottom: 2vh;
}

/* Labels */
.stats-label {
    font-size: 1.1rem;
    color: #111111;
}


/* SUMMARY */
.summary {
    min-height: 40vh;
    padding: 8vh 6vw;
    background-color: #fafbff;
}

.summary-text {
    max-width: 60vw;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* FEATURES */
.features {
    padding: 8vh 6vw;
    background-color: #ffffff;
}

.mb-section {
    margin-bottom: 10vh;
}

.feature-image {
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

/* CONTACT */
.contact {
    min-height: 50vh;
    padding: 8vh 6vw;
    background: linear-gradient(135deg, #f5f7ff, #ffffff);
}

/* BUTTONS */
.btn {
    font-size: 1rem;
    padding: 1vh 2vw;
}
/* FEATURES SHOWCASE */
.features-showcase {
    padding: 10vh 6vw;
    background-color: #f7faff;
}

.features-desc {
    max-width: 60vw;
    margin: 3vh auto 0 auto;
    font-size: 1.05rem;
    color: #555555;
}

/* Feature Card */
.feature-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 5vh 3vw;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-1vh);
}

/* Icon */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 2vh;
}

/* Title */
.feature-card h4 {
    margin-bottom: 2vh;
    color: #0d2a5c;
}

/* List */
.feature-card ul {
    padding-left: 1.2rem;
    margin: 0;
}

.feature-card ul li {
    margin-bottom: 1vh;
    font-size: 0.95rem;
    color: #333333;
}
/* Glow Card Effect */
.glow-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Light gradient overlay */
.glow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(13, 110, 253, 0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover effect */
.glow-card:hover::before {
    opacity: 1;
}

.glow-card:hover {
    transform: translateY(-1vh);
}

/* Make sure content stays above glow */
.glow-card > * {
    position: relative;
    z-index: 1;
}
/* MODULE DETAILS SECTION */
.modules-section {
    padding: 10vh 6vw;
    background-color: #ffffff;
}

.modules-desc {
    max-width: 60vw;
    margin: 3vh auto 0 auto;
    font-size: 1.05rem;
    color: #555555;
}

/* Spacing between modules */
.mb-section {
    margin-bottom: 12vh;
}

/* Module Image */
.module-image {
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Text */
.modules-section h3 {
    color: #0d2a5c;
    margin-bottom: 2vh;
}

.modules-section p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 2vh;
}


/* TESTIMONIALS CONTAINER & STACK */
.testimonial-container {
    position: relative;
    max-width: 550px; /* Adjust based on your preference */
    margin: 40px auto;
    z-index: 1;
}

/* Background Stack Effect */
.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    z-index: -1;
}

.stack-1 { transform: translateX(-15px) rotate(-2deg); opacity: 0.6; }
.stack-2 { transform: translateX(-30px) rotate(-4deg); opacity: 0.3; }

/* MAIN CARD */
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: left;
    border: 1px solid #f0f0f0;
    position: relative;
}

/* HEADER WITH GRADIENT GLOW */
.card-glass-header {
    height: 120px;
    padding: 25px;
    position: relative;
    background: radial-gradient(circle at top right, rgba(230, 200, 255, 0.4), transparent 70%);
}

.avatar-wrapper {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-decor {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 1.5rem;
    opacity: 0.5;
}

/* BODY TEXT */
.testimonial-body {
    padding: 20px 35px;
}

.testimonial-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
}

/* FOOTER AREA */
.testimonial-footer-custom {
    padding: 25px 35px;
    background: linear-gradient(to bottom, #fff, #f9faff);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
}

.client-name {
    margin: 0;
    font-weight: 700;
    color: #111;
}

.client-role {
    font-size: 0.85rem;
    color: #888;
}

.mini-logo {
    text-align: right;
    font-weight: 800;
    color: #3e2677; /* Deep purple like in the image */
    line-height: 1;
    text-transform: lowercase;
}

.mini-logo small {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: #ff7eb3; /* Pinkish color for the sub-text */
    text-transform: uppercase;
}

/* Updated Dots to match the bar style in image */
.testimonial-dots .dot {
    width: 40px;
    height: 6px;
    border-radius: 10px;
    background: #e0e0e0;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    width: 60px;
}
/* PRICING SECTION */
.pricing-section {
    padding: 10vh 6vw;
    background: linear-gradient(135deg, #f5f7ff, #fff6d8);
}

/* Card Base */
.pricing-card {
    border-radius: 1.5rem;
    padding: 6vh 3vw;
    height: 100%;
    position: relative;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-1vh);
}

/* Light Card */
.light-card {
    background-color: #fffaf0;
    color: #111111;
}

/* Dark Featured Card */
.dark-card {
    background-color: #1e1e1e;
    color: #ffffff;
}

.featured {
    border: 0.2rem solid #f5c400;
}

/* Save Badge */
.badge-save {
    position: absolute;
    top: 2vh;
    right: 2vw;
    background-color: #f5c400;
    color: #111111;
    padding: 0.5vh 1vw;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Titles */
.plan-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2vh;
}

/* Price */
.plan-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1vh;
}

.plan-price .currency {
    font-size: 1.2rem;
}

.plan-price .per {
    font-size: 0.9rem;
    font-weight: 400;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    margin-right: 1vw;
    opacity: 0.6;
}

/* Sub text */
.plan-sub {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 3vh;
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 4vh 0;
}

.plan-features li {
    margin-bottom: 1.2vh;
    font-size: 0.95rem;
}

.plan-features li::before {
    content: "✔";
    margin-right: 0.6vw;
    color: #2ecc71;
}

.plan-features li.disabled {
    opacity: 0.5;
}

.plan-features li.disabled::before {
    content: "✖";
    color: #e74c3c;
}

/* Buttons (UI only, no link) */
.plan-btn {
    width: 100%;
    padding: 1.5vh 2vw;
    border-radius: 2rem;
    border: none;
    font-size: 1rem;
    cursor: default;
}

.light-btn {
    background-color: #ffffff;
    color: #111111;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
}

.dark-btn {
    background-color: #ffffff;
    color: #111111;
    font-weight: 600;
}
/* FOOTER */
.site-footer {
    background-color: #f1f4f7;
    padding: 8vh 6vw 4vh 6vw;
}


/* Top area */
.footer-top {
    margin-bottom: 6vh;
    
}

/* Brand */
.footer-logo {
    height: 22vh;
    width: auto;
    margin-bottom: 2vh;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #555555;
    max-width: 30vw;
}

/* Titles */
.footer-title {
    font-size: 1.05rem;
    margin-bottom: 2vh;
    color: #0d2a5c;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1.2vh;
}

.footer-links a {
    text-decoration: none;
    color: #333333;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #121213;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2vh;
    padding-top: 3vh;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}

/* Status */
.footer-status {
    display: flex;
    align-items: center;
    gap: 1vw;
    font-size: 0.9rem;
    color: #333333;
}

.status-dot {
    width: 1vh;
    height: 1vh;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
}

/* Copyright */
.footer-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2vw;
    font-size: 0.9rem;
    color: #555555;
}

/* Legal links */
.footer-legal a {
    margin-left: 2vw;
    text-decoration: none;
    color: #555555;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #0d6efd;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .footer-tagline {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 4vh;
    right: 3vw;
    width: 7vh;
    height: 7vh;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}
