* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: "Red Hat Display", sans-serif !important; 
}

body {
    margin: 0 !important;
    font-family: "Red Hat Display", sans-serif !important; 
}


a{
    text-decoration: none;
}

ul{
    margin-left: 0;
    margin-bottom: 0;
}

/* ===================== HERO SECTION CSS START ===================== */

.hero-section {
    padding: 130px 0 100px ;
    background: url("../images/banner/bg.png") no-repeat center/cover;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    flex: 1;
}

.sub-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;

}

.growth-icon {
    width: 28px;
    height: auto;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-section .desc {
    font-size: 16px;
    color: #ffffff;
    line-height: 28px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-main {
    background: #ffffff;
    color: #001e64 !important;
    padding: 18px 60px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff !important;
    padding: 18px 60px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 550px;
}

.hero-pointers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #0d1b2a;
}

.hero-pointers span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-pointers i {
    color: #ffffff;
    font-size: 20px;
}

/* 
.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/banner/bg.png'); 
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 6%;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(1px);
}

.banner-content {
    position: relative;
    max-width: 550px;
    color: #fff;
    z-index: 10;
}

.banner-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 35px;
}

.banner-stats {
    font-size: 16px;
    opacity: 0.8;
}

.circles {
    font-size: 24px;
    margin-right: 8px;
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 60px 5%;
        background-position: center;
        text-align: center;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-title {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 32px;
    }
} */

/* ===================== HERO SECTION CSS END ===================== */

/* ===================== CLIENT MARQUEE CSS START ===================== */

.client-marquee {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #f6f6f6;
}

.marquee-track {
    display: flex;
    width: calc(250px * 10);
    animation: marquee 20s linear infinite;
}

.marquee-item {
    flex: 0 0 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: 0.3s;
}

.marquee-item:hover {
    opacity: 1;
}

.marquee-item img {
    max-width: 85px;
    height: auto;
    filter: grayscale(100%);
    transition: 0.4s;
}

.marquee-item img:hover {
    filter: grayscale(0%);
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================== CLIENT MARQUEE CSS END ===================== */

/* ===================== OFFER SECTION CSS START ===================== */

.offer-section {
    padding: 120px 0;
    background: #00246d;
    color: #fff;
    text-align: center;
}

.offer-header .tag {
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.offer-header h2 {
    font-size: 42px;
    font-weight: 800;
}

.offer-header .sub {
    max-width: 600px;
    margin: 10px auto 50px;
    opacity: 0.8;
}

.offer-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.offer-card {
    background: #003b95;
    width: 23%;
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: scale(1.08);
    background: #fff;
    color: #00246d;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.explore-btn {
    display: none;
    margin-top: 18px;
    padding: 10px 24px;
    border-radius: 10px;
    background: #00246d;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.offer-card:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
    display: inline-block;
}

.offer-card:hover h4,
.offer-card:hover p {
    color: #00246d;
}

/* ===================== OFFER SECTION CSS END ===================== */

/* ===================== START: Stats Section ===================== */

.stats-section {
    padding: 80px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #dce3eb;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid #dce3eb;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 48px;
    color: #003b95;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================== END: Stats Section ====================== */

/* ===================== SPECIALISMS SECTION CSS START ===================== */

.specialisms-section {
    text-align: center;
    padding: 100px 0;
}

.specialisms-header .tag {
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #d9d9d9;
    display: inline-block;
    margin-bottom: 12px;
}

.specialisms-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 60px;
}

.specialisms-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.bubble-card {
    background: #f6f7f8;
    padding: 8px 30px 8px 0;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: 0.3s;
    width: max-content;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.bubble-card:hover {
    transform: scale(1.07);
    background: #ffffff;
}

.bubble-card p {
    font-size: 18px;
    font-weight: 600;
    color: #0d1b2a;
    margin: 0;
    text-align: left;
}

.bubble-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes float1 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(12px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float1 4s ease-in-out infinite;
}
.float-anim2 {
    animation: float2 5s ease-in-out infinite;
}
.float-anim3 {
    animation: float3 6s ease-in-out infinite;
}

/* ===================== SPECIALISMS SECTION CSS END ===================== */

/* ===================== PRICING SECTION CSS START ===================== */

.pricing-section {
    padding: 120px 0;
    background: #00246d;
    color: #fff;
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    width: 340px;
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-7px);
}

.pricing-card.highlight {
    /* border: 2px solid #0A1C3D; */
    /* box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2); */
    /* transform: scale(1.1); */
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a1c3d;
}

.price {
    font-size: 45px;
    font-weight: 800;
    margin: 10px 0;
    color: #0a1c3d;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

.desc {
    color: #555;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.features li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #0a1c3d;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "✔";
    margin-right: 10px;
    color: #0a1c3d;
}

.buy-btn {
    width: 100%;
    padding: 18px 50px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #00246d;
    color: #00246d;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Red Hat Display", sans-serif !important; 
}

.buy-btn:hover {
    background: #00246d;
    color: #fff;
}

.buy-btn.dark {
    background: #00246d;
    color: #fff;
}

.buy-btn.dark:hover {
    opacity: 0.8;
}

/* ===================== PRICING SECTION CSS END ===================== */

.reveal {
    transition: all 0.3s ease-out; /* was 0.6s */
    opacity: 0;
    transform: translateY(30px);
}


.reveal_visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   START: Latest Updates Section
=============================================== */

.latest-updates-section {
    text-align: center;
    padding: 60px 20px;
}

.latest-updates-header .tag {
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #d9d9d9;
    display: inline-block;
    margin-bottom: 12px;
}

.latest-updates-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #eef2ff;
    color: #3c4bff;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f1a32;
    margin-bottom: 40px;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: auto;
}

.update-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.update-thumbnail {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 16px;
}

.update-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgb(0 0 0));
    color: white;
    text-align: left;
    border-radius: 0 0 16px 16px;
}

.meta {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    opacity: 0.9;
}

.meta-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.update-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
}

