/* Navbar spacing fix */
body {
    padding-top: 80px;
}

/* REMOVE LEFT GAP COMPLETELY */
.navbar .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-nav {
    margin-right: 25px;
}

/* Logo fix */
.navbar-brand {
    margin: 0;
    padding: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

/* Navbar links */
.navbar .nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #2C3E50;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #27AE60;
}

/* Active link */
.navbar .nav-link.active {
    color: #27AE60;
}

/* Button */
.btn-success {
    background-color: #27AE60;
    border: none;
}

.btn-success:hover {
    background-color: #219150;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 22px;
    padding: 12px 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

/* ********************************** */

/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    background: #F7FAFF;
    padding: 40px 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 40px;
    }
}

/* Heading */
.hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #0A3D62;
    line-height: 1.2;
}

/* Text */
.hero-text {
    font-size: 18px;
    color: #555;
    margin-top: 15px;
    max-width: 500px;
}

/* Image */
.hero-img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-heading {
        font-size: 30px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin: 15px auto;
    }

    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        flex: 1;
        text-align: center;
        padding: 10px;
    }

    .hero-img {
        max-width: 85%;
    }
}

/* TRUST SECTION */
.trust-section {
    background: #ffffff;
}

.trust-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D62;
}

.trust-subtext {
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Cards */
.trust-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trust-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #0A3D62;
}

.trust-card p {
    font-size: 14px;
    color: #666;
}

/* Icon */
.trust-icon {
    font-size: 30px;
    color: #27AE60;
}

/* Hover Effect */
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .trust-heading {
        font-size: 26px;
    }
}

/* PLANS SECTION */
.plans-section {
    background: #F7FAFF;
}

.plans-heading {
    font-size: 38px;
    font-weight: 700;
    color: #0A3D62;
    margin-bottom: 15px;
}

.plans-subtext {
    font-size: 17px;
    color: #666;
    max-width: 720px;
    margin: auto;
    line-height: 1.8;
}

/* CARD */
.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    transition: 0.3s ease;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1px solid #eef2f7;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

/* ICON */
.plan-icon {
    font-size: 55px;
    line-height: 1;
}

/* TITLE */
.plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #0A3D62;
    line-height: 1.5;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.plan-description {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

/* BUTTON */
.plan-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {

    .plans-heading {
        font-size: 30px;
    }

    .plans-subtext {
        font-size: 15px;
    }

    .plan-title {
        min-height: auto;
        font-size: 22px;
    }

}

/* WHY SECTION */
.why-section {
    background: #ffffff;
}

.why-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D62;
}

.why-text {
    color: #666;
    margin-top: 10px;
    max-width: 500px;
}

/* List */
.why-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.why-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

/* Image */
.why-img {
    max-width: 90%;
}

/* Mobile */
@media (max-width: 768px) {

    .why-heading {
        font-size: 26px;
        text-align: center;
    }

    .why-text {
        text-align: center;
        margin: 10px auto 20px;
    }

    .why-list {
        max-width: 280px;
        margin: 0 auto;
        text-align: left;
    }

    .why-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        line-height: 1.7;
    }

}


.testimonial-section {
    background: #F7FAFF;
}

.testimonial-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0A3D62;
}

.testimonial-subtext {
    color: #666;
    margin-top: 10px;
}

/* Slider */
.testimonial-slider {
    position: relative;
    min-height: 180px; /* container height fix */
}

/* Each item */
.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    opacity: 0;
    transition: opacity 0.6s ease-in-out;

    min-height: 180px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
}

.testimonial-stars {
    color: #f1c40f;
    margin: 10px 0;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    color: #0A3D62;
}


/* Active */
.testimonial-item.active {
    opacity: 1;
}

/* Text */
.testimonial-item p {
    font-size: 16px;
    color: #555;
    font-style: italic;
}

.testimonial-item h6 {
    margin-top: 15px;
    font-weight: 600;
    color: #0A3D62;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-heading {
        font-size: 26px;
        text-align: center;
    }

    .testimonial-subtext {
        text-align: center;
    }
}

/* ================= CTA SECTION ================= */

