@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #0b2559;
    /* Darker blue for headings */
}

section {
    position: relative;
    overflow: hidden;
}

/* Custom Navbar */
.custom-navbar {
    background: rgba(13, 110, 253, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/main-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(10, 88, 202, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.btn-hero {
    background: linear-gradient(45deg, #ffc107, #ffdb4d);
    color: #333;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    background: linear-gradient(45deg, #ffdb4d, #ffc107);
    color: #333;
}

.hover-gray:hover {
    background-color: rgba(96, 92, 92, 0.7);
    color: #fcfcfc;
}

.benefit-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-card img {
    transition: transform 0.4s ease;
}

.benefit-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    color: #0d6efd;
    margin-top: 1rem;
    font-weight: 700;
}

.steps-list {
    position: relative;
    padding-left: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0d6efd;
    z-index: 0;
}

.step-item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.05);
    padding: 16px 12px;
    transition: box-shadow 0.2s, transform 0.2s;
    z-index: 1;
}

.step-item:hover {
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px) scale(1.01);
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #1976d2;
    color: #1976d2;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.08);
    position: relative;
    z-index: 2;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.step-item:hover .step-circle {
    background: #1976d2;
    color: #fff;
    border-color: #0d6efd;
}

@media (max-width: 991px) {
    .steps-list {
        max-width: 100%;
        padding-left: 0;
    }

    .steps-line {
        left: 20px;
    }

    .step-item:hover .step-circle {
        background: #1976d2;
        color: #fff;
        border-color: #f37021;
    }

}

@media (max-width: 767px) {
    .steps-list {
        padding-left: 0;
    }

    .steps-line {
        left: 20px;
    }

    .step-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 12px 8px;
    }

    .step-circle {
        margin-bottom: 8px;
    }

    .step-item:hover .step-circle {
        background: #1976d2;
        color: #fff;
        border-color: #0d6efd;


    }

    .hover-gray:hover {
        background-color: rgba(96, 92, 92, 0.7);
        color: #fcfcfc;
    }

}

.service-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
}

.service-card .card-body {
    padding: 2.5rem 2rem;
    z-index: 2;
    position: relative;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.service-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card a {
    color: #0d6efd;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.service-card a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

.service-card:hover a::before {
    width: 100%;
}

.testimonial-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 5px solid #0d6efd;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    position: relative;
}

.testimonial-card p::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.1;
    font-size: 3rem;
    color: #0d6efd;
}


.footer-section {
    background: #0b2559;
    color: #ecf0f1;
    padding-top: 0;
}

.footer-content {
    background: #0b2559;
    /* Deep Blue background */
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-copyright {
    background: #061a40;
    /* Even darker blue for copyright */
    padding: 1.5rem 0;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #ffc107;
    padding-left: 8px;
}

.footer-link::before {
    content: "\f054";
    /* chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.7rem;
    position: absolute;
    left: -15px;
    top: 5px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer-section .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s;
}

.footer-section .social-icons a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}





/* Contact Section Styles */
.contact-section {
    background: #fafbfc;
}

.contact-section .form-label {
    color: #444;
    font-weight: 500;
}

.contact-section .form-control {
    border-radius: 6px;
    border: 1.5px solid #d1d5db;
    font-size: 1.08rem;
    color: #222;
    background: #fff;
}

.contact-section .form-control:focus {
    border-color: #23489b;
    box-shadow: 0 0 0 0.15rem rgba(35, 72, 155, 0.08);
}

.contact-section .btn-primary {
    background: #23489b;
    border: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.contact-section .btn-primary:hover {
    background: #143b7d;
}

@media (max-width: 991px) {
    .contact-section .row>div {
        margin-bottom: 32px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating Call Button */
.call-float {
    position: fixed;
    bottom: 110px;
    right: 40px;
    background-color: #0d6efd;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: call-pulse 2s infinite;
}

.call-float:hover {
    background-color: #0b5ed7;
    color: white;
    transform: scale(1.1);
}

@keyframes call-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

/* Responsive Footer Centering */
@media (max-width: 991px) {

    .footer-section .col-lg-4,
    .footer-section .col-lg-2,
    .footer-section .col-lg-3,
    .footer-section .col-md-6 {
        text-align: center !important;
        align-items: center !important;
        display: flex;
        flex-direction: column;
    }

    .footer-section hr {
        margin: 1rem auto !important;
    }

    .footer-link {
        text-align: center;
        width: 100%;
        padding-left: 0 !important;
        /* Override hover padding shift for mobile */
    }

    .footer-link:hover {
        padding-left: 0 !important;
    }

    .footer-section img {
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   NEW TRUST & FEATURE SECTION STYLES
   ========================================= */

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0b2559 0%, #0d6efd 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Separator lines for larger screens */
@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
    color: #ffc107;
    /* Gold */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Feature/Benefit Icons */
.feature-icon-box {
    width: 90px;
    height: 90px;
    background: rgba(13, 110, 253, 0.05);
    /* Very light blue */
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    /* Bouncy transition */
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.benefit-card:hover .feature-icon-box {
    background: #0d6efd;
    color: white;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Star Rating */
.star-rating {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(45deg, #FFDD00, #ffca2c);
    padding: 60px 0;
    color: #333;
    position: relative;
}

.cta-strip h3 {
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}