/* Footer */
.footer {
    background: linear-gradient(180deg, #0b2a4a 0%, #061d34 100%);
    color: #ffffff;
    padding: 60px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 20% 0%, rgba(0,91,172,0.10) 0%, rgba(0,91,172,0) 60%),
                radial-gradient(800px 400px at 80% 0%, rgba(0,115,230,0.10) 0%, rgba(0,115,230,0) 60%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.footer-section h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.16);
}

@media (max-width: 992px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .footer-content { grid-template-columns: 1fr; }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #005BAC;
    --light-blue: #0066CC;
    --dark-blue: #004080;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --success: #28A745;
    --shadow: 0 4px 20px rgba(0, 91, 172, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 91, 172, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --gradient-light: linear-gradient(135deg, rgba(0, 91, 172, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', 'Bangla', 'Kalpurush', 'SolaimanLipi', Arial, sans-serif;
    line-height: 1.8;
    color: var(--dark-gray);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Bangla specific styles */
.bangla {
    font-family: 'Hind Siliguri', 'Bangla', 'Kalpurush', 'SolaimanLipi', Arial, sans-serif;
    line-height: 1.8;
}

/* Ensure proper rendering of Bangla text */
*:not(i) {
    letter-spacing: 0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-download-nav {
    background: var(--gradient);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Section Refresh */
.hero {
    position: relative;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 60%);
    padding: 90px 0 60px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.brand-name {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    display: block;
    color: var(--gray);
    font-size: 1.35rem;
    font-weight: 500;
    margin-top: 0.4rem;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-text { max-width: 560px; }

.download-btn {
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-btn i {
    font-size: 2.4rem;
    margin-right: 0.9rem;
}

.download-btn span {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.download-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.android-download {
    background: linear-gradient(135deg, #005BAC 0%, #0073E6 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 91, 172, 0.2);
    border: none;
}

.ios-download {
    background: #000000;
    color: #FFFFFF;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
}

/* Download Section Refresh */
.download-btn.android-download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    min-width: 280px;
    max-width: 380px;
}

.download-btn .download-info {
    display: block;
}

.download-btn .small-text {
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 0.95;
    line-height: 1.1;
    display: inline;
}

.download-btn .platform {
    display: none !important;
}

.download-btn .version {
    display: none !important;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 91, 172, 0.25);
}

.download-btn:focus-visible {
    outline: 3px solid rgba(0, 115, 230, 0.35);
    outline-offset: 3px;
}

@media (max-width: 992px) {
    .hero { padding: 70px 0 50px; }
    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-text { text-align: center; max-width: 680px; margin: 0 auto; }
    .download-buttons { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .tagline { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .download-btn.android-download { width: 100%; max-width: 360px; }
}

@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 280px;
    }
}

.trust-badges {
    display: flex;
    gap: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.badge i {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    display: inline-block; /* shrink-wrap to image */
    width: 100%;
    max-width: 380px; /* adjust as needed */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(109, 113, 117, 0);
}

.screenshot {
    width: 100%;
    height: auto; /* Let image control height to preserve aspect ratio */
    display: block;
    border-radius: 20px; /* ensure rounded corners even if container style is removed */
}

/* Decorative blur behind phone */
.hero-image::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 115, 230, 0.18) 0%, rgba(0, 91, 172, 0) 70%);
    filter: blur(10px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}



.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 8%;
    left: 6%;
    animation-delay: 0s;
}

.card-2 {
    top: 52%;
    right: 6%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 8%;
    left: 12%;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .card-1 { top: 6%; left: 4%; }
    .card-2 { top: 48%; right: 4%; }
    .card-3 { bottom: 6%; left: 8%; }
    .floating-card { padding: 0.6rem 0.9rem; }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 91, 172, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Ensure the icon glyph inside stays white */
.feature-icon i {
    color: #ffffff !important;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: var(--gradient);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 3;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-blue);
    font-family: serif;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.compliance-badges {
    display: flex;
    gap: 1rem;
}

.compliance-badge {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.compliance-badge:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-image { min-height: 520px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .download-btn img {
        height: 50px;
    }
    
    .phone-img {
        max-width: 250px;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ==========================================
   Design Refresh Overrides (BRAC Bank)
   ========================================== */

/* CTA Download Section */
.cta {
    background: linear-gradient(135deg, #005BAC 0%, #0073E6 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta .download-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    margin: 2rem auto;
    border: 1px solid rgba(255,255,255,0.15);
    max-width: 600px;
}

.cta .download-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.cta .download-buttons {
    justify-content: center;
}

.cta .download-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-item i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.cta .social-links {
    justify-content: center;
    margin-top: 2rem;
}

.cta .social-links a {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}

.cta .social-links a:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .cta h2 { font-size: 2.2rem; }
    .cta .download-container { padding: 2rem 1.5rem; }
    .contact-info { flex-direction: column; gap: 1rem; }
}

@media (max-width: 576px) {
    .cta h2 { font-size: 1.9rem; }
    .cta .download-container { padding: 1.5rem 1rem; }
}
/* Nav */
.navbar {
    border-bottom: 1px solid rgba(0,91,172,0.08);
    box-shadow: 0 6px 18px rgba(0,91,172,0.06);
}

.btn-download-nav {
    background: linear-gradient(135deg, #005BAC 0%, #0073E6 100%);
}

.btn-download-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,91,172,0.25);
}

/* Hero */
.hero {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(0,91,172,0.06) 0%, rgba(0,91,172,0) 60%),
                radial-gradient(1000px 500px at 90% 20%, rgba(0,115,230,0.06) 0%, rgba(0,115,230,0) 60%),
                var(--gradient-light);
}

.hero-title {
    letter-spacing: -0.02em;
}

.tagline {
    color: #4f5b66;
}

/* Cards */
.feature-card,
.testimonial-card,
.floating-card,
.step-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.testimonial-card:hover,
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-color: rgba(0,91,172,0.15);
}

.feature-card i,
.step-card i {
    color: var(--primary-blue);
}

/* Section headers */
.section-header h2 {
    background: linear-gradient(135deg, #0B2F5B 0%, #005BAC 40%, #0073E6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #5f6b77;
}

/* Steps timeline accent */
.steps-container::before {
    background: linear-gradient(180deg, rgba(0,91,172,0.15) 0%, rgba(0,115,230,0.15) 100%);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

.testimonial-card blockquote {
    color: #42505c;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #005BAC 0%, #0073E6 100%);
    color: #FFFFFF;
}

.cta h2,
.cta p {
    color: #FFFFFF;
}

.cta .download-btn.android-download {
    background: #FFFFFF;
    color: #005BAC;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.cta .download-btn.android-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0B2F5B 0%, #062845 100%);
}

.footer-section h4 {
    color: #FFFFFF;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom {
    color: rgba(255,255,255,0.75);
}

/* Generic pills and badges */
.trust-badges .badge {
    background: rgba(0,91,172,0.06);
    border: 1px solid rgba(0,91,172,0.12);
    color: #0B2F5B;
}

/* Responsive polish */
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .tagline { font-size: 1.1rem; }
}
