/* --- Variables --- */
:root {
    --primary-color: #2e1a72;
    /* Deep purple */
    --primary-light: #523eb4;
    --secondary-color: #211551;
    /* Darker text */
    --text-color: #555555;
    --text-light: #888888;
    --white: #ffffff;
    --bg-light: #f8f9fc;
    --border-color: #e0e0e0;
    --gold: #f0c36b;
    --gold-hover: #e0b055;
    --dark-card-bg: rgba(26, 15, 75, 0.6);
    --dark-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 25px rgba(46, 26, 114, 0.15);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.btn-gold {
    background-color: var(--gold);
    color: #111;
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #000;
}

/* --- Header & Navbar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 20px 0;
}

.header.scrolled {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
    /* Adjust based on actual logo size */
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
    /* Space for header */
}

.hero-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    padding-right: 40px;
    z-index: 2;
}

.hero-image-space {
    flex: 1;
    /* This empty div takes up space on the right, allowing the background image to show clearly */
}

.hero h1 {
    font-size: 4rem;
    /* large text as in image */
    line-height: 1.1;
    color: var(--primary-color);
    /* Dark purple */
    margin-bottom: 15px;
    font-weight: 700;
}

.hero h1 span.text-black {
    color: #000000;
}

.hero h1 span.nowrap {
    white-space: nowrap;
    color: var(--primary-color);
}

.hero-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* --- Hero Features (Bottom Cards) --- */
.hero-features {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 15px 25px 10px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 700px;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 10px;
    position: relative;
}

.feature-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--border-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #f0ecfc;
    /* Light purple bg */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 15px;
}

.feature-card h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

/* --- Investment Plans Section --- */
.investment-section {
    padding: 40px 0;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.investment-header {
    margin-bottom: 30px;
    max-width: 600px;
}

.investment-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.investment-header h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
    line-height: 1.1;
    font-family: serif;
    /* Gives the elegant look shown in the image */
}

.investment-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #f2c777, #d9a05b);
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 2px;
}

.investment-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
    margin-bottom: 30px;
}

.plan-card {
    background: var(--dark-card-bg);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.plan-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.plan-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c47b5, #3a2278);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
}

.plan-card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.card-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #f2c777, #d9a05b);
    margin-left: 60px;
    margin-bottom: 8px;
    border-radius: 1px;
}

.plan-highlight {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    min-height: 40px;
    margin-left: 60px;
}

.plan-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
    flex-grow: 1;
    line-height: 1.4;
    margin-left: 60px;
}

.card-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #8a58e5, transparent);
    margin-bottom: 15px;
    width: 100%;
}

.plan-rates {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.plan-rates.single-rate {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rate-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.plan-rates:not(.single-rate) .rate-box:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.rate-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2px;
}

.plan-rates.single-rate .rate-label {
    justify-content: center;
}

.rate-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.rate-value .small {
    font-size: 0.8rem;
    font-weight: 400;
}

.plan-card .btn-gold {
    width: 100%;
    padding: 8px;
    font-size: 0.95rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* --- Loan Facilities Section --- */
.loan-section {
    padding: 40px 0;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.section-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.badge-line {
    height: 1px;
    width: 40px;
    background-color: rgba(155, 146, 214, 0.5);
}

.section-badge {
    background-color: #9b92d6;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.loan-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 15px;
}

.text-purple {
    color: var(--primary-light);
}

.loan-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.loan-divider .line {
    height: 3px;
    width: 60px;
    background-color: rgba(82, 62, 180, 0.805);
}

.loan-divider .diamond {
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    transform: rotate(45deg);
}

.loan-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.loan-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.loan-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--bg-light);
}

.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(82, 62, 180, 0.2);
}

.loan-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0fa;
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 15px;
}

.loan-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-line-purple {
    width: 40px;
    height: 2px;
    background-color: rgba(155, 146, 214, 0.7);
    margin: 0 auto 10px auto;
    border-radius: 1px;
}

.loan-card p {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.5;
}

