/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0bf5da;
    --primary-dark: #370896;
    --secondary: #430cea;
    --dark-bg: #1c356e;
    --dark-card: #1e293b;
    --dark-card-hover: #334155;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(245, 158, 11, 0.2);
    --success: #10b981;
    --danger: #0f0f90;
    --emerald: #10b981;
    --blue: #3b82f6;
    --purple: #a855f7;
    --yellow: #eab308;
    
    /* Investment Colors */
    --inv-bg: #f7f9fb;
    --inv-card: #ffffff;
    --inv-text: #1a202c;
    --inv-text-light: #4a5568;
    --inv-border: #e2e8f0;
    --inv-teal: #20B2AA;
    --inv-blue: #3b82f6;
    --inv-navy: #1e3a5f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 50%, var(--dark-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo img{
    width:70px;
    height:50px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===================================
   TOP INFO BAR
   =================================== */
.top-info-bar {
    background: #2c3e8d;
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
    position: relative;
    z-index: 100;
}

.top-info-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-info-item:hover {
    opacity: 0.8;
}

.top-info-item i {
    font-size: 0.9rem;
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.follow-text {
    margin-right: 5px;
    font-weight: 500;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .top-info-bar {
        font-size: 0.75rem;
    }
    
    .top-info-container {
        flex-direction: column;
        gap: 10px;
        padding: 8px 1rem;
    }
    
    .top-info-left {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-info-right {
        gap: 8px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* WhatsApp Modal */
.whatsapp-modal-content {
    max-width: 500px !important;
}

.whatsapp-modal-content .modal-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #25D366;
}

.whatsapp-modal-content .modal-header h2 i {
    font-size: 1.8rem;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--inv-text);
    transition: all 0.3s;
}

.whatsapp-option:hover {
    border-color: #25D366;
    background: #f0fdf4;
    transform: translateX(5px);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 28px;
    color: white;
}

.whatsapp-details {
    flex: 1;
}

.whatsapp-label {
    font-size: 0.85rem;
    color: var(--inv-text-light);
    margin-bottom: 4px;
}

.whatsapp-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--inv-text);
}

.whatsapp-option > i {
    color: #25D366;
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.brand-text p {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    background: var(--dark-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: var(--dark-card-hover);
    color: var(--text-primary);
}

.mobile-menu.active {
    display: block;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

/* Main Content */
main {
    min-height: 100vh;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 18, 31, 0.574) 0%, rgba(17, 22, 32, 0.682) 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--inv-text);
    border: 2px solid var(--inv-border);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--inv-bg);
    border-color: var(--inv-teal);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 8, 89, 0.4);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.emerald {
    background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
}

.service-icon.blue {
    background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
}

.service-icon.purple {
    background: linear-gradient(135deg, var(--purple) 0%, #9333ea 100%);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.service-features svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
}

.service-card:hover .service-link {
    transform: translateX(8px);
}

/* ===================================
   LOAN SLIDER - COMPLETE FIX
   =================================== */
.loan-slider-section {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    padding: 0;
    margin: 60px 0;
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.loan-slide {
    display: none;
    width: 100%;
}

.loan-slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 60px 80px;
}

.slide-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.slide-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
}

