* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
}

/* Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* padding: 15px 0; */
    padding: 0px !important;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a !important;
}

.navbar-nav .nav-link {
    color: #333;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #1a5f7a;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary-custom {
    background-color: #ff6b35;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #e55a28;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: white;
    color: #1a5f7a;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Partner Logos */
.partner-section {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 20px;
}

.partner-logo {
    padding: 10px 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.about-image {
    max-width: 100%;
    border-radius: 10px;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 50px;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Loan Section */
.loan-section {
    padding: 80px 0;
}

.loan-content {
    padding-left: 50px;
}

.loan-features {
    list-style: none;
    padding: 0;
}

.loan-features li {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
}

.loan-features li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 10px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    color: white;
    padding: 80px 0;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.benefit-icon i {
    font-size: 30px;
    color: #1a5f7a;
}

/* Calculator Section */
.calculator-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.testimonial-info h5 {
    margin: 0;
    color: #1a5f7a;
    font-weight: 600;
}

.testimonial-info small {
    color: #999;
}

/* Application Section */
.application-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.application-image {
    background: #000;
    padding: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-image h2 {
    color: white;
    font-size: 48px;
    font-weight: 700;
}

.application-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-card {
    text-align: center;
    padding: 30px;
}

.process-number {
    width: 80px;
    height: 80px;
    background: #1a5f7a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .loan-content {
        padding-left: 0;
        margin-top: 30px;
    }
}







.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ff6b35;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 40px;
    color: white;
}

.mv-card h3 {
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.value-item {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.value-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 50px;
    color: white;
}

.value-item h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-info .position {
    color: #ff6b35;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #1a5f7a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.team-social a:hover {
    background: #ff6b35;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
}

.feature-box {
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #1a5f7a;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s;
}

.feature-box:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #ff6b35;
}

.feature-box i {
    font-size: 40px;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.feature-box h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    background: #1a5f7a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }
}




/* Hide dropdown by default */
.nav-item.dropdown .dropdown-menu {
    display: none;
    margin-top: 0;
}

/* Show on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Smooth animation */
.dropdown-menu {
    animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.page-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px;
    opacity: 0.3;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}



/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 40px;
    color: white;
}

.contact-card h4 {
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #ff6b35;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #1a5f7a;
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 122, 0.15);
}

.btn-primary-custom {
    background-color: #1a5f7a;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Map Section */
.map-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Office Hours */
.office-hours {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.office-hours h3 {
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 25px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: #333;
    font-weight: 500;
}

.time {
    color: #666;
}

.closed {
    color: #ff6b35;
    font-weight: 600;
}

/* Branch Section */
.branch-section {
    padding: 80px 0;
}

.branch-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.branch-card h4 {
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 20px;
}

.branch-info {
    margin-bottom: 10px;
}

.branch-info i {
    color: #ff6b35;
    margin-right: 10px;
    width: 20px;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1a5f7a;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a5f7a;
    color: white;
}

/* Social Media */
.social-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    color: white;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: white;
    color: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}




/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Documents Section */
.documents-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.document-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 30px;
    color: white;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    padding: 80px 0;
    color: white;
}

.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-primary-custom {
    background-color: #1a5f7a;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1a5f7a;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a5f7a;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    background: #1a5f7a;
    color: white;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}




/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Documents Section */
.documents-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.document-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 30px;
    color: white;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    padding: 80px 0;
    color: white;
}

.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-primary-custom {
    background-color: #1a5f7a;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1a5f7a;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a5f7a;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    background: #1a5f7a;
    color: white;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}





/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Documents Section */
.documents-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.document-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 30px;
    color: white;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    padding: 80px 0;
    color: white;
}

.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-primary-custom {
    background-color: #1a5f7a;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1a5f7a;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a5f7a;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    background: #1a5f7a;
    color: white;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}



/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Documents Section */
.documents-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.document-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 30px;
    color: white;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    padding: 80px 0;
    color: white;
}

.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-primary-custom {
    background-color: #1a5f7a;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1a5f7a;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a5f7a;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    background: #1a5f7a;
    color: white;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}





/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Documents Section */
.documents-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.document-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 30px;
    color: white;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    padding: 80px 0;
    color: white;
}

.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-primary-custom {
    background-color: #1a5f7a;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1a5f7a;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a5f7a;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    background: #1a5f7a;
    color: white;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}




/* Service Overview */
.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Documents Section */
.documents-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.document-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 30px;
    color: white;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
    padding: 80px 0;
    color: white;
}

.calculator-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-primary-custom {
    background-color: #1a5f7a;
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #1a5f7a;
    font-weight: 600;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a5f7a;
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.btn-light-custom:hover {
    background: #1a5f7a;
    color: white;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #1a5f7a;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.scroll-top:hover {
    background-color: #ff6b35;
}




.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #1a5f7a;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
}