/* ============================================
   END: Latest Updates Section
=============================================== */

/* ===================== TESTIMONIAL SECTION - START ===================== */

.testimonial-section {
    width: 100%;
    padding: 80px 0;
    background: #f8f9fc;
    text-align: center;
}

.testimonial-header {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    margin-bottom: 40px;
    padding: 0 5%;
}

.testimonial-header .tag {
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #d9d9d9;
    display: inline-block;
    margin-bottom: 12px;
}

.testimonial-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 60px;
}

.see-all-btn {
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.see-all-btn:hover {
    background: #0d1b3e;
    color: #fff;
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    min-height: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
}

.company-name {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b3e;
}

.testimonial-text {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    text-align: left;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d4d4d4;
    opacity: 1;
    margin: 0 12px !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    width: 8px;
    height: 8px;
    background: transparent !important;
    border: 1px solid #003b95;
    box-sizing: border-box;
    margin: 0 12px !important;
    border-radius: 50%;
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #003b95;
}

/* ===================== TESTIMONIAL SECTION - END ===================== */

/* ============================
   CTA SECTION — START
   ============================ */

.cta-section {
    position: relative;
    width: 100%;
    height: 420px;
    background: url("../images/cta/cta.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 36 109 / 24%);
}

.cta-inner {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    color: #fff;
    z-index: 2;
}

.cta-heading {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subheading {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.cta-btn {
    padding: 14px 50px;
    background: #fff;
    color: #000 !important;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn img {
    width: 20px;
    height: 20px;
}

.whatsapp-btn {
    background: #fff;
}

.call-btn {
    background: #fff;
}

.cta-btn:hover {
    background: #eaeaea;
}

/* ============================
   CTA SECTION — END
   ============================ */

/* ============================================
   START — WHY CHOOSE US SECTION
   ============================================ */

.chooseus-section {
    background: #03215c;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.chooseus-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    width: 100%;
    max-width: 1300px;
    margin: 50px auto;
}

.chooseus-header .tag {
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.chooseus-header h2 {
    font-size: 42px;
    font-weight: 800;
}

.chooseus-item svg{
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.chooseus-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.chooseus-item p {
    font-size: 15px;
    opacity: 0.9;
    max-width: 300px;
    margin: auto;
    line-height: 1.6;
}

/* ============================================
   END — WHY CHOOSE US SECTION
   ============================================ */

/* ===================== CONTACT QUOTE SECTION CSS START ===================== */

.contact-quote-section {
    text-align: center;
    padding: 60px 0;
    font-family: "Poppins", sans-serif;
}

.contact-quote-header .tag {
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #d9d9d9;
    display: inline-block;
    margin-bottom: 12px;
}

.contact-quote-header h2 {
    font-size: 42px;
    font-weight: 800;
}

.quote-badge {
    display: inline-block;
    background: #eef2ff;
    padding: 6px 18px;
    border-radius: 25px;
    color: #3c4bff;
    font-size: 14px;
    margin-bottom: 12px;
}

.quote-heading {
    font-size: 42px;
    font-weight: 700;
    color: #0f1a32;
    margin-bottom: 40px;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.quote-form {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 14px;
    text-align: left;
}

.appointment-badge {
    background: #fff;
    padding: 6px 16px;
    border-radius: 18px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 0;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 18px;
    font-size: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

textarea {
    height: 130px;
}

.submit-btn {
    background: #062b63;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.contact-box {
    background: #03215c;
    color: #fff;
    padding: 45px;
    border-radius: 14px;
    text-align: left;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
}

.divider {
    display: block;
    width: 35px;
    height: 3px;
    background: #fff;
    margin: 12px 0 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #03215c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.item-label {
    font-size: 14px;
    opacity: 0.8;
}

.item-value {
    font-size: 16px;
    font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
    }
}
/* ===================== CONTACT QUOTE SECTION CSS END ===================== */

/* ===================== JURISDICTION SECTION CSS START ===================== */

/* .jurisdiction-section {
    width: 100%;
    padding: 60px 5%;
    background: #f8f9fc;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d1b37;
}

.jurisdiction-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.jurisdiction-card {
    width: 360px;
    height: 550px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    transition: 0.3s ease;
}

.jurisdiction-card:hover {
    transform: translateY(-8px);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: 0.4s ease;
    z-index: 1;
}

.jurisdiction-card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 35px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,1));
    color: white;
    text-align: left;
    z-index: 2;
    border-radius: 0 0 20px 20px;
}

.card-overlay h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.card-overlay p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 25px;
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px 14px 0;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.learn-btn i {
    font-size: 16px;
}

@media(max-width: 1024px) {
    .jurisdiction-card {
        width: 100%;
        max-width: 480px;
    }
} */

/* ===================== JURISDICTION SECTION CSS END ===================== */

/* ===================== LOCATION STATS CSS START ===================== */

.location-stats {
    padding: 60px 5%;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.location-stats .tag {
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid #d9d9d9;
    display: inline-block;
    margin-bottom: 12px;
}

.location-stats h2 {
    font-size: 42px;
    font-weight: 800;
}

.location-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0d1b37;
}

.location-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.location-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.location-card {
    background: #f6f7f8;
    padding: 25px 35px;
    border-radius: 14px;
    color: white;
    text-align: center;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
}

.location-card .icon-circle {
    width: 55px;
    height: 55px;
    background: transparent !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card .icon-circle i {
    font-size: 22px;
    color: #ffffff;
}

.location-card h4 {
    font-size: 18px;
    color: #003b95;
    font-weight: 600;
    margin: 0;
}

.loc-title {
    font-size: 28px;
    margin: 10px 0;
    font-weight: 700;
}

.loc-subtitle {
    font-size: 13px;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* ===================== LOCATION STATS CSS END ===================== */

/* =========================================
   START: MAIN FOOTER STYLES
========================================= */

.main-footer {
    background: #0e1b2b;
    color: #d0d6e0;
    padding: 60px 0;
    font-family: "Red Hat Display", sans-serif !important; 
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 60px;
}

.footer-col h3 {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #ffffff;
}

.payment-box img {
    width: 180px;
    margin-top: 15px;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-links a {
    margin-left: 20px;
    color: #d0d6e0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social span {
    margin-right: 10px;
    font-size: 14px;
}

.footer-social i {
    font-size: 20px;
    color: #d0d6e0;
    transition: 0.3s;
    cursor: pointer;
}

.footer-social i:hover {
    color: white;
}

/* =========================================
   END: MAIN FOOTER STYLES
========================================= */



/* ============================================
   START: CF7 Multi-Step Form Styling
   ============================================ */

.wpcf7 form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    max-width: 1000px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    margin:100px auto;
}

.wpcf7 form label {
    font-size: 18px;
    font-weight: 500;
    color: #0c2a7a;
    margin-bottom: 8px;
    display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f6f6;
    color: #333;
    appearance: none;
    resize: none; 
    box-sizing: border-box;
}

.wpcf7 select::-ms-expand {
    display: none;
}

.wpcf7 input[type="submit"] {
    background: #0044ff;
    color: white;
    padding: 14px 45px;
    font-size: 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin: 30px auto 0 auto;
    font-weight: 600;
}

.wpcf7 input[type="submit"]:hover {
    background: #0033cc;
}

.wpcf7-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.wpcf7-steps .step {
    text-align: center;
    flex: 1;
}

.wpcf7-steps .step .number {
    width: 40px;
    height: 40px;
    border: 2px solid #0044ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin: auto;
    color: #0044ff;
}

.wpcf7-steps .step.active .number {
    background: #0044ff;
    color: #fff;
}

.wpcf7-steps .step .label {
    margin-top: 8px;
    font-size: 14px;
    color: #002060;
    font-weight: 500;
}

.cf7-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 10px;
}

.cf7-progress::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #d3d3d3;
    z-index: 1;
}

.cf7-progress .step {
    text-align: center;
    width: 14%;
    position: relative;
    z-index: 2;
}

.cf7-progress .circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #0044ff;
    color: #0044ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    background: #fff;
    margin: 0 auto;
}

.cf7-progress .active .circle,
#cf7-progress .completed .circle,
#cf7-progress .active .circle {
    background: #0a2fb4;
    color: white;
}

.cf7-progress p {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #002060;
}

@media(max-width: 768px){
    .cf7-progress {
        flex-wrap: wrap;
        gap: 20px;
    }
    .cf7-progress .step {
        width: 30%;
    }
}

#cf7-progress {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

#cf7-progress .step {
    text-align: center;
}

#cf7-progress .circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #0a2fb4;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a2fb4;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s;
}

.cf7mls_next.action-button,
.cf7mls_back.action-button {
    background-color: #00246d;
    border: 0 none;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
    padding: 13px 5px;
    min-width: 100px;
    position: relative;
}

.cf7mls_next.action-button {
    margin: 25px 0px 26px;
}

.cf7mls_back.action-button {
    margin: 16px 0px 26px;
}

.wpcf7-form-control-wrap {
    position: relative;
    top: 17px;
}

.wpcf7 input[type="submit"] {
    background-color: #00246d;
}

/* ============================================
   END: CF7 Multi-Step Form Styling
   ============================================ */
