 :root {
            --brand-red: #d32f2f;
            --brand-blue: #0a3254;
            --brand-yellow: #f5a623;
            --bg-light: #f4f6f9;
            --text-dark: #2c3e50;
            --text-muted: #6c757d;
			--accent: #d90429;
			--bg-light: #f8fafc;
       		--white: #ffffff;
        	--shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        	--radius: 16px;
			--primary: #0d47a1;
            --primary-dark: #072d6b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Inter Tight", sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
        }

        /* Top Header Notification Bar */
        .top-bar {
            background-color: var(--brand-red);
            color: white;
            padding: 6px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
            font-weight: 500;
        }

        .top-bar a:hover {
            color: var(--brand-yellow);
        }

        /* Main Navigation */
        header {
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 6%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            color: var(--brand-blue);
            text-decoration: none;
            text-transform: uppercase;
        }

        .logo-box {
            background: linear-gradient(135deg, var(--brand-red), var(--brand-yellow));
            color: white;
            padding: 6px 10px;
            border-radius: 6px;
        }

        .logo span {
            color: var(--brand-red);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 14px;
            padding: 12px 5px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--brand-red);
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 250px;
            background: white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border-top: 3px solid var(--brand-red);
            border-radius: 0 0 6px 6px;
            display: none;
            list-style: none;
            z-index: 100;
        }

        .dropdown li a {
            padding: 12px 18px;
            display: block;
            text-decoration: none;
            color: #333;
            font-size: 13px;
            font-weight: 600;
            border-bottom: 1px solid #f0f0f0;
            transition: 0.2s;
        }

        .dropdown li a:hover {
            background: #fff5f5;
            color: var(--brand-red);
            padding-left: 24px;
        }

        .nav-item:hover .dropdown {
            display: block;
        }

        .header-ctas {
            display: flex;
            gap: 10px;
        }

        .btn-pay {
            background: var(--brand-blue);
            color: white;
            padding: 9px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
            transition: 0.3s;
        }

        .btn-pay:hover {
            background: #062038;
        }

        .btn-apply {
            background: var(--brand-red);
            color: white;
            padding: 9px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
            transition: 0.3s;
        }

        .btn-apply:hover {
            background: #b71c1c;
        }

        /* Hero Container with Form on Right */
        .hero-container {
            position: relative;
            background: var(--brand-blue);
            overflow: hidden;
            min-height: 520px;
        }

        .slider {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(10,50,84,0.92) 0%, rgba(10,50,84,0.6) 50%, rgba(0,0,0,0.2) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 40px 6%;
            min-height: 520px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .hero-text {
            color: white;
            max-width: 580px;
        }

        .hero-text h1 {
            font-size: 42px;
            line-height: 1.2;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .hero-text p {
            font-size: 17px;
            margin-bottom: 25px;
            color: #e0e6ed;
        }

        /* Right Side Quick Enquiry Form */
        .quick-enquiry-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            width: 100%;
            max-width: 360px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
            border-top: 5px solid var(--brand-red);
        }

        .quick-enquiry-card h3 {
            color: var(--brand-blue);
            font-size: 20px;
            margin-bottom: 5px;
            text-align: center;
        }

        .quick-enquiry-card p {
            color: var(--text-muted);
            font-size: 12px;
            text-align: center;
            margin-bottom: 15px;
        }

        .quick-form input, .quick-form select {
            width: 100%;
            padding: 10px 12px;
            margin-bottom: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 13px;
        }

        .quick-form input:focus, .quick-form select:focus {
            outline: none;
            border-color: var(--brand-red);
        }

        .btn-quick-submit {
            width: 100%;
            background: var(--brand-red);
            color: white;
            border: none;
            padding: 12px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-quick-submit:hover {
            background: var(--brand-blue);
        }

        /* Running Ticker Section Below Hero */
        .ticker-wrap {
            width: 100%;
            background: #fff;
            border-top: 2px solid var(--brand-yellow);
            border-bottom: 1px solid #e1e8ed;
            display: flex;
            align-items: center;
            overflow: hidden;
            height: 42px;
        }

        .ticker-title {
            background: var(--brand-red);
            color: white;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 13px;
            white-space: nowrap;
            z-index: 10;
            box-shadow: 3px 0 8px rgba(0,0,0,0.1);
        }

        .ticker-move {
            display: flex;
            white-space: nowrap;
            animation: ticker 30s linear infinite;
        }

        .ticker-move:hover {
            animation-play-state: paused;
        }

        .ticker-item {
            display: inline-block;
            padding: 0 30px;
            font-size: 14px;
            color: var(--brand-blue);
            font-weight: 600;
        }

        .ticker-item i {
            color: var(--brand-red);
            margin-right: 6px;
        }

        @keyframes ticker {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Stats Bar */
        .stats-bar {
            background: #000;
            color: white;
            padding: 25px 6%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .stat-card h2 {
            font-size: 32px;
            color: var(--brand-yellow);
            font-weight: 800;
        }

        .stat-card p {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Section Layouts */
        .section-padding {
            padding: 60px 6%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-title h2 {
            font-size: 32px;
            color: var(--brand-blue);
            font-weight: 800;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--brand-red);
        }

        .section-title p {
            color: var(--text-muted);
            margin-top: 10px;
            font-size: 16px;
        }

        /* Our Loan Products (8 Boxes Layout) */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .product-card {
            background: white;
            border: 1px solid #e1e8ed;
            border-top: 4px solid var(--brand-red);
            border-radius: 6px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
            border-top-color: var(--brand-yellow);
        }

        .product-card .icon-box {
            width: 65px;
            height: 65px;
            background: #fff2f2;
            color: var(--brand-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 26px;
            transition: 0.3s;
        }

        .product-card:hover .icon-box {
            background: var(--brand-red);
            color: white;
        }

        .product-card h3 {
            color: var(--brand-blue);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .product-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .product-card a {
            color: var(--brand-red);
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* About Us Section */
        .about-container {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .about-image {
            flex: 1;
            min-width: 320px;
        }

        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .about-text {
            flex: 1;
            min-width: 320px;
        }

        .about-text h3 {
            color: var(--brand-red);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .about-text h2 {
            color: var(--brand-blue);
            font-size: 32px;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-text p {
            color: #555;
            margin-bottom: 15px;
            font-size: 15px;
        }

        /* Unique Value Props */
        .features-section {
            background: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-box {
            display: flex;
            gap: 20px;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-box-1 {
            background: #eef5fc;
            border-left: 5px solid var(--brand-blue);
        }
        .feature-box-1 i { color: var(--brand-blue); }

        .feature-box-2 {
            background: #fdeaea;
            border-left: 5px solid var(--brand-red);
        }
        .feature-box-2 i { color: var(--brand-red); }

        .feature-box-3 {
            background: #fef7e7;
            border-left: 5px solid var(--brand-yellow);
        }
        .feature-box-3 i { color: #d98200; }

        .feature-box i { font-size: 38px; }

        .feature-box h4 {
            color: var(--brand-blue);
            font-size: 18px;
            margin-bottom: 5px;
        }

        .feature-box p {
            font-size: 14px;
            color: var(--text-dark);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--brand-blue);
            color: white;
            position: relative;
        }

        .testimonials-section .section-title h2 { color: white; }
        .testimonials-section .section-title p { color: #b0c4de; }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            min-height: 180px;
        }

        .testimonial-item {
            position: absolute;
            top: 0; left: 0; width: 100%;
            opacity: 0;
            transition: opacity 0.6s ease;
            text-align: center;
            padding: 0 20px;
        }

        .testimonial-item.active {
            opacity: 1;
            position: relative;
        }

        .testimonial-item p {
            font-size: 18px;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .client-meta h4 {
            color: var(--brand-yellow);
            font-size: 18px;
        }

        .client-meta span {
            font-size: 14px;
            color: #d0dce5;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .dot {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            cursor: pointer;
        }

        .dot.active {
            background: var(--brand-yellow);
            width: 25px;
            border-radius: 6px;
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .blog-card {
            border: 1px solid #e1e8ed;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .blog-card img {
            width: 100%;
            height: 190px;
            object-fit: cover;
        }

        .blog-body { padding: 20px; }

        .blog-date {
            font-size: 12px;
            color: var(--brand-red);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .blog-body h3 {
            font-size: 18px;
            color: var(--brand-blue);
            margin-bottom: 10px;
        }

        .blog-body p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .blog-body a {
            color: var(--brand-blue);
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
        }

        /* Combined 50% - 50% Section for Form & FAQs at bottom */
        .bottom-split-section {
            background: var(--bg-light);
            border-top: 1px solid #e1e8ed;
        }

        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .split-grid {
                grid-template-columns: 1fr;
            }
        }

        .split-form-card {
            background: white;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            border-top: 5px solid var(--brand-red);
        }

        .split-form-card h3 {
            color: var(--brand-blue);
            font-size: 24px;
            margin-bottom: 8px;
        }

        .split-form-card p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 25px;
        }

        .form-grid-compact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-grid-compact .full-width {
            grid-column: span 2;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            font-size: 13px;
            margin-bottom: 5px;
            color: var(--brand-blue);
        }

        .form-group input, .form-group select {
            padding: 10px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: var(--brand-red);
        }

        .btn-submit-compact {
            grid-column: span 2;
            background: var(--brand-red);
            color: white;
            border: none;
            padding: 12px;
            font-size: 15px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
            transition: 0.3s;
        }

        .btn-submit-compact:hover {
            background: var(--brand-blue);
        }

        .split-faq-card h3 {
            color: var(--brand-blue);
            font-size: 24px;
            margin-bottom: 8px;
        }

        .split-faq-card p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 25px;
        }

        .faq-item {
            border: 1px solid #e1e8ed;
            border-radius: 6px;
            margin-bottom: 12px;
            background: white;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 18px;
            font-weight: 700;
            font-size: 15px;
            color: var(--brand-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
        }

        .faq-question:hover {
            background: #fff5f5;
            color: var(--brand-red);
        }

        .faq-answer {
            padding: 15px 18px;
            display: none;
            font-size: 14px;
            color: #555;
            border-top: 1px solid #e1e8ed;
            background: white;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: var(--brand-red);
        }

        /* Footer */
        footer {
            background: #061e36;
            color: #b0c4de;
            padding: 60px 6% 20px;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: white;
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 30px; height: 2px;
            background: var(--brand-yellow);
        }

        .footer-col ul { list-style: none; }

        .footer-col ul li { margin-bottom: 10px; }

        .footer-col ul li a {
            color: #b0c4de;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-col ul li a:hover {
            color: var(--brand-yellow);
            padding-left: 5px;
        }

        .social-links a {
            color: white;
            font-size: 18px;
            margin-right: 15px;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #103358;
            padding-top: 20px;
            font-size: 13px;
        }
		
		
		/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    /* 1. Top Bar Mobile Fix */
    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .top-bar div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    /* 2. Header & Navigation Mobile Fix */
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 12px 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
        width: 100%;
    }

    .nav-link {
        padding: 6px 8px;
        font-size: 13px;
    }

    .header-ctas {
        width: 100%;
        justify-content: center;
    }

    .btn-pay, .btn-apply {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
    }

    /* 3. Dropdown Menu for Mobile */
    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--brand-red);
        background: #f9f9f9;
    }

    /* 4. Bottom Split Grid (Form & FAQs) Mobile Fix */
    .split-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .split-form-card, .split-faq-card {
        padding: 20px 15px;
    }

    .form-grid-compact {
        grid-template-columns: 1fr !important;
    }

    .form-grid-compact .full-width,
    .form-grid-compact div {
        grid-column: span 1 !important;
    }

    .btn-submit-compact {
        grid-column: span 1 !important;
    }

    /* 5. FAQ Text Alignment Fix */
    .faq-question {
        font-size: 14px;
        padding: 12px 15px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 12px 15px;
    }
}

/* Hamburger Toggle Button Style */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--brand-blue);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-cta-wrapper {
    display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .hamburger-btn {
        display: block;
    }

    .desktop-ctas {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, box-shadow 0.3s ease;
        box-shadow: none;
    }

    .nav-menu.active {
        max-height: 500px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        border-bottom: 3px solid var(--brand-red);
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 12px 20px;
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 4px solid var(--brand-red);
        background: #f9f9f9;
    }

    .mobile-cta-wrapper {
        display: flex;
        gap: 10px;
        padding: 15px 20px;
        background: #fff;
    }

    .mobile-cta-wrapper .btn-pay,
    .mobile-cta-wrapper .btn-apply {
        flex: 1;
        text-align: center;
    }
}


/* Business loan page css */

/* ==========================================================================
   Business Loan - Body Content CSS Only
   ========================================================================== */

/* Color Variables */
:root {
    --brand-blue: #0b2545;
    --brand-red: #d90429;
    --brand-red-hover: #b8001f;
    --text-dark: #2b2d42;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* 1. Hero Section (Top Banner) */
.hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #134074 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Main Container & Headings */
.container {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 20px;
}

.container h2 {
    font-size: 26px;
    color: var(--brand-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
	margin-top:20px;
}

.container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--brand-red);
}

/* 3. Features Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 22px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card h3 {
    font-size: 18px;
    color: var(--brand-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h3 i {
    color: var(--brand-red);
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* 4. Documents & Eligibility Lists */
.container ul {
    list-style: none;
    margin-top: 15px;
}

.container ul li {
    background: var(--white);
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 4px solid var(--brand-blue);
    font-size: 15px;
    box-shadow: var(--shadow);
}

/* 5. Action Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--brand-red);
    color: var(--white);
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 25px;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--brand-red-hover);
}

/* 6. Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }
}

/* Top Language Bar Styles */
.top-bar {
    background-color: #051937;
    color: #ffffff;
    font-size: 13px;
    padding: 6px 0;
	display: flex;
    flex-direction: column;
}
.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar .contact-info {
    display: flex;
    gap: 20px;
}
.top-bar .lang-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 3px;
}
.top-bar .lang-btn.active {
    background-color: var(--brand-red);
    font-weight: bold;
}

/* Info Table Styles */
.table-responsive {
    overflow-x: auto;
    margin-top: 15px;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.info-table th, .info-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.info-table th {
    background-color: var(--brand-blue);
    color: var(--white);
    width: 35%;
}

/* Process Steps Layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.step-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
}
.step-num {
    width: 40px;
    height: 40px;
    background: var(--brand-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

/* FAQ Styling */
.faq-item {
    background: var(--white);
    padding: 18px;
    border-radius: 6px;
    margin-bottom: 12px;
    border-left: 4px solid var(--brand-red);
    box-shadow: var(--shadow);
}
.faq-item h4 {
    color: var(--brand-blue);
    margin-bottom: 6px;
}
.text-center { text-align: center; }

/* About Us CSS */

/* Top Full-Width Hero Banner */
    .cg-about-hero-banner {
        position: relative;
        background: linear-gradient(rgba(7, 45, 107, 0.85), rgba(13, 71, 161, 0.85)), 
                    url('https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
        padding: 100px 20px 80px 20px;
        text-align: center;
        color: var(--white);
    }

    .cg-banner-content h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }

    .cg-banner-content p {
        font-size: 18px;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto 20px auto;
    }

    .cg-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
    }

    .cg-breadcrumb a {
        color: var(--accent);
        text-decoration: none;
    }

    .cg-breadcrumb span {
        opacity: 0.6;
    }

    /* Main Container Section */
    .cg-about-section {
        background-color: var(--bg-light);
        padding: 80px 20px;
        color: var(--text-dark);
    }

    .cg-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Main Hero Details Section */
    .cg-hero {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 70px;
    }

    .cg-hero-img-wrap {
        flex: 1;
        position: relative;
    }

    .cg-hero-img-wrap img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        display: block;
        object-fit: cover;
    }

    .cg-hero-content {
        flex: 1;
    }

    .cg-badge {
        display: inline-block;
        background: rgba(13, 71, 161, 0.1);
        color: var(--primary);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .cg-hero-content h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    .cg-hero-content p {
        font-size: 16px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 15px;
    }

    /* Highlight Cards */
    .cg-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin: 25px 0;
    }

    .cg-highlight-item {
        background: var(--white);
        padding: 15px;
        border-radius: 12px;
        border-left: 4px solid var(--primary);
        box-shadow: var(--shadow);
    }

    .cg-highlight-item h4 {
        font-size: 15px;
        color: var(--primary-dark);
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cg-highlight-item p {
        font-size: 13px;
        color: var(--text-muted);
        margin: 0;
    }

    .cg-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary);
        color: var(--white);
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
    }

    .cg-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* Stats Banner */
    .cg-stats-banner {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        border-radius: var(--radius);
        padding: 40px 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
        color: var(--white);
        margin-bottom: 70px;
        box-shadow: var(--shadow);
    }

    .cg-stat-box h3 {
        font-size: 36px;
        font-weight: 800;
        color: var(--accent);
        margin-bottom: 5px;
    }

    .cg-stat-box p {
        font-size: 14px;
        opacity: 0.9;
        font-weight: 500;
    }

    /* Mission & Vision Grid */
    .cg-mv-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 70px;
    }

    .cg-mv-card {
        background: var(--white);
        padding: 35px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .cg-mv-icon {
        width: 55px;
        height: 55px;
        background: rgba(13, 71, 161, 0.1);
        color: var(--primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cg-mv-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .cg-mv-card p {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.7;
    }

    /* Features Grid */
    .cg-section-title {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 40px auto;
    }

    .cg-section-title h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .cg-section-title p {
        color: var(--text-muted);
        font-size: 16px;
    }

    .cg-features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .cg-feature-card {
        background: var(--white);
        padding: 30px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .cg-feature-card:hover {
        transform: translateY(-5px);
    }

    .cg-feature-icon {
        width: 65px;
        height: 65px;
        background: rgba(255, 152, 0, 0.15);
        color: #e67e22;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin: 0 auto 20px auto;
    }

    .cg-feature-card h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cg-feature-card p {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .cg-hero {
            flex-direction: column;
        }

        .cg-stats-banner {
            grid-template-columns: repeat(2, 1fr);
        }

        .cg-features-grid, .cg-mv-grid {
            grid-template-columns: 1fr;
        }

        .cg-banner-content h1 {
            font-size: 32px;
        }
    }

    @media (max-width: 576px) {
        .cg-highlights, .cg-stats-banner {
            grid-template-columns: 1fr;
        }

        .cg-hero-content h2 {
            font-size: 26px;
        }
    }
	
	/* Contact Us CSS */
	
	/* Top Hero Banner */
    .cg-contact-hero-banner {
        position: relative;
        background: linear-gradient(rgba(7, 45, 107, 0.85), rgba(13, 71, 161, 0.85)), 
                    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
        padding: 90px 20px 70px 20px;
        text-align: center;
        color: var(--white);
    }

    .cg-contact-banner-content h1 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .cg-contact-banner-content p {
        font-size: 17px;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto 20px auto;
    }

    .cg-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
    }

    .cg-breadcrumb a {
        color: var(--accent);
        text-decoration: none;
    }

    .cg-breadcrumb span {
        opacity: 0.6;
    }

    /* Main Section */
    .cg-contact-section {
        background-color: var(--bg-light);
        padding: 70px 20px;
        color: var(--text-dark);
    }

    .cg-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Info Cards Grid */
    .cg-info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .cg-info-card {
        background: var(--white);
        padding: 30px 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .cg-info-card:hover {
        transform: translateY(-5px);
    }

    .cg-info-icon {
        width: 60px;
        height: 60px;
        background: rgba(13, 71, 161, 0.1);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin: 0 auto 15px auto;
    }

    .cg-info-card h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .cg-info-card p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .cg-info-card a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

    /* Main Form & Map Container */
    .cg-contact-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        overflow: hidden;
    }

    /* Contact Form Side */
    .cg-form-side {
        padding: 45px;
    }

    .cg-form-side h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 8px;
        color: var(--text-dark);
    }

    .cg-form-side p {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .cg-form-group {
        margin-bottom: 20px;
    }

    .cg-form-group label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--text-dark);
    }

    .cg-form-control {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 14px;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .cg-form-control:focus {
        border-color: var(--primary);
    }

    .cg-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .cg-submit-btn {
        width: 100%;
        background: var(--primary);
        color: var(--white);
        padding: 14px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .cg-submit-btn:hover {
        background: var(--primary-dark);
    }

    /* Map Side */
    .cg-map-side {
        position: relative;
        min-height: 400px;
    }

    .cg-map-side iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .cg-info-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .cg-contact-wrap {
            grid-template-columns: 1fr;
        }

        .cg-map-side {
            height: 350px;
        }
    }

    @media (max-width: 576px) {
        .cg-info-grid {
            grid-template-columns: 1fr;
        }

        .cg-form-row {
            grid-template-columns: 1fr;
        }

        .cg-form-side {
            padding: 25px;
        }
    }
	
	
	/* Popup Background Blur Overlay */
    .cg-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.65);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        padding: 20px;
    }

    /* Active State for Overlay */
    .cg-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Modal Box */
    .cg-modal-box {
        background: #ffffff;
        width: 100%;
        max-width: 500px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        transform: scale(0.85);
        transition: transform 0.3s ease-in-out;
        position: relative;
    }

    .cg-modal-overlay.active .cg-modal-box {
        transform: scale(1);
    }

    /* Header */
    .cg-modal-header {
        background: linear-gradient(135deg, #072d6b, #0d47a1);
        color: #ffffff;
        padding: 25px 30px;
        position: relative;
    }

    .cg-modal-header h3 {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .cg-modal-header p {
        font-size: 13px;
        opacity: 0.85;
    }

    /* Close (X) Button */
    .cg-modal-close {
        position: absolute;
        top: 18px;
        right: 20px;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: #ffffff;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: background 0.2s ease;
    }

    .cg-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Form Body */
    .cg-modal-body {
        padding: 30px;
    }

    .cg-modal-group {
        margin-bottom: 16px;
    }

    .cg-modal-group label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 6px;
    }

    .cg-modal-control {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        font-size: 14px;
        outline: none;
        transition: border-color 0.2s ease;
        box-sizing: border-box;
    }

    .cg-modal-control:focus {
        border-color: #0d47a1;
    }

    .cg-modal-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Submit Button */
    .cg-modal-submit {
        width: 100%;
        background: #0d47a1;
        color: #ffffff;
        border: none;
        padding: 14px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        margin-top: 10px;
        transition: background 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .cg-modal-submit:hover {
        background: #072d6b;
    }

    @media (max-width: 480px) {
        .cg-modal-row {
            grid-template-columns: 1fr;
        }
        .cg-modal-body {
            padding: 20px;
        }
    }
	
	
/* Home Loan Page CSS	*/

.cg-hl-hero {
        position: relative;
        background: linear-gradient(rgba(7, 45, 107, 0.85), rgba(13, 71, 161, 0.85)), 
                    url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
        padding: 90px 20px 70px 20px;
        text-align: center;
        color: var(--white);
    }

    .cg-hl-hero-content h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .cg-hl-hero-content p {
        font-size: 18px;
        opacity: 0.9;
        max-width: 650px;
        margin: 0 auto 25px auto;
    }

    .cg-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
    }

    .cg-breadcrumb a {
        color: var(--accent);
        text-decoration: none;
    }

    .cg-breadcrumb span {
        opacity: 0.6;
    }

    /* Common Section Setup */
    .cg-hl-section {
        background-color: var(--bg-light);
        padding: 70px 20px;
        color: var(--text-dark);
    }

    .cg-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .cg-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary);
        color: var(--white);
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
        cursor: pointer;
        border: none;
    }

    .cg-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* Key Highlights Strip */
    .cg-hl-highlights {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 70px;
    }

    .cg-hl-card {
        background: var(--white);
        padding: 25px 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        text-align: center;
        border-bottom: 4px solid var(--primary);
    }

    .cg-hl-card i {
        font-size: 30px;
        color: var(--accent);
        margin-bottom: 12px;
    }

    .cg-hl-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .cg-hl-card p {
        font-size: 14px;
        color: var(--text-muted);
    }

    /* Overview Section */
    .cg-hl-overview {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 70px;
    }

    .cg-hl-overview-img {
        flex: 1;
    }

    .cg-hl-overview-img img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .cg-hl-overview-content {
        flex: 1;
    }

    .cg-hl-overview-content h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .cg-hl-overview-content p {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .cg-hl-feature-list {
        list-style: none;
        margin-bottom: 25px;
    }

    .cg-hl-feature-list li {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cg-hl-feature-list li i {
        color: #10b981;
    }

    /* Loan Types Section */
    .cg-section-title {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 40px auto;
    }

    .cg-section-title h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .cg-section-title p {
        color: var(--text-muted);
        font-size: 16px;
    }

    .cg-hl-types-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 70px;
    }

    .cg-type-card {
        background: var(--white);
        padding: 30px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: transform 0.3s ease;
    }

    .cg-type-card:hover {
        transform: translateY(-5px);
    }

    .cg-type-icon {
        width: 55px;
        height: 55px;
        background: rgba(13, 71, 161, 0.1);
        color: var(--primary);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cg-type-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cg-type-card p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    /* Documents Grid */
    .cg-doc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 70px;
    }

    .cg-doc-box {
        background: var(--white);
        padding: 35px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .cg-doc-box h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-dark);
    }

    .cg-doc-box ul {
        list-style: none;
    }

    .cg-doc-box ul li {
        font-size: 14px;
        color: var(--text-muted);
        padding: 10px 0;
        border-bottom: 1px dashed #e2e8f0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cg-doc-box ul li:last-child {
        border-bottom: none;
    }

    .cg-doc-box ul li i {
        color: var(--accent);
    }

    /* Process Steps */
    .cg-process-banner {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        border-radius: var(--radius);
        padding: 50px 30px;
        color: var(--white);
        text-align: center;
        box-shadow: var(--shadow);
    }

    .cg-process-banner h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 40px;
    }

    .cg-steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .cg-step-box {
        position: relative;
    }

    .cg-step-num {
        width: 45px;
        height: 45px;
        background: var(--accent);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 18px;
        margin: 0 auto 15px auto;
    }

    .cg-step-box h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cg-step-box p {
        font-size: 13px;
        opacity: 0.85;
        line-height: 1.5;
    }

    /* Responsive Rules */
    @media (max-width: 992px) {
        .cg-hl-overview {
            flex-direction: column;
        }

        .cg-hl-highlights, .cg-hl-types-grid, .cg-steps-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .cg-doc-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .cg-hl-highlights, .cg-hl-types-grid, .cg-steps-grid {
            grid-template-columns: 1fr;
        }

        .cg-hl-hero-content h1 {
            font-size: 30px;
        }
    }
	
	
/* Loan against Property CSS */

/* Top Hero Banner */
    .cg-lap-hero {
        position: relative;
        background: linear-gradient(rgba(7, 45, 107, 0.85), rgba(13, 71, 161, 0.85)), 
                    url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
        padding: 90px 20px 70px 20px;
        text-align: center;
        color: var(--white);
    }

    .cg-lap-hero-content h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .cg-lap-hero-content p {
        font-size: 18px;
        opacity: 0.9;
        max-width: 650px;
        margin: 0 auto 25px auto;
    }

    .cg-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
    }

    .cg-breadcrumb a {
        color: var(--accent);
        text-decoration: none;
    }

    .cg-breadcrumb span {
        opacity: 0.6;
    }

    /* Section Wrapper */
    .cg-lap-section {
        background-color: var(--bg-light);
        padding: 70px 20px;
        color: var(--text-dark);
    }

    .cg-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .cg-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary);
        color: var(--white);
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 71, 161, 0.2);
        cursor: pointer;
        border: none;
    }

    .cg-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* Key Features Cards */
    .cg-lap-highlights {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 70px;
    }

    .cg-lap-card {
        background: var(--white);
        padding: 25px 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        text-align: center;
        border-bottom: 4px solid var(--accent);
    }

    .cg-lap-card i {
        font-size: 30px;
        color: var(--primary);
        margin-bottom: 12px;
    }

    .cg-lap-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .cg-lap-card p {
        font-size: 14px;
        color: var(--text-muted);
    }

    /* Overview Section */
    .cg-lap-overview {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 70px;
    }

    .cg-lap-overview-img {
        flex: 1;
    }

    .cg-lap-overview-img img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .cg-lap-overview-content {
        flex: 1;
    }

    .cg-lap-overview-content h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .cg-lap-overview-content p {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .cg-lap-feature-list {
        list-style: none;
        margin-bottom: 25px;
    }

    .cg-lap-feature-list li {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cg-lap-feature-list li i {
        color: #10b981;
    }

    /* Section Title */
    .cg-section-title {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 40px auto;
    }

    .cg-section-title h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .cg-section-title p {
        color: var(--text-muted);
        font-size: 16px;
    }

    /* Property Acceptance Grid */
    .cg-lap-types-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 70px;
    }

    .cg-type-card {
        background: var(--white);
        padding: 30px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: transform 0.3s ease;
    }

    .cg-type-card:hover {
        transform: translateY(-5px);
    }

    .cg-type-icon {
        width: 55px;
        height: 55px;
        background: rgba(255, 152, 0, 0.15);
        color: #e67e22;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .cg-type-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .cg-type-card p {
        font-size: 14px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    /* Eligible Documents Grid */
    .cg-doc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 70px;
    }

    .cg-doc-box {
        background: var(--white);
        padding: 35px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .cg-doc-box h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-dark);
    }

    .cg-doc-box ul {
        list-style: none;
    }

    .cg-doc-box ul li {
        font-size: 14px;
        color: var(--text-muted);
        padding: 10px 0;
        border-bottom: 1px dashed #e2e8f0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cg-doc-box ul li:last-child {
        border-bottom: none;
    }

    .cg-doc-box ul li i {
        color: var(--primary);
    }

    /* Process Banner */
    .cg-process-banner {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        border-radius: var(--radius);
        padding: 50px 30px;
        color: var(--white);
        text-align: center;
        box-shadow: var(--shadow);
    }

    .cg-process-banner h2 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 40px;
    }

    .cg-steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .cg-step-box {
        position: relative;
    }

    .cg-step-num {
        width: 45px;
        height: 45px;
        background: var(--accent);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 18px;
        margin: 0 auto 15px auto;
    }

    .cg-step-box h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cg-step-box p {
        font-size: 13px;
        opacity: 0.85;
        line-height: 1.5;
    }

    /* Responsive Rules */
    @media (max-width: 992px) {
        .cg-lap-overview {
            flex-direction: column;
        }

        .cg-lap-highlights, .cg-lap-types-grid, .cg-steps-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .cg-doc-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .cg-lap-highlights, .cg-lap-types-grid, .cg-steps-grid {
            grid-template-columns: 1fr;
        }

        .cg-lap-hero-content h1 {
            font-size: 30px;
        }
    }
	
