/* Modern Banking Website Styles */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-pink: #e91e63;
    --primary-purple: #9c27b0;
    --primary-gradient: linear-gradient(90deg,
            #FFAA6F 0%,
            #F04988 15%,
            #8A64D4 45%,
            #4790CC 75%,
            #56BCAC 90%);
    --secondary-gradient: linear-gradient(145deg, #e91e63 0%, #9c27b0 50%, #4a90e2 100%);
    --footer-gradient: linear-gradient(130deg,
            #3DA7D9 0%,
            /* Blue left side */
            #8A5FD4 50%,
            /* Purple middle */
            #D74FA2 100%
            /* Pink right side */
        );

    /* if need us this  gradient  background: linear-gradient(90deg,  #FF8672 0%, #FFA070 15%, #F8497F 45%, #975CD5 75%, #44B2B8 90%);
    */

    /* background: linear-gradient(90deg,
  #FFAA6F 0%,
  #F04988 15%,
  #8A64D4 45%,
  #4790CC 75%,
  #56BCAC 90%);
  also use this if need  */


    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --black: #212529;

    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;

    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-xl: 0 1.25rem 4rem rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */

    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Warning Bar */
.warning-bar {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1100;
}

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* padding: 1rem 0; */
    top: 40px;
    transition: var(--transition);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    top: 39px;
}

.brand-logo {
    height: 65px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-buttons .btn {
    margin: 0 0.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(233, 30, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(145deg, #4a91e22d 0%, #800d942c 70%, #e91e620c 100%); */
    /* background: black; */
    background: url('/images/footer_bg.png') center / cover no-repeat;

}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-gradient);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-gradient);
    top: 50%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    z-index: 2;
}

.hero-badge .badge {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: var(--primary-gradient);
    border: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats .stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: var(--shadow-xl); */
    transition: var(--transition);
}

.main-card {
    width: 650px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.main-card:hover {
    transform: translate(-50%, -55%) scale(1.05);
}

.floating-card-1 {
    width: 300px;
    height: 180px;
    top: -8%;
    left: -5%;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-card-2 {
    width: 300px;
    height: 180px;
    bottom: -8%;
    right: -2%;
    z-index: 3;
    animation: float 4s ease-in-out infinite 2s;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(156, 39, 176, 0.3)); */
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.service-tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-pink);
}

.card-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 10px;
    margin-top: auto;
}

.card-info h6 {
    margin-bottom: 0.25rem;
    color: var(--primary-pink);
}

.card-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: var(--primary-gradient);
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-content h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(233, 30, 99, 0.1);
    color: var(--primary-pink);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    transition: var(--transition);
}

.service-card:hover .service-image {
    opacity: 0.3;
    transform: scale(1.1);
}

.service-action {
    margin-top: auto;
    padding-top: 1rem;
}

/* About Section */
.about-section {
    background: white;
}

.about-visual {
    position: relative;
    height: 500px;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.grid-item:hover {
    transform: scale(1.05);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-stats {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.stat-bubble {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin-bottom: 1rem;
    min-width: 120px;
}

.stat-1 {
    animation: float 3s ease-in-out infinite;
}

.stat-2 {
    animation: float 3s ease-in-out infinite 1.5s;
}

.stat-bubble h4 {
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.stat-bubble p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-content h6 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.highlight-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Partner Section */
.partner-section {
    background: var(--bg-light);
}

.partner-image {
    position: relative;
}

.partner-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.partner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-pink);
}

.partner-benefits {
    margin: 2rem 0;
}

.benefit-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.benefit-info h6 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.benefit-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.partner-actions {
    margin-top: 2rem;
}

/* Banking Sakhi Section */
.banking-sakhi-section {
    background: white;
}

.sakhi-image {
    position: relative;
    text-align: center;
}

.sakhi-image img {
    /* max-width: 400px; */
    /* width: 100%; */
    height: auto;
    border-radius: 20px;
}

.sakhi-stats {
    position: absolute;
    top: 7px;
    left: 2px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
}

.sakhi-stats .stat-card {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    min-width: 130px;
}

@media (max-width: 576px) {
    .sakhi-stats {
        flex-direction: column;
        left: 10px;
        right: 10px;
    }
}



.sakhi-content .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.sakhi-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.feature-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.feature-item-business {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    /* background: black; */
    background: #e1a7a70d;
    border-radius: 10px;
    color: white;
}

.feature-item-business i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-right: 1rem;
}

/* Process Section */
.process-section {
    background: var(--bg-light);
}

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 2rem;
    z-index: 2;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 400px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-content h5 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
}

