* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.text-red {
    color: #e5252a;
}



/* Container */
.country-dropdown {
    position: relative;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
}

/* Button */
.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 20px;
    background: #f4f4f4;
    border: 2px solid #000;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

/* Label */
.country-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Arrow */
.dropdown-icon {
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.country-menu {
    position: absolute;
    top: 110%;
    z-index: 9999 !important;
    left: 0;
    background: #ffffff;
    border-radius: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 200px;
    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* SHOW ON HOVER */
.country-dropdown:hover .country-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate arrow on hover */
.country-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Menu items */
.country-menu li {
    list-style: none;
}

/* Links */
.country-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #0f2b4d;
    transition: background 0.3s ease;
}

/* Hover background (Pink like screenshot) */
.country-menu li a:hover {
    background-color: #d98f8f; /* soft pink */
    color: #0f2b4d;
}

/* Flag style */
.country-menu img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
}




/* =========================
   HEADER BASE
========================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-style: dashed;
    border-width: 0px 0px 02px 0px;
    border-color: #c3c3c3;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */
.logo img {
    height: 40px;
    display: block;
}

/* =========================
   NAVIGATION DESKTOP
========================= */
.nav-menu {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding-left: 0 !important;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #001846;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s ease;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #cf2128;
}



/* =========================
   RIGHT SECTION (DESKTOP)
========================= */
/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Quote Button */
.quote-btn {
    background-color: #FFFFFF;
    font-family: "Montserrat", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    fill: var(--e-global-color-43f9732);
    color: var(--e-global-color-43f9732);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #C3C3C3;
    border-radius: 18px 18px 18px 18px;
    line-height: 1;
    padding: 12px 24px;
    text-align: center;
    transition: all .3s;
    text-decoration: none;
}

.quote-btn:hover {
    color: #b71c22;
}






/* =========================
   BUTTON STYLE (Dark Rounded)
========================= */

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #b71c22;
    padding: 10px 22px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hover button effect */
.dropdown-btn:hover {
    color: #ffffff !important;
    border: 2px solid #3b82f6;
    background: #2f2f2f;

}



/* Arrow icon */
.dropdown-icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.country-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* =========================
   DROPDOWN MENU CARD
========================= */

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);

    width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    margin: 0;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;

    z-index: 9999;
}

/* Show on hover */
.country-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* =========================
   MENU ITEMS
========================= */

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #0f1e40;
    transition: background 0.3s ease;
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #f4f6fb;
}