/* FAQ Page CSS */

.cg-faq-hero {
        position: relative;
        width: 100%;
        min-height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(rgba(7, 45, 107, 0.75), rgba(13, 71, 161, 0.75)), 
                    url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    .cg-faq-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }

    .cg-faq-hero-content h1 {
        color: #ffffff;
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 14px;
    }

    .cg-faq-hero-content p {
        color: rgba(255, 255, 255, 0.92);
        font-size: 16px;
        margin: 0 auto 24px auto;
        max-width: 650px;
    }

    .cg-breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(8px);
        padding: 8px 22px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
    }

    .cg-breadcrumb a {
        color: var(--accent);
        text-decoration: none;
    }

    /* Main Container */
    .cg-faq-section {
        background-color: var(--bg-light);
        padding: 70px 20px;
    }

    .cg-container {
        max-width: 1180px;
        margin: 0 auto;
    }

    .cg-section-title {
        text-align: center;
        margin-bottom: 40px;
    }

    .cg-section-title h2 {
        font-size: 32px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .cg-section-title p {
        color: var(--text-muted);
        font-size: 16px;
    }

    /* FAQ Accordion Styling */
    .cg-faq-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .cg-faq-item {
        background: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow);
        border: 1px solid #e2e8f0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .cg-faq-question {
        width: 100%;
        padding: 22px 25px;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 17px;
        font-weight: 700;
        color: var(--text-dark);
        text-align: left;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .cg-faq-question:hover {
        color: var(--primary);
    }

    .cg-faq-icon {
        width: 32px;
        height: 32px;
        background: rgba(13, 71, 161, 0.08);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
        flex-shrink: 0;
        margin-left: 15px;
    }

    .cg-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
        padding: 0 25px;
        background: #ffffff;
    }

    .cg-faq-answer p {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.7;
        padding-bottom: 22px;
    }

    /* Active Accordion State */
    .cg-faq-item.active {
        border-color: var(--primary);
    }

    .cg-faq-item.active .cg-faq-question {
        color: var(--primary);
    }

    .cg-faq-item.active .cg-faq-icon {
        transform: rotate(180deg);
        background: var(--primary);
        color: var(--white);
    }

    .cg-faq-item.active .cg-faq-answer {
        max-height: 500px;
        transition: max-height 0.3s ease-in-out;
    }

    /* Still Have Questions Box */
    .cg-faq-cta {
        margin-top: 50px;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        border-radius: var(--radius);
        padding: 40px 30px;
        text-align: center;
        color: var(--white);
        box-shadow: var(--shadow);
    }

    .cg-faq-cta h3 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .cg-faq-cta p {
        font-size: 15px;
        opacity: 0.9;
        margin-bottom: 25px;
    }

    .cg-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--accent);
        color: var(--white);
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .cg-btn:hover {
        background: #e68a00;
        transform: translateY(-2px);
    }

    @media (max-width: 768px) {
        .cg-faq-hero {
            min-height: 300px;
            padding: 40px 15px;
        }

        .cg-faq-hero-content h1 {
            font-size: 28px;
        }

        .cg-faq-question {
            font-size: 15px;
            padding: 18px 20px;
        }
    }	