.slider-btn {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    align-self: flex-start;
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.slider-nav i {
    width: 28px;
    height: 28px;
    color: white;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 30px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ===================================
   MOBILE RESPONSIVE - SLIDER
   =================================== */

/* Tablets and below */
@media (max-width: 992px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }
    
    .slide-image {
        order: 1;
        height: 350px;
        border-radius: 0;
        margin-bottom: 0;
    }
    
    .slide-text {
        order: 2;
        text-align: center;
        padding: 40px 30px;
        align-items: center;
    }
    
    .slide-text h2 {
        font-size: 2.2rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        align-self: center;
    }
    
    .slider-nav {
        top: 175px; /* Half of image height */
        width: 50px;
        height: 50px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-nav i {
        width: 24px;
        height: 24px;
    }
}

/* Mobile phones */
@media (max-width: 640px) {
    .slide-image {
        height: 280px;
    }
    
    .slide-text {
        padding: 30px 20px;
    }
    
    .slide-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .slide-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .slider-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
    
    .slider-nav {
        top: 140px;
        width: 45px;
        height: 45px;
    }
    
    .slider-nav i {
        width: 22px;
        height: 22px;
    }
    
    .slider-dots {
        padding: 20px 0;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .slide-image {
        height: 240px;
    }
    
    .slide-text {
        padding: 25px 15px;
    }
    
    .slide-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .slide-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .slider-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        top: 120px;
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-nav i {
        width: 20px;
        height: 20px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
}

/* Extra small phones */
@media (max-width: 375px) {
    .slide-image {
        height: 220px;
    }
    
    .slide-text h2 {
        font-size: 1.3rem;
    }
    
    .slide-text p {
        font-size: 0.9rem;
    }
    
    .slider-nav {
        top: 110px;
    }
}

.image-invest {
    padding: 40px 0;
}

.image-invest h4 {
    color: white;
    font-size: 50px;
    font-weight: 600!important;
    text-align: center;
    margin-bottom: 40px;
}

.image-section {
    position: relative;
    width: 800px;
    height: 500px;
    margin: 0 auto;
    max-width: 90%;
}

.circle-under {
    position: absolute;
    width: 420px;
    height: 420px;
    background: #1e6bff;
    border-radius: 50%;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.image-section img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    z-index: 2;
}

/* ============================================
   INVESTMENT SECTION
   ============================================ */

.investment-section {
    padding: 80px 0;
    background: var(--inv-bg);
    color: var(--inv-text);
}

.investment-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.investment-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--inv-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.investment-hero-subtitle {
    font-size: 1.2rem;
    color: var(--inv-text-light);
    line-height: 1.6;
}

.investment-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Company About Section */
.company-about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-images {
    position: relative;
    height: 550px;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    padding: 35px 45px;
    border-radius: 20px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
}

.badge-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-1 {
    width: 320px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-2 {
    width: 320px;
    height: 340px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-content {
    padding: 20px 0;
}

.about-label {
    color: #0ea5e9;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--inv-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.italic-text {
    font-style: italic;
    color: #0ea5e9;
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--inv-text-light);
    margin-bottom: 30px;
}

.development-services h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--inv-text);
    margin-bottom: 15px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--inv-text-light);
}

.service-item i {
    width: 20px;
    height: 20px;
    color: #0ea5e9;
    flex-shrink: 0;
}

.btn-get-quote {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-get-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.btn-get-quote i {
    width: 18px;
    height: 18px;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    padding: 40px 60px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    width: 30px;
    height: 30px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Three Blocks Section */
.three-blocks-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.feature-block {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.feature-block.featured {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-block.featured:hover {
    transform: translateY(-15px);
}

.block-icon {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-block.featured .block-icon {
    background: rgba(255, 255, 255, 0.2);
}

.block-icon i {
    width: 36px;
    height: 36px;
    color: #0ea5e9;
}

.feature-block.featured .block-icon i {
    color: white;
}

.feature-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--inv-text);
}

.feature-block.featured h3 {
    color: white;
}

.feature-block p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--inv-text-light);
    margin-bottom: 20px;
}

.feature-block.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.read-more {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.feature-block.featured .read-more {
    color: white;
}

.read-more:hover {
    gap: 10px;
}

.read-more i {
    width: 16px;
    height: 16px;
}

.investment-card {
    background: var(--inv-card);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--inv-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.investment-card.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle.teal {
    background: linear-gradient(135deg, var(--inv-teal), #17a2b8);
}

.icon-circle.blue {
    color:white!important;
    background: linear-gradient(135deg, var(--inv-blue), #91b4ff);
}

.icon-circle i {
    width: 28px;
    height: 28px;
    color: white;
}

.investment-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--inv-text);
    margin: 0;
}

.investment-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--inv-text-light);
    margin-bottom: 15px;
}

/* Terms Grid */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.term-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.term-icon {
    width: 50px;
    height: 50px;
    background: rgb(89, 89, 255);
    border-radius: 50%;
    display: flex;
    color:white!important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.term-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.term-label {
    font-size: 0.9rem;
    color: var(--inv-text-light);
    margin-bottom: 5px;
}

.term-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--inv-text);
}

.info-note {
    display: flex;
    gap: 15px;
    background: rgba(252, 255, 46, 0.408);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
}

.info-note i {
    width: 24px;
    height: 24px;
    color: var(--inv-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-note p {
    margin: 0;
    font-size: 1rem;
}

/* CTA Card */
.cta-card-simple {
    background: linear-gradient(135deg, var(--inv-navy) 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

.cta-card-simple h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-card-simple > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.benefit-item i {
    width: 20px;
    height: 20px;
    color: var(--inv-teal);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.95rem;
    color: white;
}

.cta-note-simple {
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--inv-border);
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--inv-text);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--inv-text-light);
    transition: all 0.3s;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--inv-bg);
    color: var(--inv-text);
}

.modal-close i {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--inv-text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--inv-border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--inv-text);
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--inv-teal);
    box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success i {
    width: 80px;
    height: 80px;
    color: var(--success);
    margin-bottom: 20px;
}

.booking-success h3 {
    font-size: 1.75rem;
    color: var(--inv-text);
    margin-bottom: 15px;
}

.booking-success p {
    font-size: 1.05rem;
    color: var(--inv-text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */

.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7f9fb 0%, #ffffff 100%);
}

.testimonials-content {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials .section-title {
    color: var(--inv-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--inv-text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.testimonial-slider {
    position: relative;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}

.testimonial-card.active {
    opacity: 1;
    display: block;
}

.testimonial-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    padding: 60px 50px 50px;
    border-radius: 20px;
    border: 3px solid #60a5fa;
    position: relative;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
}

.testimonial-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: -90px auto 20px;
    border: 5px solid #60a5fa;
    background: #ddd;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(96, 165, 250, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    text-align: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-title {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-text .highlight {
    font-weight: 700;
    color: #60a5fa;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 2rem;
}

.star {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.control-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.control-btn:hover {
    background: #1e3a8a;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.testimonial-dots .dot.active {
    background: #1e3a8a;
    width: 35px;
    border-radius: 6px;
}

.testimonial-dots .dot:hover {
    background: #64748b;
}

/* Testimonial Mobile Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 15px;
    }

    .testimonials .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .testimonial-content {
        padding: 50px 30px 40px;
    }

    .testimonial-avatar {
        width: 100px;
        height: 100px;
        margin: -75px auto 15px;
    }

    .testimonial-name {
        font-size: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .star-rating {
        font-size: 1.75rem;
    }

    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 50px 10px;
    }

    .testimonials .section-title {
        font-size: 1.75rem;
    }

    .testimonial-content {
        padding: 40px 25px 35px;
    }

    .testimonial-avatar {
        width: 90px;
        height: 90px;
        margin: -65px auto 12px;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

    .testimonial-title {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .star-rating {
        font-size: 1.5rem;
        gap: 6px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    .testimonial-dots .dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-dots .dot.active {
        width: 28px;
    }
}

/* ===================================
   CSR SECTION
   =================================== */

.csr-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.csr-header {
    text-align: center;
    margin-bottom: 60px;
}

.csr-header .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.csr-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.csr-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.csr-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.csr-slider-track {
    display: flex;
    position: relative;
}

.csr-slide {
    min-width: 100%;
    display: none;
    position: relative;
}

.csr-slide.active {
    display: block;
}

.csr-slide-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.csr-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.csr-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.7) 50%,
        rgba(15, 23, 42, 0.3) 100%
    );
}

.csr-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 60px;
    color: white;
    z-index: 10;
}