/* Flag image */
.dropdown-menu img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #cf2128;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 991px) {

    .header-container {
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        max-height: 1000px;
        padding: 10px 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu ul li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu ul li a {
        display: block;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .nav-menu ul li a.active {
        background: #cf2128;
        color: #ffffff;
    }

    .header-right {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-top: 10px;
    }
}

.top-header {
    padding: 10px;
    border-style: dashed;
    border-width: 0px 0px 02px 0px;
    border-color: #c3c3c3;
}

.top-header-contact {
    margin: 0 17px;
    display: flex;
}

.top-header-contact svg {

    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.top-header-contact p {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding-left: 5px;
    margin: 0;
}

.region-btn {
    border: none !important;
    border-radius: 20px;
    background: none;
    cursor: pointer;
    font-weight: bold;
    color: #cf2128;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 20px !important;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}




















/* ================= HERO BANNER ================= */

.hero-banner {
    position: relative;
    height: 100vh;
    padding-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../../assets/img/home-page/banner-bg.jfif") center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Strong cinematic overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 40%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
}

/* Heading */
.hero-content h1 {
    font-size: 3.3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
}

/* Red Highlight */
.hero-content .highlight {
    color: #CF2128;

}

/* Paragraph */
.hero-content p {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 500;
}

/* Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #0B143C;
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #CF2128;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-icon {
    background: #0B143C;
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.3s;
}

.hero-btn:hover .btn-icon {
    background: #ffffff;
    color: #CF2128;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* ================= MOBILE FIX ONLY ================= */
@media (max-width: 768px) {

    /* Fix height issue */
    .hero-banner {
        height: auto;
        min-height: 80vh;
        padding: 100px 20px 80px;
        background-attachment: scroll;
        /* fixed breaks on mobile */
    }

    /* Better content spacing */
    .hero-content {
        padding: 0 10px;
    }

    /* Heading resize */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    /* Remove forced line breaks effect */
    .hero-content h1 br {
        display: none;
    }

    /* Paragraph resize */
    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-content p br {
        display: none;
    }

    /* Button adjust */
    .hero-btn {
        padding: 14px 26px;
        font-size: 15px;
    }

    .btn-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
}


/* Extra small phones */
@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}



























/* ========================= */
/* ===== COUNTRY SECTION ==== */
/* ========================= */

.country-section {
    padding: 3rem 0;
    background: #f2f2f2;
}

.country-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================= */
/* ===== FLIP CARD ========= */
/* ========================= */

.flip-card {
    flex: 1 1 480px;
    max-width: 550px;
    height: 230px;
    perspective: 1200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* subtle lift */
.flip-card:hover {
    transform: translateY(-5px);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.4, .2, .2, 1);
    transform-style: preserve-3d;
}

/* FLIP STATE (controlled by JS) */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* ========================= */
/* ===== FRONT & BACK ====== */
/* ========================= */

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    color: #ffffff;
}

/* FRONT SIDE */
.flip-card-front {
    background: #2b335f;
}

/* BACK SIDE */
.flip-card-back {
    background: #CF2128;
    transform: rotateY(180deg);
}

/* ========================= */
/* ===== CONTENT STYLE ===== */
/* ========================= */

.flip-card-front img,
.flip-card-back img {
    width: 70px !important;
    margin-bottom: 15px;
}

.flip-card-front h3 {
    font-size: 24px;
    font-weight: 600;
}

.flip-card-back h3 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

.flip-card-back p {
    font-size: 14px;
    line-height: 1.6;
}

/* ========================= */
/* ===== RESPONSIVE ======== */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {

    .country-container {
        gap: 20px;
    }

    .flip-card {
        flex: 1 1 100%;
        max-width: 100%;
        height: 220px;
    }

    .flip-card-front h3 {
        font-size: 20px;
    }

    .flip-card-back h3 {
        font-size: 18px;
    }

    .flip-card-back p {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .country-section {
        padding: 40px 15px;
    }

    .flip-card {
        height: 200px;
    }

    .flip-card-front,
    .flip-card-back {
        padding: 20px 15px;
    }

    .flip-card-front h3 {
        font-size: 18px;
    }

    .flip-card-back h3 {
        font-size: 16px;
    }

    .flip-card-back p {
        font-size: 13px;
    }

    .flip-card-front img,
    .flip-card-back img {
        width: 40px;
        margin-bottom: 10px;
    }
}


















/* =========================
   SECTION BACKGROUND
========================= */
.how-steps-section {
    background: #1F2853;
    padding: 3rem;
    color: #fff;
}

/* wider container like screenshot */


/* =========================
   HEADER
========================= */
.steps-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.mini-badge {
    display: inline-block;
    background: #ffffff;
    border: dashed 1px #00000064;
    color: #1F2853;
    padding: 5px 13px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 25px;
}

.mini-badge span {
    color: #e5252a;
    margin-right: 6px;
}

.steps-header h2 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.steps-header h2 span {
    color: #ff2b2b;
}

/* =========================
   GRID
========================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
    padding: 0 220px;
}

/* =========================
   CARD (MATCH ELEMENTOR SIZE)
========================= */
.step-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: 0.3s ease;

    /* Important for equal size */
    min-height: 352px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hover */
.step-card:hover {
    transform: translateY(-6px);
}

/* =========================
   NUMBER BOX
========================= */
.step-number {
    position: absolute;
    top: 30px;
    left: 25px;
    border: 2px dashed #c5c5c5;
    padding: 8px 22px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* =========================
   IMAGE
========================= */
.step-card img {
    display: block;
    margin: 0 auto;
    width: 200px;
}

/* =========================
   TITLE
========================= */
.step-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1F2853;
    margin-bottom: 5px;
}

/* =========================
   TEXT
========================= */
.step-card p {
    font-size: 17px;
    font-weight: 500;
    color: #1F2853;
    line-height: 1.8;

}

.step-card p b {
    color: #1F2853;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-header h2 {
        font-size: 34px;
    }

    .step-card {
        padding: 45px;
    }
}

/* =========================
   MOBILE FIX ONLY
========================= */
@media (max-width: 768px) {

    /* Remove the big side padding */
    .steps-grid {
        grid-template-columns: 1fr;
        padding: 0 20px !important;
        gap: 20px;
    }

    /* Reduce section padding */
    .how-steps-section {
        padding: 3rem 1rem;
    }

    .steps-header {
        margin-bottom: 3rem;
    }

    /* Smaller heading */
    .steps-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    /* Remove fixed height */
    .step-card {
        min-height: auto;
        padding: 30px 20px;
    }

    /* Resize number box */
    .step-number {
        font-size: 14px;
        padding: 5px 14px;
        top: 20px;
        left: 20px;
    }

    /* Smaller image */
    .step-card img {
        width: 140px;
        margin-top: 50px;
    }

    /* Smaller title */
    .step-card h3 {
        font-size: 20px;
    }

    /* Smaller paragraph */
    .step-card p {
        font-size: 15px;
        line-height: 1.6;
    }
}


/* Extra small phones */
@media (max-width: 480px) {

    .steps-header h2 {
        font-size: 24px;
    }

    .step-card img {
        width: 120px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    .step-card p {
        font-size: 14px;
    }
}


























/* ===== COUNTER SECTION ===== */

.custom-counter-section {
    padding: 3rem 0;
    background: url("../../assets/img/home-page/counter-bg.png");
}

.counter-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.counter-box {
    flex: 1;
    min-width: 220px;
}

.counter-box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
}

.counter-number {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
}

/* Subtle hover effect */
.counter-box:hover .counter-number {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .counter-container {
        justify-content: center;
    }

    .counter-number {
        font-size: 40px;
    }
}































/* =========================
   WHY US SECTION
========================= */

.why-us-section {
    padding: 3rem 0;
    background: #f8f9fb;
}

/* =========================
   HEADER
========================= */

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-badge {
    padding: 03px 15px 03px 15px;
    border-style: dashed;
    border-width: 1px 1px 1px 1px;
    border-color: #A7A7A7;
    border-radius: 20px 20px 20px 20px;
    display: inline-block;
    background: #ffffff;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1f2853;
}

.why-badge span {
    color: #e5252a;
    margin-right: 6px;
}


.why-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    color: #1f2b5c;
}

