
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Image Scroller on Page Load */
        .image-scroller {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 9999;
            background: #0d5c0d;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        
        .scrolling-images {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .scrolling-image {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-size: cover;
            background-position: center;
            animation: imageScroll 20s infinite;
        }
        
        .scrolling-image:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            animation-delay: 0s;
        }
        
        .scrolling-image:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            animation-delay: 4s;
        }
        
        .scrolling-image:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1556742044-3c52d6e88c62?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            animation-delay: 8s;
        }
        
        .scrolling-image:nth-child(4) {
            background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            animation-delay: 12s;
        }
        
        .scrolling-image:nth-child(5) {
            background-image: url('https://images.unsplash.com/photo-1554224154-26032ffc0d07?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            animation-delay: 16s;
        }
        
        @keyframes imageScroll {
            0% { opacity: 0; }
            10% { opacity: 1; }
            20% { opacity: 1; }
            30% { opacity: 0; }
            100% { opacity: 0; }
        }
        
        .scroller-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            background: rgba(13, 92, 13, 0.8);
            padding: 40px;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
        }
        
        .scroller-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        
        .scroller-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
			 text-align: justify;
        }
        
        .skip-scroller {
            background: #ffcc00;
            color: #0d5c0d;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #0d5c0d 0%, #1a7c1a 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            margin-right: 15px;
            color: #ffcc00;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }
        
        .logo span {
            color: #ffcc00;
        }
        
        .logo p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #ffcc00;
        }
        
        .auth-buttons button {
            padding: 8px 20px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            margin-left: 10px;
            transition: all 0.3s;
        }
        
        .login-btn {
            background: transparent;
            color: white;
            border: 1px solid white !important;
        }
        
        .signup-btn {
            background: #ffcc00;
            color: #0d5c0d;
        }
        
        .auth-buttons button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Hero Section */
        .hero {
            background: white;
            background-size: cover;
            background-position: center;
            color: black;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
			 text-align: justify;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .cta-buttons button {
            padding: 15px 30px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
			background: #ffcc00;
        }
        
        .apply-loan-btn {
            background: #ffcc00;
            color: #0d5c0d;
        }
        
        .learn-more-btn {
            background: #ffcc00;
            color: black;
            border: 2px solid white !important;
        }
        
        .cta-buttons button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        
        /* Mission, Vision, Core Values Section */
        .mvp-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .mvp-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .mvp-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-top: 4px solid #0d5c0d;
        }
        
        .mvp-card:hover {
            transform: translateY(-10px);
        }
        
        .mvp-icon {
            font-size: 3rem;
            color: #0d5c0d;
            margin-bottom: 20px;
        }
        
        .mvp-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #0d5c0d;
        }
        
        .core-values-list {
            list-style: none;
            text-align: left;
        }
        
        .core-values-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .core-values-list li i {
            color: #0d5c0d;
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: #0d5c0d;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
			 text-align: justify;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #0d5c0d;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: #0d5c0d;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0d5c0d;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
			 text-align: justify;
        }
        
        .currency-highlight {
            color: #0d5c0d;
            font-weight: bold;
            background: #e9f7e9;
            padding: 3px 8px;
            border-radius: 4px;
            display: inline-block;
            margin: 5px 0;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .team-info {
            padding: 25px;
        }
        
        .team-info h4 {
            color: #0d5c0d;
            margin-bottom: 5px;
        }
        
        .team-info p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
			 text-align: justify;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .team-social a {
            color: #0d5c0d;
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .team-social a:hover {
            color: #ffcc00;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            min-width: 100%;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
        }
        
        .author-info h4 {
            color: #0d5c0d;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #777;
            font-size: 0.9rem;
			 text-align: justify;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .nav-dot.active {
            background: #0d5c0d;
        }
        
        /* Loan Application Section */
        .loan-application {
            padding: 80px 0;
            background-color: white;
        }
        
        .application-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .application-form {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .application-form h3 {
            color: #0d5c0d;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
        }
        
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #0d5c0d;
        }
        
        .currency-input {
            position: relative;
        }
        
        .currency-input input {
            padding-left: 40px;
        }
        
        .currency-symbol {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-weight: bold;
            color: #0d5c0d;
        }
        
        .submit-btn {
            background: #0d5c0d;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: #0a4a0a;
        }
        
        .application-info h3 {
            color: #0d5c0d;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .application-info ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .application-info ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .application-info ul li i {
            color: #0d5c0d;
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* Live Support Floating Widget */
        .support-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .support-widget.minimized {
            bottom: 30px;
            right: 30px;
        }
        
        .widget-header {
            background: #0d5c0d;
            color: white;
            padding: 15px 20px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .widget-header.minimized {
            border-radius: 10px;
            width: 300px;
        }
        
        .widget-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .widget-title i {
            font-size: 1.2rem;
        }
        
        .widget-controls {
            display: flex;
            gap: 10px;
        }
        
        .widget-controls button {
            background: transparent;
            border: none;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .widget-controls button:hover {
            transform: scale(1.1);
        }
        
        .widget-content {
            background: white;
            width: 350px;
            height: 450px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 0 0 10px 10px;
            overflow: hidden;
        }
        
        .widget-content.minimized {
            display: none;
        }
        
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8f9fa;
        }
        
        .message {
            margin-bottom: 15px;
            padding: 10px 15px;
            border-radius: 8px;
            max-width: 85%;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .agent-message {
            background: white;
            border: 1px solid #e9ecef;
            align-self: flex-start;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .user-message {
            background: #e9f7e9;
            border: 1px solid #d4edda;
            align-self: flex-end;
            margin-left: auto;
        }
        
        .chat-input-container {
            padding: 15px;
            border-top: 1px solid #e9ecef;
            background: white;
        }
        
        .chat-input {
            display: flex;
            gap: 10px;
        }
        
        .chat-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        
        .chat-input button {
            background: #0d5c0d;
            color: white;
            border: none;
            width: 40px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .chat-input button:hover {
            background: #0a4a0a;
        }
        
        .agent-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #28a745;
        }
        
        /* Footer */
        footer {
            background: #0d5c0d;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #ffcc00;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .application-container {
                grid-template-columns: 1fr;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 15px;
            }
            
            .auth-buttons {
                margin-top: 20px;
            }
            
            .widget-content {
                width: 300px;
                height: 400px;
            }
            
            .widget-header.minimized {
                width: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons button {
                width: 100%;
                max-width: 300px;
            }
            
            .support-widget {
                bottom: 20px;
                right: 20px;
            }
            
            .widget-content {
                width: calc(100vw - 40px);
                max-width: 350px;
            }
            
            .widget-header.minimized {
                width: calc(100vw - 40px);
                max-width: 300px;
            }
            
            .scroller-content h1 {
                font-size: 2rem;
            }
        }
        
        /* Loan Status Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 10px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .modal-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }
        
        .approval-icon {
            color: #0d5c0d;
        }
        
        .rejection-icon {
            color: #d9534f;
        }
        
        .modal-content h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .modal-content p {
            margin-bottom: 25px;
            color: #666;
			 text-align: justify;
        }
        
        .close-modal {
            background: #0d5c0d;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
        }
        
        .open-chat-btn {
            background: #0d5c0d;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 30px auto 0;
            transition: background 0.3s;
        }
        
        .open-chat-btn:hover {
            background: #0a4a0a;
        }
    </style>
	
   <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles with Light Blue Theme */
        header {
            background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            margin-right: 15px;
            color: #ffd600;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }
        
        .logo span {
            color: #ffd600;
        }
        
        .logo p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #ffd600;
        }
        
        .auth-buttons {
            display: flex;
            gap: 10px;
        }
        
        .auth-buttons button, .auth-buttons a {
            padding: 8px 20px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .login-btn {
            background: transparent;
            color: white;
            border: 1px solid white !important;
        }
        
        .signup-btn {
            background: #ffd600;
            color: #0d47a1;
        }
        
        .dashboard-btn {
            background: #ffd600;
            color: #0d47a1;
        }
        
        .auth-buttons button:hover, .auth-buttons a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        /* Hero Section with Scrolling Images */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 600px;
            overflow: hidden;
            color: white;
        }
        
        /* .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        } */
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            background-size: cover;
            background-position: center;
            animation: heroSlider 25s infinite;
        }
        
        .slide:nth-child(1) {
            background-image: linear-gradient(rgba(30, 136, 229, 0.85), rgba(13, 71, 161, 0.85)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            animation-delay: 0s;
        }
        
        .slide:nth-child(2) {
            background-image: linear-gradient(rgba(30, 136, 229, 0.85), rgba(13, 71, 161, 0.85)), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            animation-delay: 5s;
        }
        
        .slide:nth-child(3) {
            background-image: linear-gradient(rgba(30, 136, 229, 0.85), rgba(13, 71, 161, 0.85)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            animation-delay: 10s;
        }
        
        /* .slide:nth-child(4) {
            background-image: linear-gradient(rgba(30, 136, 229, 0.85), rgba(13, 71, 161, 0.85)), url('https://images.unsplash.com/photo-1556742044-3c52d6e88c62?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            animation-delay: 15s;
        }
        
        .slide:nth-child(5) {
            background-image: linear-gradient(rgba(30, 136, 229, 0.85), rgba(13, 71, 161, 0.85)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            animation-delay: 20s;
        } */
        
        @keyframes heroSlider {
            0%, 20% {
                opacity: 1;
            }
            25%, 100% {
                opacity: 0;
            }
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            max-width: 900px;
            z-index: 2;
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #ffd600;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 500;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .cta-buttons button, .cta-buttons a {
            padding: 18px 35px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .apply-loan-btn {
            background: #ffd600;
            color: #0d47a1;
            box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
        }
        
        .learn-more-btn {
            background: transparent;
            color: white;
            border: 2px solid white !important;
        }
        
        .cta-buttons button:hover, .cta-buttons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .apply-loan-btn:hover {
            background: #ffdf33;
            box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
        }
        
        .learn-more-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Mission, Vision, Core Values Section */
        .mvp-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .mvp-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .mvp-card {
            background: #f8f9fa;
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-top: 4px solid #1e88e5;
        }
        
        .mvp-card:hover {
            transform: translateY(-10px);
        }
        
        .mvp-icon {
            font-size: 3rem;
            color: #1e88e5;
            margin-bottom: 20px;
        }
        
        .mvp-card h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: #0d47a1;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: #0d47a1;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #1e88e5;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: #1e88e5;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0d47a1;
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .currency-highlight {
            color: #0d47a1;
            font-weight: bold;
            background: #e3f2fd;
            padding: 3px 8px;
            border-radius: 4px;
            display: inline-block;
            margin: 5px 0;
        }
        
        /* Vacancies Section */
        .vacancies-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .vacancies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .vacancy-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-left: 4px solid #1e88e5;
        }
        
        .vacancy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .vacancy-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .vacancy-title h4 {
            color: #0d47a1;
            margin-bottom: 5px;
        }
        
        .vacancy-type {
            background: #1e88e5;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .vacancy-details {
            margin-bottom: 20px;
        }
        
        .vacancy-details p {
            margin-bottom: 8px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .vacancy-details i {
            color: #1e88e5;
            width: 20px;
        }
        
        .vacancy-description {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .apply-vacancy-btn {
            background: #1e88e5;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: background 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .apply-vacancy-btn:hover {
            background: #1565c0;
        }
        
        .view-all-vacancies {
            text-align: center;
            margin-top: 40px;
        }
        
        .view-all-btn {
            background: transparent;
            color: #1e88e5;
            border: 2px solid #1e88e5;
            padding: 12px 30px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .view-all-btn:hover {
            background: #1e88e5;
            color: white;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            background-color: #e0e0e0;
        }
        
        .team-info {
            padding: 25px;
        }
        
        .team-info h4 {
            color: #0d47a1;
            margin-bottom: 5px;
        }
        
        .team-info p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .team-social a {
            color: #1e88e5;
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .team-social a:hover {
            color: #0d47a1;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: white;
        }
        
        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            min-width: 100%;
            background: #f8f9fa;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            background-color: #e0e0e0;
        }
        
        .author-info h4 {
            color: #0d47a1;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .nav-dot.active {
            background: #1e88e5;
        }
        
        /* Loan Application Section */
        .loan-application {
            padding: 80px 0;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }
        
        .application-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .application-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .application-form h3 {
            color: #0d47a1;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
        }
        
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #1e88e5;
        }
        
        .currency-input {
            position: relative;
        }
        
        .currency-input input {
            padding-left: 40px;
        }
        
        .currency-symbol {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-weight: bold;
            color: #1e88e5;
        }
        
        .submit-btn {
            background: #1e88e5;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }
        
        .submit-btn:hover {
            background: #1565c0;
        }
        
        .application-info h3 {
            color: #0d47a1;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .application-info ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .application-info ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .application-info ul li i {
            color: #1e88e5;
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* Live Support Widget */
        .support-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .support-widget.minimized {
            bottom: 30px;
            right: 30px;
        }
        
        .widget-header {
            background: #1e88e5;
            color: white;
            padding: 15px 20px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .widget-header.minimized {
            border-radius: 10px;
            width: 300px;
        }
        
        .widget-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .widget-title i {
            font-size: 1.2rem;
        }
        
        .widget-controls {
            display: flex;
            gap: 10px;
        }
        
        .widget-controls button {
            background: transparent;
            border: none;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .widget-controls button:hover {
            transform: scale(1.1);
        }
        
        .widget-content {
            background: white;
            width: 350px;
            height: 450px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 0 0 10px 10px;
            overflow: hidden;
        }
        
        .widget-content.minimized {
            display: none;
        }
        
        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            background: #f8f9fa;
        }
        
        .message {
            margin-bottom: 15px;
            padding: 10px 15px;
            border-radius: 8px;
            max-width: 85%;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .agent-message {
            background: white;
            border: 1px solid #e9ecef;
            align-self: flex-start;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .user-message {
            background: #e3f2fd;
            border: 1px solid #bbdefb;
            align-self: flex-end;
            margin-left: auto;
        }
        
        .chat-input-container {
            padding: 15px;
            border-top: 1px solid #e9ecef;
            background: white;
        }
        
        .chat-input {
            display: flex;
            gap: 10px;
        }
        
        .chat-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        
        .chat-input button {
            background: #1e88e5;
            color: white;
            border: none;
            width: 40px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .chat-input button:hover {
            background: #1565c0;
        }
        
        .agent-status {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4caf50;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                opacity: 1;
            }
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #0d47a1 0%, #1e88e5 100%);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffd600;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #ffd600;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .application-container {
                grid-template-columns: 1fr;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 15px;
            }
            
            .auth-buttons {
                margin-top: 20px;
            }
            
            .widget-content {
                width: 300px;
                height: 400px;
            }
            
            .widget-header.minimized {
                width: 250px;
            }
            
            .vacancies-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons button, .cta-buttons a {
                width: 100%;
                max-width: 300px;
            }
            
            .support-widget {
                bottom: 20px;
                right: 20px;
            }
            
            .widget-content {
                width: calc(100vw - 40px);
                max-width: 350px;
            }
            
            .widget-header.minimized {
                width: calc(100vw - 40px);
                max-width: 300px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-card {
                padding: 15px;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .vacancy-header {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        /* Alert Messages */
        .alert {
            padding: 12px 20px;
            border-radius: 6px;
            margin: 15px 0;
            font-size: 0.9rem;
        }
        
        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .alert-warning {
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }
        
        .vacancy-countdown {
            background: #e3f2fd;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #0d47a1;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        /* Navigation */
.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    background-color: #e2e8f0;
    padding: 20px;
    border-radius: 20px;
}
.main-nav .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-actions .contact-phone span {
        display: none;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .chat-widget {
        width: 300px;
        right: 15px;
        bottom: 15px;
    }


@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .service-card,
    .project-card {
        padding: 25px 20px;
    }
    
    .chat-widget {
        width: calc(100% - 30px);
        right: 15px;
    }
}
   