.why-features {
    margin: 2rem 0;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: var(--transition);
    border-left: 4px solid var(--primary-pink);
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-content h6 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.why-visual {
    position: relative;
    text-align: center;
}

.main-image {
    /* max-width: 400px; */
    width: 62%;
    border-radius: 20px;
    height: auto;
    box-shadow: var(--shadow-lg);
}

.feature-highlights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.highlight {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 200px;
    animation: float 4s ease-in-out infinite;
}

.highlight-1 {
    top: 0%;
    left: 0%;
    animation-delay: 0s;
}

.highlight-2 {
    top: 40%;
    right: 0%;
    animation-delay: 2s;
}

.highlight-3 {
    bottom: 0%;
    left: 0%;
    animation-delay: 4s;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
}

.highlight p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Mobile App Section */
.mobile-app-section {
    background: var(--bg-light);
}

.app-features {
    margin: 2rem 0;
}

.app-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.app-feature i {
    color: var(--primary-pink);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.app-download {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.app-store-btn {
    transition: var(--transition);
}

.app-store-btn:hover {
    transform: translateY(-5px);
}

.app-store-btn img {
    height: 50px;
    width: auto;
}

.app-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    color: var(--primary-pink);
    margin-bottom: 0.25rem;
}

.stat p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.app-mockup {
    text-align: center;
}

.app-mockup img {
    max-width: 300px;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Services Grid Section */
.services-grid-section {
    background: white;
}

.service-grid-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-grid-card h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-grid-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* International Section */
.international-section {
    background: var(--bg-light);
}

.transfer-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.country-flag {
    text-align: center;
}

.country-flag img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.country-flag h6 {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.transfer-animation {
    animation: pulse 2s infinite;
}

.transfer-animation img {
    width: 120px;
    height: auto;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    /* background: var(--primary-gradient); */
    background-color: rgba(255, 255, 255, 0);
    overflow: hidden;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/footer_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;


}

.privacy-policies-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/privacy_policy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.testimonials-carousel {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-avatar img {
    width: 280px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-pink);
}

.testimonial-content h6 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.testimonial-content small {
    color: var(--text-secondary);
    display: block;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: #ffc107;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: white;
}



/* Partners Section */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Animated scroll container */
.marquee-content {
    display: flex;
    gap: 60px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
    align-items: center;
}

/* Partner logo styles */
.partner-logo {
    height: 119px;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

.partners-section {
    background: url(/images/PARTNERBG.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 5px;
    border-radius: 299px;
    overflow: hidden;
}

.partner-logo:hover {
    opacity: 1;
}

/* Marquee animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partners Responsive Styles */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
        border-radius: 0px;

    }

    .partner-logo {
        height: 50px;
    }

    .marquee-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        height: 40px;
    }

    .marquee-content {
        gap: 20px;
    }
}


/* Footer */
.footer-section {
    background: var(--footer-gradient);
    color: white;
    position: relative;
    border-radius: 40px 40px 0 0;
    margin-top: 100px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
    background: url('/images/footer_bg.png') center / cover no-repeat;
}

.footer-section .container-fluid {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
    color: white;
}

.brand-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
    margin-bottom: 2rem;
}

.footer-robot {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.brand-info {
    flex: 1;
}

.footer-logo {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid rgb(222, 41, 238);
    border-radius: 12px;
    padding: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(219, 50, 253, 0.3);
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.8);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }

    .main-card {
        width: 280px;
        height: 320px;
    }

    .floating-card-1,
    .floating-card-2 {
        display: none;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-number {
        margin: 0 0 1rem 0;
    }

    .timeline-content {
        max-width: 100%;
        text-align: center !important;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .testimonial-avatar {
        margin-bottom: 1rem;
    }

    .transfer-visual {
        gap: 1.5rem;
    }

    .country-flag img {
        width: 80px;
        height: 50px;
    }

    #floating-about-card1 {
        display: none;
    }

    #floating-about-card2 {
        display: none;
    }

    #navbarContent{
        background: white;
    }

   
    .stat-card{
        display:none
    }

    .highlight-1,
    .highlight-2,
    .highlight-3{
        display: none;
    }

    
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-visual {
        height: 300px;
    }

    .main-card {
        width: 250px;
        height: 280px;
    }

    .hero-stats .row {
        gap: 0;
    }

    .navbar-buttons {
        margin-top: 1rem;
        text-align: center;
    }

    .navbar-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        width: 200px;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        position: static;
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
    }

    .why-features {
        gap: 1rem;
    }

    .feature-highlights .highlight {
        position: static;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .app-stats {
        justify-content: center;
    }

    .transfer-visual {
        flex-direction: column;
        gap: 2rem;
    }

    .brand-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-robot {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card,
    .service-grid-card {
        padding: 1.5rem;
    }

    .benefit-card,
    .feature-card {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .app-download {
        flex-direction: column;
        align-items: center;
    }

    .app-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Custom Utilities */
.text-gradient {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient) !important;
}

.border-gradient {
    border: 2px solid;
    border-image: var(--primary-gradient) 1;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling for Safari */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    html {
        scroll-behavior: smooth;
    }
}




/* Partners Section Styles Start Here */
/* Marquee wrapper */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Animated scroll container */
.marquee-content {
    display: flex;
    gap: 60px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
    align-items: center;
}

/* Partner logo styles */
.partner-logo {
    height: 80px;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Marquee animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partners Responsive Styles */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }

    .partner-logo {
        height: 50px;
    }

    .marquee-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        height: 40px;
    }

    .marquee-content {
        gap: 20px;
    }
}