.why-header h2 span {
    color: #cf2128;
}

.why-icon {
    margin-bottom: 15px;
}

/* =========================
   GRID LAYOUT
========================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

/* =========================
   CARD DESIGN
========================= */

.why-card {
    background: #ffffff;
    border: 1px solid #b2b3b5;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

/* Big background number */

.why-number {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 65px;
    font-weight: 800;
    color: #e9ecf4;
    z-index: 0;
    line-height: 1;
}

/* Content above number */

.why-card h3,
.why-card .why-short,
.why-card p {
    position: relative;
    z-index: 1;
}

.why-card h3 {
    margin-bottom: 11px;

    font-size: 20px;
    font-weight: 700;
    color: #1F2853;
}

.why-short {
    font-size: 15px;
    font-weight: 600;
    color: #cf2128;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    color: #656565;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .why-header h2 {
        font-size: 28px;
    }

    .why-card {
        padding: 1rem;
    }

    .why-number {
        font-size: 50px;
    }
}


































/* about SECTION */
.about-section {
    padding: 3rem 0;
    background: #ffffff;
}



.about-image {
    height: 100%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
}

.about-content {
    flex: 1;
}

.about-tag {
    padding: 03px 15px 03px 15px;
    border-style: dashed;
    border-width: 1px 1px 1px 1px;
    border-color: #A7A7A7;
    border-radius: 20px 20px 20px 20px;
    display: inline-block;
    background: #ffffff;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 25px;
}

.about-tag span {
    color: #e5252a;
    margin-right: 6px;
}



.about-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1F2853;
}

.about-content p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

/* GET QUOTE BUTTON (Like Header Style) */