.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

.insurance-types {
    padding: 80px 0;
}

.insurance-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.insurance-card h3 {
    color: #1a5f7a;
    margin: 20px 0 15px 0;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: #ff6b35;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
}




.service-overview {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: white;
}

.feature-card h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 15px;
}

.eligibility-section {
    padding: 80px 0;
}

.eligibility-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-list {
    list-style: none;
    padding: 0;
}

.eligibility-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #555;
}

.eligibility-list li:before {
    content: "✓";
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.btn-light-custom {
    background: white;
    color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
}




 /* Service Overview */
        .service-overview {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a5f7a;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .service-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Features Section */
        .features-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon i {
            font-size: 35px;
            color: white;
        }
        
        .feature-card h4 {
            color: #1a5f7a;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Eligibility Section */
        .eligibility-section {
            padding: 80px 0;
        }
        
        .eligibility-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .eligibility-list {
            list-style: none;
            padding: 0;
        }
        
        .eligibility-list li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 16px;
            color: #555;
        }
        
        .eligibility-list li:before {
            content: "✓";
            color: #1a5f7a;
            font-weight: bold;
            margin-right: 15px;
            font-size: 20px;
        }
        
        /* Documents Section */
        .documents-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .document-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
        }
        
        .document-icon {
            width: 60px;
            height: 60px;
            background: #ff6b35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .document-icon i {
            font-size: 30px;
            color: white;
        }
        
        /* Process Section */
        .process-section {
            padding: 80px 0;
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            font-weight: 700;
            color: white;
        }
        
        .process-step h4 {
            color: #1a5f7a;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Calculator Section */
        .calculator-section {
            background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
            padding: 80px 0;
            color: white;
        }
        
        .calculator-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .form-label {
            font-weight: 500;
            color: #333;
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            padding: 10px 15px;
            border-radius: 5px;
        }
        
        .btn-primary-custom {
            background-color: #1a5f7a;
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background-color: #ff6b35;
            transform: translateY(-2px);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .accordion-button {
            background-color: white;
            color: #1a5f7a;
            font-weight: 600;
            padding: 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: #1a5f7a;
            color: white;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .btn-light-custom {
            background: white;
            color: #ff6b35;
            padding: 12px 40px;
            font-weight: 600;
            border-radius: 30px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-light-custom:hover {
            background: #1a5f7a;
            color: white;
        }



        /* Service Overview */
        .service-overview {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a5f7a;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .service-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Features Section */
        .features-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon i {
            font-size: 35px;
            color: white;
        }
        
        .feature-card h4 {
            color: #1a5f7a;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Eligibility Section */
        .eligibility-section {
            padding: 80px 0;
        }
        
        .eligibility-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .eligibility-list {
            list-style: none;
            padding: 0;
        }
        
        .eligibility-list li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 16px;
            color: #555;
        }
        
        .eligibility-list li:before {
            content: "✓";
            color: #1a5f7a;
            font-weight: bold;
            margin-right: 15px;
            font-size: 20px;
        }
        
        /* Documents Section */
        .documents-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .document-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
        }
        
        .document-icon {
            width: 60px;
            height: 60px;
            background: #ff6b35;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .document-icon i {
            font-size: 30px;
            color: white;
        }
        
        /* Process Section */
        .process-section {
            padding: 80px 0;
        }
        
        .process-step {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a5f7a 0%, #2d8a9e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            font-weight: 700;
            color: white;
        }
        
        .process-step h4 {
            color: #1a5f7a;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Calculator Section */
        .calculator-section {
            background: linear-gradient(135deg, #87ceeb 0%, #5dade2 100%);
            padding: 80px 0;
            color: white;
        }
        
        .calculator-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .form-label {
            font-weight: 500;
            color: #333;
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            padding: 10px 15px;
            border-radius: 5px;
        }
        
        .btn-primary-custom {
            background-color: #1a5f7a;
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background-color: #ff6b35;
            transform: translateY(-2px);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .accordion-button {
            background-color: white;
            color: #1a5f7a;
            font-weight: 600;
            padding: 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: #1a5f7a;
            color: white;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .btn-light-custom {
            background: white;
            color: #ff6b35;
            padding: 12px 40px;
            font-weight: 600;
            border-radius: 30px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-light-custom:hover {
            background: #1a5f7a;
            color: white;
        }
        
        
        
        

.testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-subtitle {
    color: #c59d5f;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 15px;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid #c59d5f;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
}

/* Owl Dots */
.owl-theme .owl-dots .owl-dot span {
    background: #c59d5f;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #000;
}