.btn-loan {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-loan:hover {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

/* --- Banking Facilities Section --- */
.banking-section {
    padding: 40px 0;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    color: var(--white);
}

.banking-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.banking-title .text-gold {
    color: var(--gold);
}

.banking-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.banking-divider .line {
    height: 1px;
    width: 60px;
    background-color: var(--gold);
}

.banking-divider .diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.banking-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 260px));
    justify-content: center;
    gap: 12px;
}

.banking-card {
    background: linear-gradient(145deg, rgba(39, 21, 92, 0.7), rgba(20, 10, 48, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 15px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    margin: 0 auto;
    width: 100%;
}

.banking-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 195, 107, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.banking-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #6c47b5, #3a2278);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.banking-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.card-line-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.card-line-gold .line {
    height: 1px;
    width: 25px;
    background-color: rgba(240, 195, 107, 0.5);
}

.card-line-gold .diamond {
    width: 4px;
    height: 4px;
    background-color: var(--gold);
    transform: rotate(45deg);
}

.banking-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* --- About Us / Values Section --- */
.about-section {
    padding: 40px 0;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-content {
    flex: 1;
    max-width: 500px;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-title .text-purple {
    color: var(--primary-color);
}

.about-divider-left {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.about-divider-left .diamond {
    width: 6px;
    height: 6px;
    background-color: var(--primary-light);
    transform: rotate(45deg);
}

.about-divider-left .line {
    height: 1px;
    width: 40px;
    background-color: var(--primary-light);
}

.about-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.font-semibold {
    font-weight: 600;
}

.values-content {
    flex: 1;
}

.values-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.values-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.values-header-line {
    display: flex;
    align-items: center;
    gap: 5px;
}

.values-header-line .line {
    height: 1px;
    width: 40px;
    background-color: rgba(82, 62, 180, 0.3);
}

.values-header-line .diamond {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.value-card {
    background: var(--white);
    border: 1px solid rgba(82, 62, 180, 0.1);
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(82, 62, 180, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0fa;
    color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 15px;
    border: 1px solid rgba(82, 62, 180, 0.1);
}

.value-card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 12px;
}

.value-card-divider .line {
    height: 1px;
    width: 15px;
    background-color: rgba(82, 62, 180, 0.3);
}

.value-card-divider .diamond {
    width: 4px;
    height: 4px;
    background-color: var(--primary-light);
    transform: rotate(45deg);
}

.value-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

/* --- Why Choose Us Section --- */
.why-section {
    padding: 40px 0 30px 0;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
}

.why-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-align: center;
}

.why-title .text-gold {
    color: var(--gold);
}

.why-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    justify-content: center;
    gap: 20px;
}

.why-card {
    background: linear-gradient(145deg, rgba(39, 21, 92, 0.7), rgba(20, 10, 48, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 195, 107, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #6c47b5, #3a2278);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.why-number {
    background-color: #6c47b5;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* --- Vision & Mission Section --- */
.vision-mission-section {
    padding: 35px 0;
    background-color: var(--white);
    position: relative;
    text-align: center;
}

.vision-block {
    margin-bottom: 30px;
}

.mission-block {
    margin-top: 60px;
    margin-bottom: 20px;
}

.vm-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vm-divider .line {
    height: 1px;
    width: 80px;
    background-color: rgba(82, 62, 180, 0.3);
}

.vm-divider .diamond {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.vm-divider .vm-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1.5px;
}

.vm-divider-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.vm-divider-bottom .line {
    height: 1px;
    width: 80px;
    background-color: rgba(82, 62, 180, 0.3);
}

.vm-divider-bottom .diamond {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

.vision-mission-section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vision-mission-section p {
    font-size: 1.15rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Social Connect Strip --- */
.social-strip-section {
    padding: 50px 0 60px;
    background-color: var(--white);
    text-align: center;
}

.social-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    font-size: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background-color: #0a66c2;
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.facebook {
    background-color: #1877f2;
}

/* --- Reels Section --- */
.reels-section {
    padding: 40px 0;
    background-color: #0b051f;
    /* Dark background matching the image */
    color: var(--white);
    text-align: center;
}

.reels-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: -10px;
    color: var(--white);
}

.reels-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 400;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
}

.reel-wrapper {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* A small padding/border can be simulated if needed, but iframe handles it */
}

/* --- Footer Section --- */
.footer-section {
    background-color: #171923;
    /* Dark background */
    padding: 50px 0 20px;
    color: #fff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 150px;
    margin-bottom: 40px;
}

.footer-logo-container {
    background: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    flex-shrink: 0;
    margin-left: 40px;
}

.footer-logo-container img {
    height: 80px;
    object-fit: contain;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.contact-item i {
    color: #ffffff;
    font-size: 1.3rem;
}

.footer-vertical-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 300px;
}

.footer-address i {
    color: #ffffff;
    font-size: 1.4rem;
    margin-top: 3px;
}

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

/* --- Fixed Call Button --- */
.fixed-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4a09ac;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(38, 0, 255, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.fixed-call-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* --- Global Hover Enhancements --- */
.service-card,
.why-card,
.value-card,
.vision-block,
.mission-block,
.reel-wrapper,
.contact-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.why-card:hover,
.value-card:hover,
.vision-block:hover,
.mission-block:hover,
.reel-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* --- Scroll Animations --- */
.fade-up-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1 1 45%;
    }

    .feature-card:not(:last-child)::after {
        display: none;
    }

    .feature-card:nth-child(even) {
        border-left: 1px solid var(--border-color);
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(2) {
        border-bottom: 1px solid var(--border-color);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loan-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .banking-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .about-divider-left {
        justify-content: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    }

    .nav-links.active {
        max-height: 400px;
        padding: 20px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
        padding-top: 50px;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-line {
        margin: 0 auto 15px auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-image-space {
        display: none;
    }

    .hero {
        background-position: center left;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-features {
        padding: 15px 15px 5px 15px;
        flex-direction: column;
        max-width: 85%;
        margin: 0 auto 40px auto;
    }

    .feature-card {
        flex: 1 1 100%;
        border-left: none !important;
        border-bottom: 1px solid var(--border-color) !important;
    }

    .feature-card:last-child {
        border-bottom: none !important;
    }

    .btn {
        width: 100%;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .loan-cards-grid {
        grid-template-columns: 1fr;
    }

    .loan-title {
        font-size: 2.2rem;
    }

    .investment-section {
        background-size: cover;
        background-position: center;
    }

    .investment-header {
        text-align: center;
    }

    .investment-line {
        margin: 5px auto 15px auto;
    }

    .investment-header h2 {
        font-size: 1.8rem;
    }

    .investment-header h3 {
        font-size: 2rem;
    }

    .investment-header p br {
        display: none;
    }

    .loan-section {
        background-size: cover;
        background-position: center;
    }

    .loan-divider .line {
        height: 1px;
    }

    .btn-loan {
        width: auto;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .banking-cards-grid {
        grid-template-columns: 1fr;
    }

    .banking-title {
        font-size: 2.2rem;
    }

    .banking-section {
        background-size: cover;
        background-position: center;
        padding: 50px 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-desc br {
        display: none;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-content {
        margin-bottom: 25px;
    }

    .about-section {
        background-size: cover;
        background-position: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 2.2rem;
    }

    .why-section {
        background-size: cover;
    }

    .vision-mission-section {
        padding: 40px 0;
    }

    .vision-mission-section h2 {
        font-size: 1.8rem;
    }

    .vision-mission-section p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .vision-mission-section .hide-mobile {
        display: none;
    }

    .vm-divider .line,
    .vm-divider-bottom .line {
        width: 40px;
    }

    .vision-block {
        margin-bottom: 40px;
    }

    .social-strip-section {
        padding: 40px 0;
    }

    .social-title {
        font-size: 1.6rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 30px;
        border-radius: 12px;
    }

    .reels-section {
        padding: 50px 0;
    }

    .reels-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
    }

    .reel-wrapper iframe {
        height: 35rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-logo-container {
        margin: 0 auto;
    }

    .footer-vertical-divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-address {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-address p br {
        display: none;
    }

    .footer-address i {
        margin-bottom: 5px;
        margin-top: 0;
    }

    .fixed-call-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}