.btn-quote {
    font-family: "Montserrat";
    width: 35%;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #252525;
    background: transparent;
    padding: 14px 40px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    fill: #000000;
}

.btn-quote:hover {
    background: #ffffff;
    color: #ff0000;
}

/* =========================
   MODAL OVERLAY
========================= */

.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Outer Dark Border Box */
.modal-wrapper {
    background: #2d3a5f;
    padding: 12px;
    border-radius: 12px;
    width: 95%;
    max-width: 850px;
    position: relative;
}

/* Inner White Box */
.modal-inner {
    background: #ffffff;
    border-radius: 10px;
    padding: 50px;
}

/* Close Button */
.close-modal {
    position: absolute;
    right: -35px;
    top: -35px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Logo */
.modal-logo {
    margin-bottom: 30px;
}

/* Form Layout (2 Column like image) */
.modal-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Form Fields */
.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #1F2853;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #e1e4ec;
    border-radius: 8px;
    background: #f5f6fa;
    font-size: 14px;
}

/* Submit Button */
.modal-submit {
    grid-column: span 2;
    margin-top: 10px;
    background: #e5252a;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.modal-submit:hover {
    background: #c41f24;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-form {
        grid-template-columns: 1fr;
    }

    .modal-submit {
        grid-column: span 1;
    }

    .modal-inner {
        padding: 30px;
    }
}

/* =========================
   ABOUT SECTION RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {

    .about-section {
        padding: 3rem 0;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .about-image img {
        height: auto;
        /* prevent stretching */
    }

    .about-content h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .about-tag {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .btn-quote {
        padding: 12px 28px;
        font-size: 16px;
    }
}



/* Mobile */
@media (max-width: 576px) {

    .about-section {
        padding: 3rem 0;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-tag {
        font-size: 14px;
        padding: 4px 12px;
    }

    .btn-quote {
        padding: 10px 22px;
        font-size: 15px;
    }
}


/* =========================
   MODAL RESPONSIVE FIX
========================= */

@media (max-width: 768px) {

    .modal-wrapper {
        padding: 8px;
        max-width: 95%;
    }

    .modal-inner {
        padding: 25px;
    }

    .close-modal {
        right: 10px;
        top: 10px;
        font-size: 22px;
        color: #2d3a5f;
    }

    .modal-form {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .modal-submit {
        grid-column: span 1;
    }
}





















/* =========================
   CONTACT SECTION
========================= */

/* =========================
   SECTION
=/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    padding: 3rem 0;
    background: #1F2853;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* =========================
   LEFT SIDE
========================= */
.contact-left {
    flex: 1;
    color: #ffffff;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    background: rgb(255, 255, 255);
    border: 1px dashed rgba(0, 0, 0, 0);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 14px;
    margin-bottom: 25px;
}

.contact-tag span {
    color: #CF2128;
}

.contact-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.info-box {
    margin-bottom: 20px;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* =========================
   FORM CARD
========================= */
.contact-right {
    flex: 1;
    background: #f5f5f5;
    padding: 50px 45px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1F2853;
}

.required {
    color: #CF2128;
}

/* Inputs */
.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #e9e9ec;
    font-size: 14px;
    color: #1F2853;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #CF2128;
    background: #fff;
}

.form-group textarea {
    resize: none;
}

.full {
    margin-top: 20px;
}

/* =========================
   CAPTCHA
========================= */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #bfbfbf, #9e9e9e);
    border-radius: 6px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 4px;
    color: #111;
    user-select: none;
}

.captcha-box span:nth-child(odd) {
    color: #222;
}

.captcha-box span:nth-child(even) {
    color: #000;
}

.refresh-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.captcha-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #e9e9ec;
    font-size: 14px;
}

/* =========================
   SUBMIT BUTTON
========================= */
.contact-submit {
    margin-top: 30px;
    width: 130px;
    padding: 14px;
    background: #CF2128;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit:hover {
    background: #b71c22;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

    .contact-container {
        gap: 50px;
    }

    .contact-left h2 {
        font-size: 32px;
    }

    .contact-right {
        padding: 40px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-left h2 {
        font-size: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-right {
        padding: 30px 20px;
        border-radius: 14px;
    }

    .contact-submit {
        width: 100%;
    }

    .captcha-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}
















/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    background: #ffffff;
    padding: 3rem 0;
    text-align: center;
}



/* Badge */
.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px dashed #000000;
    border-radius: 30px;
    font-size: 14px;
    color: #1f2b4d;
    background: #ffffff;
    margin-bottom: 25px;
}

