/* ===== CSS VARIABLES ===== */
:root {
    /* Color Scheme */
    --primary-blue: #1E40AF;
    --secondary-blue: #3B82F6;
    --accent-yellow: #F59E0B;
    --success-blue: #0EA5E9;
    --background-light: #F8FAFC;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.75rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    padding: 0.7rem 0;
    width: 100%;
    max-width: 100vw;
    /* overflow-x: hidden; */
}

.navbar.scrolled {
    background: rgba(30, 64, 175, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white) !important;
    padding-left: 0;
}

.brand-text {
    color: var(--white);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0;
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow) !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--primary-blue);
        padding: 1rem;
        border-radius: var(--border-radius-md);
        margin-top: 0.5rem;
    }

    .navbar-nav {
        margin-bottom: 1rem;
    }

    .cta-btn {
        width: 100%;
    }
}

.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}



.cta-btn {
    background: var(--accent-yellow);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
}

.cta-btn:hover {
    background: #D97706;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--primary-blue);
    background-image:
        linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    padding: 1rem 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number- {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* ===== FOREX CALCULATOR ===== */
.forex-calculator {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.forex-calculator h2 {
    font-size: 1.75rem;
    cursor: pointer;
}

.forex-calculator h2.text-muted {
    opacity: 0.5;
}

.forex-form p {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.calculator-header {
    margin-bottom: 2rem;
}

.forex-form .form-label,
.forex-form p {
    font-size: 0.675rem;
    font-weight: 400;
    color: var(--text-dark);
}

.nav-tabs {
    border: none;
    gap: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--gray-400);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-tabs .nav-link.active {
    background: transparent;
    color: var(--text-dark);
}

.nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: var(--transition-fast);
}

.nav-tabs .nav-link.active::after {
    width: 100%;
}

.nav-tabs .nav-link:hover {
    background: var(--gray-100);
    color: var(--text-dark);
}

.forex-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.forex-form .form-control,
.forex-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    padding: 0.45rem 1rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.forex-form .form-control:focus,
.forex-form .form-select:focus {
    border-color: var(--success-green);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.want-option {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.delivery-options p {
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
}

.delivery-option {
    padding: 0.4rem 0.95rem !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--border-radius-md) !important;
    background: var(--white);
    font-weight: 500;
    font-size: 0.7rem !important;
    transition: var(--transition-fast) !important;
    cursor: pointer !important;
    line-height: 1;
    flex: 0 0 auto;
    /* border-radius: 25px !important; */
}

.delivery-option.active {
    background: var(--accent-yellow);
    color: var(--white);
    border-color: var(--accent-yellow);
}

.delivery-option:hover {
    background: var(--accent-yellow);
    color: var(--white);
    border-color: var(--accent-yellow);
    transform: translateY(-1px);
}

.delivery-option i {
    font-size: 1rem;
    margin-right: 0.25rem;
}

/* Currency Input Groups */
.currency-symbol {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-right: none;
    color: var(--text-dark);
    font-weight: 600;
}

.currency-selector {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-left: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.05rem 1rem;
}

.currency-selector .form-select {
    border: none;
    background: transparent;
    padding: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.currency-display {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-left: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.country-code {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-right: none;
    color: var(--text-dark);
    font-weight: 600;
}

.main-container {
    min-height: 100vh;

    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Exchange Rate Display */
.exchange-rate-display {
    background: var(--background-light);
    padding: 0.30rem 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-200);
}

.rate-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.rate-text {
    font-weight: 600;
    color: var(--text-dark);
}

.current-rate {
    color: var(--primary-blue);
    font-weight: 100;
    font-size: 1.25rem;
}

.rate-update-time {
    color: var(--text-light);
    font-size: 0.75rem;
}

.last-update {
    color: var(--secondary-blue);
    font-weight: 500;
}

/* WhatsApp Toggle */
.whatsapp-toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
}

.form-switch {
    padding-left: 3rem;
    margin-bottom: 0;
}

.form-switch .form-check-input {
    width: 2.5rem;
    height: 1.25rem;
    margin-left: -3rem;
    background-color: var(--gray-300);
    border-color: var(--gray-300);
    cursor: pointer;
}

.form-switch .form-check-input:checked {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.form-switch .form-check-label {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
}

/* Request Callback Button */
.request-callback-btn {
    background: var(--accent-yellow);
    border: none;
    padding: 0.45rem 2rem !important;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.request-callback-btn:hover {
    background: #D97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Form Footer */
.form-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.form-footer p {
    margin-bottom: 0;
    line-height: 1.4;
}

.form-footer a {
    color: var(--success-green);
}

.form-footer a:hover {
    color: var(--primary-green);
}

/* Rate Highlight Animation */
.rate-highlight {
    animation: ratePulse 0.5s ease-in-out;
}

@keyframes ratePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.flag-icon {
    font-size: 1.25rem;
}

.whatsapp-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: var(--white);
    padding: var(--section-padding);
}

.partner-title {
    color: var(--primary-blue);
    font-size: 1.875rem;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.partner-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.partner-logo {
    height: 40px;
    object-fit: contain;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== RATES SECTION ===== */
.rates-section {
    background: var(--background-light);
    padding: var(--section-padding);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0;
}

.btn-outline-primary {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.btn-outline-primary:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-blue);
    border: none;
    padding: 0.45rem 2rem !important;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.rate-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    height: 100%;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.currency-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.currency-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.rate-details {
    margin-bottom: 1rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rate-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.rate-value {
    font-weight: 600;
    color: var(--text-dark);
}

.rate-graph {
    text-align: center;
    color: var(--success-green);
    font-size: 1.25rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--secondary-blue);
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: var(--section-padding);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    color: var(--success-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating {
    color: #FBBF24;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.author-info h6 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    background: var(--white);
    padding: var(--section-padding);
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
    transition: var(--transition-fast);
}

.step-card:hover {
    transform: translateY(-5px);
}

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

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== PRODUCTS SECTION ===== */

.btn-light {
    background: var(--white);
    color: var(--accent-yellow);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--accent-yellow);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-fast);
}

.btn-success:hover {
    background: #D97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Products Section Styles */
.products-section {
    background: var(--primary-blue);
    padding: var(--section-padding);
    position: relative;
}

.products-section .section-title {
    color: var(--white);
}

.products-section p {
    color: var(--accent-yellow);
}

.product-card {
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: var(--transition-normal);
    border: 2px solid var(--accent-yellow);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to bottom, rgb(22 59 179 / 90%), rgb(11 189 245 / 80%));
    color: var(--white);
    transition: var(--transition-normal);
}

.product-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.product-overlay h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 0.5rem;
}

.product-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.product-card:hover .product-overlay {
    background: linear-gradient(to bottom, rgba(30, 64, 175, 0.95), rgba(245, 158, 11, 0.9), );
}


/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: var(--white);
    padding: var(--section-padding);
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-card h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--background-light);
    padding: var(--section-padding);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--success-green);
    color: var(--accent-yellow);
    box-shadow: none;
    font-weight: 600;
}

.accordion-button:hover {
    background: var(--success-green);
    color: var(--accent-yellow);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}


.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--text-light);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--primary-blue);
    padding: var(--section-padding);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.contact-form-card h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form .form-control:focus {
    border-color: var(--success-green);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===== DIGEST SECTION ===== */
.digest-section {
    background: var(--white);
    padding: var(--section-padding);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: var(--success-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
}

.blog-content h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--success-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: #059669;
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer h6 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--success-green);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    padding-top: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.legal-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== UTILITY CLASSES ===== */
.text-success {
    color: var(--accent-yellow) !important;
}

.bg-success {
    background-color: var(--accent-yellow) !important;
}

.btn-primary {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #D97706;
    border-color: #D97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}



/* ===== CHOICES.JS ===== */
.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: transparent;
    padding: 7.5px 7.5px 3.75px;
    border: 0px solid transparent;
    border-radius: 2.5px;
    font-size: 14px;
    min-height: 44px;
    overflow: hidden;
}

/* Let Choices dropdown be as wide as its content */
.choices__list--dropdown {
    min-width: max-content;
    width: auto !important;
}

/* Make sure it aligns correctly */
.choices {
    min-width: 140px;
    /* or whatever you want the closed state to be */
}

/* Make dropdown wider so flags + text breathe */
.choices__list--dropdown {
    min-width: 200px;
}

/* Style each option */
.choices__list--dropdown .choices__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

/* Hover effect */
.choices__list--dropdown .choices__item:hover {
    background-color: #f5f7fa;
    transform: translateX(4px);
    cursor: pointer;
}

/* Slightly bigger flags for visibility */
.choices__list--dropdown img {
    width: 22px;
    height: auto;
    border-radius: 3px;
}

/* Selected option styling */
.choices__list--dropdown .choices__item.is-selected {
    background-color: #e9f3ff;
    font-weight: 600;
}

.notification-close {
    color: var(--white);
    background: transparent;
    border: none;
    margin-left: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.notification-close:hover {
    color: var(--white);
    transform: scale(1.1);
}

.highlight {
    background-color: #f4ff67;
    /* Accent yellow highlight */
    transition: background-color 1s ease;
    line-height: 24px;
}

.feature-icon,
.step-icon {
    color: var(--accent-yellow);
}

.rate-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px;
}

.currency-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}

.currency-info img {
    width: 30px;
    height: 20px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 3px;
}

.currency-name {
    font-weight: bold;
}

.rate-details {
    margin-bottom: 10px;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

.rate-label {
    font-weight: 500;
    color: #666;
}

.rate-value {
    font-weight: bold;
    color: #1E40AF;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-pagination-bullet {
    background: #1E40AF;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #2563EB;
    opacity: 1;
}

/* LOGIN PAGE STYLES */
.login-container {
    max-width: 450px;
    margin: 7rem auto 2.5rem;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--gray-200);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-info {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-300);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Dropdown Menu z-index fix */
.navbar-nav .dropdown-menu {
    z-index: 1050;
}

.navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .5rem;
}


/* forex-card page */
.forex-header {
    background: #fff;
    padding: 2.5rem 0 1rem;
    text-align: center;
}

.forex-header-left {
    background: #fff;
    padding: 2.5rem 0 1rem;
    text-align: start;
}

.card-group .card {
    border: none;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.07);
}

.card-group .card:hover {
    box-shadow: 1px 1rem 2rem 1px rgb(0 12 169 / 61%) !important;
    transition: box-shadow 0.3s ease-in-out;
}

.card-group .card img {
    border-radius: 25px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
}

.card-text {
    font-size: 0.96rem;
    color: #333;
}

.section-title {
    color: #1b327d;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.choice-icon {
    font-size: 2rem;
    color: #22336c;
    margin-bottom: 0.5rem;
}

.feature-card {
    background: #fff;
    border-radius: .7rem;
    box-shadow: 0 1px 6px rgba(30, 64, 175, .08);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.step-section {
    background: linear-gradient(111deg, #1e40af 84%, #4b72ff 100%);
    color: #fff;
    border-radius: 1.2rem;
    margin-bottom: 2rem;
}

.step-section h2 {
    color: #fff;
}

.step-list {
    font-size: 1rem;
}

.step-num {
    font-size: 2rem;
    font-weight: 700;
    margin-right: .8rem;
    color: #ffd700;
}

.faq-section h2 {
    color: #22336c;
}

.accordion-button:not(.collapsed) {
    background: #f2f6fa;
    color: #1e40af;
}

.btn-primary {
    background: #1e40af;
    border: 0;
}

.btn-primary:hover {
    background: #22336c;
}

.apply-btn {
    background: #22336c;
    color: #fff;
    border-radius: .4rem;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

.apply-btn:hover {
    background: #1e40af;
    color: #ffd700;
}

@media (max-width: 600px) {
    .forex-header h1 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .step-section {
        padding: 2rem 1rem;
    }
}

.forex-card-section {
        background: var(--background-light);
    padding: var(--section-padding);
}
.box-shadow {
    /* box-shadow: 0 10px 15px -3px rgb(0 12 169 / 0.1), 0 4px 6px -2px rgb(0 12 169 / 0.05) !important; */
    box-shadow: 1px 2px 9px 13px #00000045 !important;
}

.currency-bg {
    position: relative;
    overflow: hidden; /* keep symbols inside */
  }
  
  .currency-bg::before,
  .currency-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 120px, 150px, 150px, 90px; /* sizes of symbols */
    background-position: 10% 15%, 70% 35%, 30% 70%, 80% 90%; /* scattered positions */
    background-image: 
      linear-gradient(rgba(0,123,255,0.05), rgba(0,123,255,0.05)) ,
      linear-gradient(rgba(0,123,255,0.05), rgba(0,123,255,0.05)) ,
      linear-gradient(rgba(0,123,255,0.05), rgba(0,123,255,0.05)) ,
      linear-gradient(rgba(0,123,255,0.05), rgba(0,123,255,0.05));
    -webkit-mask-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='10' y='70' font-size='80'%3E€%3C/text%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='10' y='70' font-size='80'%3E₹%3C/text%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='10' y='70' font-size='80'%3E$%3C/text%3E%3C/svg%3E"),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='10' y='70' font-size='80'%3E£%3C/text%3E%3C/svg%3E")
      ;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 10% 15%, 65% 40%, 30% 70%, 80% 90%;
    -webkit-mask-size: 120px, 100px, 150px, 90px;
  }
  
  .currency-bg * {
    position: relative;
    z-index: 1; /* ensure text stays on top */
  }
  
  /* contact form */
  .forex-header-left .form-control::placeholder {
    color: #fff;       /* pure white */
    opacity: 0.7;        /* ensure it doesn’t look faded */
  }
  .contact-info-section .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .contact-info-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.1);
  }
  .contact-info-section .card-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .contact-info-section .card-text {
    color: #555;
  }
  

  /* university Fees page */
  
  .steps-list .step-number {
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .feature-card {
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.1);
  }
  
  .animated.fadeInRight {
    animation: fadeInRight 1s ease-in-out;
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  .university-fee-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden; /* optional: prevents overflow if SVG is large */
  }
  
  .payment-steps-img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 45%; /* adjust size as needed */
    height: auto;
    opacity: 0.9;
    pointer-events: none; /* allows clicking buttons/text without obstruction */
    animation: floatUp 6s ease-in-out infinite alternate;
  }
  
  @keyframes floatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }

  /* Rate Calculation */
.rate-calculation {
    background: var(--gray-50);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rate-row:last-child {
    margin-bottom: 0;
}

.rate-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.rate-type {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: right;
}

/* Live Rates Link */
.live-rates-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-rates-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.live-rates-text:hover {
    color: var(--primary-blue);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