.cta-section {
    background: linear-gradient(135deg, #0A3D62, #27AE60);
    padding: 70px 0;
    color: #fff;
}

.cta-heading {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-text {
    margin-top: 15px;
    font-size: 16px;
    color: #eaeaea;
}

/* Buttons */
.cta-buttons .btn {
    border-radius: 30px;
}

/* Mobile */
@media (max-width: 768px) {

    .cta-heading {
        font-size: 26px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 80%;
    }
}

/* ================= FOOTER ================= */

.footer-section {
    background: #FFFFFF;
    padding: 60px 0 25px;
    border-top: 1px solid #e9eef5;
}

/* LOGO */
.footer-logo {
    width: 230px;
    display: block;
}

/* HEADING */
.footer-heading {
    font-size: 19px;
    font-weight: 700;
    color: #0A3D62;
    margin-bottom: 22px;
}

/* TEXT */
.footer-text {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    max-width: 320px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

/* LINKS + CONTACT */
.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: 0.3s ease;
    line-height: 1.8;
}

.footer-links a:hover {
    color: #27AE60;
    padding-left: 4px;
}

/* LOCATION */
/* LOCATION ITEM */
.footer-location-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* ICON */
.footer-location-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* TEXT */
.footer-location-text {
    flex: 1;
    text-decoration: none;
    color: #555;
    transition: 0.3s ease;
}

.footer-location-text:hover {
    color: #27AE60;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {

    .footer-section {
        text-align: center;
        padding: 45px 0 20px;
    }

    /* ROW SPACING */
    .footer-section .row > div {
        margin-bottom: 10px;
    }

    /* LOGO */
    .footer-logo {
        margin: 0 auto 18px;
    }

    /* TEXT */
    .footer-text {
        max-width: 290px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* HEADINGS */
    .footer-heading {
        margin-bottom: 14px;
    }

    /* LINKS */
    .footer-links {
        display: inline-block;
        text-align: left;
    }

    .footer-links li {
        margin-bottom: 10px;
        text-align: center;
    }

    /* BOTTOM */
    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }

      .footer-location-item {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-location-text {
        text-align: left;
    }

}

/* ABOUT HERO */
.about-hero-section {
    /* background: linear-gradient(135deg, #F7FAFF, #EAF4FF); */
    /* padding: 90px 0; */

    background: linear-gradient(135deg, #0A3D62, #27AE60);
    padding: 110px 0;
    color: #fff;
}

.about-hero-heading {
    font-size: 40px;
    font-weight: 700;
    /* color: #0A3D62; */
    color: #fff;

}

.about-hero-text {
    /* color: #666; */
    color: #fff;

    margin-top: 10px;
}

/* ABOUT SECTION */
.about-section {
    background: #F7FAFF;
}

/* ABOUT CONTENT */
.about-heading {
    font-size: 28px;
    font-weight: 700;
    color: #0A3D62;
}

.about-text {
    color: #555;
    margin-top: 10px;
    line-height: 1.7;
}

.about-img {
    max-width: 90%;
}

/* 🔥 FIX: TRUST SECTION BACKGROUND CHANGE */
.about-trust-section {
    background: #F7FAFF; /* was white — now fixed */
}

/* MOBILE */
@media (max-width: 768px) {
    .about-hero-heading {
        font-size: 28px;
    }

    .about-heading {
        font-size: 22px;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
}

/* SERVICES HERO (DIFFERENT FROM ABOUT) */
.services-hero-section {
    background: linear-gradient(135deg, #0A3D62, #27AE60);
    padding: 110px 0;
    color: #fff;
}

.services-hero-heading {
    font-size: 42px;
    font-weight: 700;
}

.services-hero-text {
    margin-top: 12px;
    font-size: 16px;
    color: #eaeaea;
}

/* MOBILE */
@media (max-width: 768px) {
    .services-hero-heading {
        font-size: 28px;
    }

    .services-hero-text {
        font-size: 14px;
    }
}

/* CONTACT SECTION */
.contact-section {
    background: #F7FAFF;
}

.contact-heading {
    font-size: 30px;
    font-weight: 700;
    color: #0A3D62;
}

.contact-subtext {
    color: #666;
    margin-top: 10px;
}

.contact-phone-link {
    text-decoration: none;
    color: inherit;
}

.contact-phone-link:hover {
    color: #27AE60;
}

.contact-email-link {
    text-decoration: none;
    color: inherit;
}

.contact-email-link:hover {
    color: #27AE60;
}

/* CONTACT INFO */
.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #333;
}

.contact-item .icon {
    font-size: 18px;
    color: #27AE60;
}

/* FORM BOX */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* INPUTS */
.contact-form-box .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

.contact-form-box .form-control:focus {
    border-color: #27AE60;
    box-shadow: none;
}

/* ERROR */
.invalid-feedback {
    display: block;
    font-size: 13px;
}

/* MAP */
.map-section iframe {
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-heading {
        font-size: 24px;
        text-align: center;
    }

    .contact-subtext {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

.table tbody tr:hover {
    background-color: #f8f9fa;
    transition: 0.2s;
}

/* .sidebar {
    width: 240px;
    height: 100vh;
    position: fixed;
    background: #1e293b;
    color: #fff;
    padding: 20px;
}

.sidebar-link {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 14px;
}

.sidebar-link:hover {
    background: #334155;
    color: #fff;
}

.sidebar-link.active {
    background: #2563eb;
    color: #fff;
    font-weight: 500;
} */

/* blog page */
.blog-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-content p {
    line-height: 1.9;
    margin-bottom: 18px;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}