.badge-icon {
    color: #cf2128;
    font-size: 12px;
}

/* Title */
.testimonial-title {
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.3;
}

.title-blue {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #1f2b4d;
}

.title-red {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #cf2128;
}

/* Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    /* Background Image */
    background-image: url("../../assets/img/contact/Ellipse-10.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 20px;
    border-radius: 20px;
    position: relative;
}

/* Card */
.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border: 1px dashed #cfcfcf;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s ease;
}

.testimonial-card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2b4d;
}

.testimonial-card span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .title-blue,
    .title-red {
        font-size: 30px;
    }
}

















































/* footer */
.xberra-footer {
    color: #cfd5f6;
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-container {
    background: #1f2a56;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
    padding: 2rem 0rem;

}

.footer-title {
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-head-logo {
    width: 360px;
    margin-bottom: 10px;
    padding: 10px;
}

.footer-logo {
    width: 140px;
}

.logo-text {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.footer-description {
    max-width: 400px;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
}

.countries-available {
    font-size: 15px;
    font-weight: 500;
    color: #AEAEAE;
    display: flex;
    align-items: center;
    gap: 10px;
}



@media (max-width: 768px) {

    .footer-head-logo {
        width: 250px;
        margin-bottom: 10px;
        padding: 10px;
    }
}























/* scroll to top */
/* =========================
   SCROLL TO TOP BUTTON
========================= */
.scroll-top-btn {
    position: fixed;
    bottom: 60px;
    right: 30px;
    background: #046bd2;
    /* Bootstrap blue */
    color: #fff;
    padding: 4px 6px;
    font-size: 16px;
    font-weight: 600;
    /* box shape */

    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.scroll-top-btn svg {
    fill: #fff;
}



.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #084298;
    /* darker blue */
    transform: translateY(-3px);
}


.hero-content .my-banner-title {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}











.sg-banner {
    position: relative;
    height: 100vh;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../../assets/img/Singapore-page/sg-bg.png") center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.text-quote {
    text-align: center;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #FFFFFF !important;
    margin-top: 1rem !important;
}



/* =========================
   WHY CHOOSE SECTION
========================= */

.why-choose-section {
    padding: 3rem 0;
    background: #ffffff;
}

/* Image */
.why-image img {
    border-radius: 18px;
    width: 100%;
}

/* Content */
.why-content h2 {
    font-size: 45px;
    font-weight: 700;
    color: #1F2853;
    margin-bottom: 20px;
    line-height: 1.3em;
}

.highlight {
    color: #e5252a;
}

.why-content p {
    padding: 0px 0px 0px 0px;
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
}

/* Feature Pills */
.why-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.why-features span {
    padding: 06px 15px 06px 15px;
    border-style: dashed;
    border-width: 1px 1px 1px 1px;
    border-color: #9B9B9B;
    border-radius: 20px 20px 20px 20px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    background: #fff;
    transition: 0.3s ease;
}

.why-features span:hover {
    background: #1f2a56;
    color: #fff;
}



/* Tablet */
@media (max-width: 992px) {
    .why-content h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .why-choose-section {
        padding: 50px 0;
    }

    .why-content {
        text-align: center;
    }

    .why-content h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .why-content p {
        font-size: 14px;
    }

    .why-features {
        justify-content: center;
    }
}








/* ===== SG Services Section ===== */

.sg-service {
    padding: 3rem 0;
    background: #1F2853;
}

/* Header */
.sg-header {
    text-align: center;
    margin-bottom: 2rem;
}



.sg-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.sg-header h2 span {
    color: #CF2128;
}

.sg-header p {
    font-size: 17px;
    color: hsl(0, 0%, 100%);
}

/* Grid */
.sg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Card */
.sg-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.sg-card:hover {
    transform: translateY(-8px);
}

.sg-card img {
    width: 100%;
    display: block;
    padding: 18px;
}

.sg-card-content {
    padding: 0 30px 30px 30px;
}

.sg-card-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2853;
}

.sg-card-content p {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
}

/* Button */
.sg-btn {
    background-color: #1f2853;
    font-size: 17px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 18px 18px 18px 18px;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.sg-btn:hover {
    background: #a9191f;
}

/* Responsive */
@media (max-width: 992px) {
    .sg-grid {
        grid-template-columns: 1fr;
    }

    .sg-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .sg-service {
        padding: 50px 15px;
    }

    .sg-card-content {
        padding: 20px;
    }

    .sg-header h2 {
        font-size: 26px;
    }
}

/* ===============================
   TABLET (≤ 992px)
================================= */
@media (max-width: 992px) {

    /* Banner */
    .sg-banner {
        padding-top: 6rem;
        height: auto;
        padding-bottom: 4rem;
        background-attachment: scroll;
        /* better mobile performance */
    }

    .text-quote {
        font-size: 14px !important;
    }

    /* Why Choose */
    .why-choose-section {
        padding: 60px 0;
    }

    .why-content h2 {
        font-size: 30px;
    }

    .why-content p {
        font-size: 15px;
    }

    /* Services */
    .sg-service {
        padding: 60px 0;
    }

    .sg-header h2 {
        font-size: 30px;
    }

    .sg-header p {
        font-size: 15px;
    }
}


/* ===============================
   MOBILE (≤ 576px)
================================= */
@media (max-width: 576px) {

    /* Banner */
    .sg-banner {
        padding-top: 6rem;
        padding-bottom: 3rem;
        height: 100vh;
    }

    .text-quote {
        font-size: 13px !important;
        padding: 0 15px;
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 45px 15px;
    }

    .why-content {
        text-align: center;
    }

    .why-content h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .why-content p {
        font-size: 14px;
        padding: 0 5px;
    }

    .why-features span {
        font-size: 13px;
        padding: 5px 12px;
    }

    /* Services Section */
    .sg-service {
        padding: 50px 15px;
    }

    .sg-header h2 {
        font-size: 24px;
    }

    .sg-header p {
        font-size: 14px;
        padding: 0 10px;
    }

    .sg-card-content {
        padding: 18px;
    }

    .sg-card-content h3 {
        font-size: 18px;
    }

    .sg-card-content p {
        font-size: 14px;
    }

    .sg-btn {
        font-size: 14px;
        padding: 8px 18px;
    }
}












































/* my */
.my-banner {
    padding: 10rem 0 4rem;
    background: url("../../assets/img/malaysia-page/my-banner.jpg") center/cover no-repeat;

}

.hero-content .my-banner-title {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
}

.my-banner-review-image img {
    width: 140px;

}

.my-banner-review {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.compliance-section {
    background: #fff;
}

.faq-maintitle {
    font-size: 40px;
    font-weight: 700;
    color: #1f2853;
}

.faq-maintitle span {
    color: #e11d2e;
}

.faq-desc {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: #1f2853;
}

.compliance-section .section-title {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #001846;
    margin-bottom: 10px;
}

.compliance-section .section-title.red {
    color: #e11d2e;
}

.compliance-section .compliance-box {
    padding: 20px;
    border-radius: 14px;
}

/* LEFT BOX */
.compliance-section .left-box {
    background: #ffffff;
    border: 2px dashed #1f2853;
}



/* RIGHT BOX */
.compliance-section .right-box {
    background: #1f2853;
    border: 2px dashed #cf2128;
    color: #ffffff;
}

.compliance-section .right-box li {
    color: #ffffff;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.compliance-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-section li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0 12px;
    line-height: 1.6;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: start;
}

.compliance-section .icon {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Cross Icon */
.compliance-section .cross {
    fill: #1f2a44;
    color: #ffffff;
}

/* Check Icon */
.compliance-section .check {

    fill: #e11d2e;
}

/* Responsive */
@media (max-width: 992px) {
    .compliance-section li {
        font-size: 16px !important;
    }
}




/* Grid */
.my-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.my-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.my-card:hover {
    transform: translateY(-8px);
}

.my-card img {
    width: 100%;
    display: block;
    padding: 18px;
}

.my-card-content {
    padding: 0 30px 30px 30px;
}

.my-card-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2853;
}

.my-card-content p {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
}

/* Button */
.my-btn {
    background-color: #1f2853;
    font-size: 17px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 18px 18px 18px 18px;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.my-btn:hover {
    background: #a9191f;
}



@media (max-width: 991px) {
    .hero-content .my-banner-title {
        font-size: 30px;
        font-weight: 700;
        color: #FFFFFF;
    }
    /* Grid */
.my-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}
}




.faq-section {
    background: #fff;
}

/* CTA BOX */
.faq-cta-box {
    background-color: #1f2853;
    color: #ffffff;
    padding: 25px 20px;
    border-radius: 20px;
}

.faq-cta-box p {
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    padding: 10px;
    line-height: 28.05px;
}

.faq-cta-box .contact-btn {
    background-color: #ffffff40;
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    fill: #ffffff;
    color: #ffffff;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 18px 18px 18px 18px;
    padding: 8px 30px 8px 30px;
    text-decoration: none;
}

.contact-btn:hover {
    background: #ffffff;
    color: #1f2a55;
}

/* ACCORDION CUSTOM */
.custom-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: #ffffff;
    box-shadow: none;
    font-size: 20px;
    font-weight: 600;
    background-color: #ffffff;
    color: #001846 !important;
    border-color: #c3c3c3;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 18px 18px 18px 18px !important;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 10px 10px 10px 10px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #1f2a55;
    box-shadow: none;
}

/* Remove default arrow */
.custom-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 26px;
    font-weight: bold;
    color: #c62828;
    transform: rotate(0deg);
}

/* Change to minus when open */
.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    transform: rotate(0deg);
    background-image: none;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none !important;
}

.custom-accordion .accordion-body {
    border-color: #E8E8E8;
    padding: 10px 10px 10px 10px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 0px 0px 0px 0px;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

.custom-accordion .accordion-body p {
    margin-bottom: 10px;
}


.error-message {
  color: #e63946;
  font-size: 14px;
  margin-top: 5px;
}

.error-input {
  border: 1px solid #e63946 !important;
}

.form-message {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
}

.success-message {
  color: #2a9d8f;
}






.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none ;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 999;
}

/* Hover for desktop */
@media (min-width: 992px) {
  .has-submenu:hover > .submenu {
    display: block;
  }
}

/* Nested submenu */
.has-submenu .has-submenu .submenu {
  top: -8px;
  left: 100%;
}

/* Submenu links */
.submenu li {
  list-style: none;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.submenu li a:hover {
  background: #f5f5f5;
  color: #cf2128;
}

/* Arrow transition */
.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ✅ Desktop hover */
@media (min-width: 992px) {
  .has-submenu:hover .submenu {
    display: block ;
  }
}

/* ✅ Mobile responsive */
@media (max-width: 991px) {
  .submenu {
    position: static !important;
    box-shadow: none;
    padding-left: 15px;
    width: 100% !important;
    box-shadow:none !important;
  }

  /* .has-submenu.active .submenu {
    display: block ;
  } */

  .submenu-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .arrow {
    float: none;
    margin-left: 5px;
  }
}

.submenu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


 /* Content Card */
    .content-card {
        background: white;
        border: 1px solid rgba(226, 232, 240, 0.6);
        border-radius: 24px;
        padding: 28px 24px;
        height: 100%;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: var(--card-shadow);
        position: relative;
    }

    .content-card:hover {
        box-shadow: var(--card-hover-shadow);
        border-color: rgba(220, 38, 38, 0.15);
        transform: translateY(-6px) scale(1.01);
    }

    .content-card h5 {
        font-size: clamp(1.1rem, 2vw, 1.25rem);
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1f2853;
    }

    .content-card p {
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
        line-height: 1.6;
        color: var(--muted);
    }


        /* Testimonial Avatar */
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1rem;
        color: white;
        flex-shrink: 0;
        background-color: var(--primary-red);
    }

            .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #1F2853;
            margin-bottom: 15px;
            line-height: 1.2;
        }