/* Partners Section Styles End Here */




/* Maintain spacing between left-right sections on mid screens */

.hero-section .row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    /* beech ka spacing fix */
    flex-wrap: nowrap;
    /* default: wrap off */
}

.hero-section .col-lg-6 {
    flex: 1;
    min-width: 0;
}

@media (max-width: 1400px) {
    .hero-section .col-lg-6 {
        flex: 0 0 47%;
        max-width: 47%;
    }
}

@media (max-width: 1300px) {
    .hero-section .col-lg-6 {
        flex: 0 0 46%;
        max-width: 46%;
    }
}

@media (max-width: 1200px) {
    .hero-section .row {
        flex-wrap: wrap;
        /* ab 1200px ke neeche stack ho jaayega */
        gap: 30px;
        /* thoda chhota gap mobile ke liye */
    }

    .hero-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}







/* About Section Layout Fix */
.about-section .row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    /* beech ka spacing fix */
    flex-wrap: nowrap;
    /* ensure wrap na ho until breakpoint */
}

.about-section .col-lg-6 {
    flex: 1;
    min-width: 0;
    /* overflow prevent */
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .about-section .col-lg-6 {
        flex: 0 0 47%;
        max-width: 47%;
    }
}

@media (max-width: 1300px) {
    .about-section .col-lg-6 {
        flex: 0 0 46%;
        max-width: 46%;
    }
}

@media (max-width: 1200px) {
    .about-section .row {
        flex-wrap: wrap;
        /* ab stack allow karo */
        gap: 30px;
    }

    .about-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}



/* Why Choose Section Layout Fix */
.why-choose-section .row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    /* beech ka spacing */
    flex-wrap: nowrap;
    /* by default ek row me hi rahe */
}

.why-choose-section .col-lg-6 {
    flex: 1;
    min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .why-choose-section .col-lg-6 {
        flex: 0 0 47%;
        max-width: 47%;
    }
}

@media (max-width: 1300px) {
    .why-choose-section .col-lg-6 {
        flex: 0 0 46%;
        max-width: 46%;
    }
}

@media (max-width: 1200px) {
    .why-choose-section .row {
        flex-wrap: wrap;
        /* ab neeche stack hoga */
        gap: 30px;
    }

    .why-choose-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.font-size-larger {
    font-size: larger;
}

.gradient-border {

    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #FFAA6F 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%) border-box;

    border-radius: 20px;
    border: 3px solid transparent;
}

.why-choose-floating {
    background: linear-gradient(45deg, #2a4840, #1c4956, #522c60, #732b3c, #724f38);
    opacity: 0.8;
}

.heading-box-shadow {
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */

    box-shadow: rgba(250, 20, 20, 0.35) 0px 5px 15px;

    box-shadow: rgba(198 26 239 / 35%) 0px 5px 15px;

    border-radius: 37px;
}






/* calculator section */
.calculator-section {
    padding: 100px 0;
    background: white;
}

.calculator-form-container {
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.form-visual {
    background: var(--primary-gradient);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.form-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 6s ease-in-out infinite;
    background: url('/images/footer_bg.png') center / cover no-repeat;

}

.form-visual h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.visual-features {
    position: relative;
    z-index: 2;
}

.visual-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.visual-feature i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

.calculator-form {
    padding: 4rem 3rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: var(--transition);
    background: transparent;
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-floating {
    margin-bottom: 2rem;
}

.form-floating .form-control {
    padding: 1.625rem 1.5rem 0.625rem;
}

.form-floating label {
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    /* background: var(--primary-gradient); */
    border: none;
    color: white;
    border-radius: 15px;
    transition: var(--transition);
    background: linear-gradient(45deg, #2a4840, #1c4956, #522c60, #732b3c, #724f38);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-visual,
    .calculator-form {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .form-visual,
    .calculator-form {
        padding: 2rem 1.5rem;
    }

    .calculator-info-card,
    .office-card {
        padding: 2rem;
    }
}



/* Our Story Section */
.business-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    max-width: 100%;
}

.story-highlight {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--primary-pink);
    border-right: 5px solid var(--primary-pink);
    margin: 2rem 0;
}

.business-section img {
    max-width: 75%;
    max-height: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