.csr-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #0bf5da 0%, #430cea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.9;
}

.csr-slide-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.csr-slide-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* CSR Navigation Buttons */
.csr-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 100;
    pointer-events: none;
}

.csr-nav-btn {
    pointer-events: all;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.csr-nav-btn:hover {
    background: rgba(11, 245, 218, 0.3);
    border-color: #0bf5da;
    transform: scale(1.1);
}

.csr-nav-btn i {
    width: 28px;
    height: 28px;
}

/* CSR Indicators */
.csr-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.csr-indicator {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.csr-indicator.active {
    background: linear-gradient(135deg, #0bf5da 0%, #430cea 100%);
    width: 80px;
}

.csr-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* CSR Mobile Responsive */
@media (max-width: 992px) {
    .csr-slide-image {
        height: 400px;
    }

    .csr-slide-content {
        padding: 40px 40px;
    }

    .csr-number {
        font-size: 4rem;
    }

    .csr-slide-content h3 {
        font-size: 2rem;
    }

    .csr-slide-content p {
        font-size: 1.05rem;
    }

    .csr-nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .csr-header .section-title {
        font-size: 2rem;
    }

    .csr-slide-image {
        height: 350px;
    }

    .csr-slide-content {
        padding: 30px 30px;
    }

    .csr-number {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .csr-slide-content h3 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .csr-slide-content p {
        font-size: 1rem;
    }

    .csr-nav-btn {
        width: 45px;
        height: 45px;
    }

    .csr-nav-btn i {
        width: 24px;
        height: 24px;
    }

    .csr-indicators {
        margin-top: 30px;
        gap: 8px;
    }

    .csr-indicator {
        width: 40px;
        height: 3px;
    }

    .csr-indicator.active {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .csr-section {
        padding: 60px 0;
    }

    .csr-header .section-title {
        font-size: 1.75rem;
    }

    .csr-header .section-subtitle {
        font-size: 1rem;
    }

    .csr-slide-image {
        height: 300px;
    }

    .csr-slide-content {
        padding: 25px 20px;
    }

    .csr-number {
        font-size: 2.5rem;
    }

    .csr-slide-content h3 {
        font-size: 1.5rem;
    }

    .csr-slide-content p {
        font-size: 0.95rem;
    }

    .csr-nav-btn {
        width: 40px;
        height: 40px;
    }

    .csr-slider-nav {
        padding: 0 10px;
    }

    .csr-indicator {
        width: 30px;
    }

    .csr-indicator.active {
        width: 50px;
    }
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.value-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer */
.footer {
    background: #040830;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-link {
    text-decoration: none;
    color: inherit;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    .company-about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        height: 450px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .three-blocks-section {
        grid-template-columns: 1fr;
    }
    
    .feature-block.featured {
        transform: translateY(0);
    }
    
    .feature-block.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .investment-hero-title {
        font-size: 2rem;
    }
    
    .investment-hero-subtitle {
        font-size: 1.05rem;
    }
    
    .investment-card {
        padding: 25px;
    }
    
    .investment-card h3 {
        font-size: 1.5rem;
    }
    
    .term-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .image-section {
        width: 600px;
        height: 375px;
    }
    
    .circle-under {
        width: 320px;
        height: 320px;
        bottom: -30px;
    }
    
    .about-images {
        height: 400px;
        max-width: 400px;
    }
    
    .image-1 {
        width: 260px;
        height: 230px;
    }
    
    .image-2 {
        width: 260px;
        height: 280px;
    }
    
    .experience-badge {
        padding: 25px 35px;
    }
    
    .badge-number {
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .stats-bar {
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .image-invest h4 {
        font-size: 30px;
    }
    
    .image-section {
        width: 100%;
        height: 280px;
        padding: 0 20px;
    }
    
    .circle-under {
        width: 220px;
        height: 220px;
        bottom: -20px;
    }
    
    .about-images {
        height: 350px;
        max-width: 300px;
    }
    
    .image-1 {
        width: 200px;
        height: 180px;
    }
    
    .image-2 {
        width: 200px;
        height: 220px;
    }
    
    .experience-badge {
        padding: 20px 25px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 26px;
    }
}