
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
section {
    padding-left: 0;
    padding-right: 0;
}
/* =============================== */
/* GLOBAL PRIMARY BUTTON */
/* =============================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0762ea;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;  /* ✅ FORCE SINGLE LINE */

}

/* ICON INSIDE BUTTON */
.btn-primary i {
    font-size: 16px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.btn-primary:hover {
    background: #0553c7; /* slightly darker */
    color: #fff;
    transform: translateY(-2px);
}

/* ICON SLIDE */
.btn-primary:hover i {
    transform: translateX(4px);
}

/* ACTIVE CLICK */
.btn-primary:active {
    transform: translateY(0);
}

/* ================================= */
/* MOBILE OPTIMIZATION */
/* ================================= */
@media (max-width: 576px) {

    .btn-primary {
        padding: 12px 18px;
        font-size: 14px;
    }

    .btn-primary i {
        font-size: 14px;
    }
}


.topbar {
    background: linear-gradient(90deg,#2563eb,#2563eb);
    color: #fff;
    font-size: 13px;
}

.topbar-container {
    max-width: 1100px;
    margin: auto;
    padding: 8px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right .divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.4);
    margin: 0 10px;
}
.navbar-wrap {
    padding: 20px 25px; /* âœ… outer breathing */
    background: #f5f7fb;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-wrap.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1100px; /* âœ… bigger than content */
    margin: auto;

    background: #fff;
    border-radius: 18px;
    padding: 16px 35px; /* âœ… key fix */

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* gradient line */
.nav-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#2563eb,#06b6d4);
    border-radius: 18px 18px 0 0;
}

/* logo */
.logo img {
    height: 76px;
}

/* menu */
.menu-box {
    position: absolute;
    left: 60%;
    transform: translateX(-50%);

    display: flex;
    gap: 22px;

    background: #f1f5f9;
    padding: 8px 18px;

    border-radius: 40px;
    border: 1px solid #e2e8f0;
}

.menu-box a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    text-decoration: none;
    color: #000;
    font-weight:600;
}

.menu-box a.active {
    background: #e6f0ff;
    padding: 5px 10px;
    border-radius: 20px;
    color: #2563eb;
}

/* right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: 20px;
}


/* CTA (less bulky) */
.cta-btn {
    padding: 9px 18px;
    border-radius: 25px;

    background: linear-gradient(90deg,#2563eb,#06b6d4);
    color: #fff;

    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

@media (max-width: 992px) {

    /* Topbar */
    .topbar-container {
        flex-direction: column;
        gap: 6px;
        padding: 8px 15px;
        text-align: center;
    }


   /* NAVBAR BASE */
.navbar-wrap {
    background: #fff5f7;
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* MENU DESKTOP */
.menu-box {
    display: flex;
    gap: 25px;
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* CTA */
.cta-btn {
    background: white;
    color: #2f5aa8;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}
}

/* DESKTOP */
@media (min-width: 992px) {

    .custom-toggler {
        display: none !important;
    }

    .nav-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .menu-box {
        display: flex;
        flex-direction: row;
        gap: 25px;
    }

    .nav-right {
        display: flex;
    }
}
/* MOBILE */
@media (max-width: 991px) {

    .custom-toggler {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        z-index: 9999;
    }

    .custom-toggler span {
        width: 22px;
        height: 2px;
        background: #1e05c2;
    }

    /* hide menu by default */
    .nav-collapse {
        display: none;
    }

    /* when opened */
    .nav-collapse.show {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
    }

    .menu-box {
        flex-direction: column;
        gap: 15px;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }
}
.nav-collapse.show {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* HERO BASE */
.hero {
    padding: 80px 0;
}



/* FLEX */
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
}

.hero-left h1 span {
    color: #2563eb;
}

.hero-left p {
    margin: 20px 0 30px;
    font-size: 16px;
    color: #555;
    max-width: 520px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* RIGHT */
.hero-right {
    flex: 1;
    position: relative;
}

/* ✅ IMAGE FIX */
.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* TRUST BOX */
.trust-box {
    position: absolute;
    bottom: 20px;
    right: -20px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    font-size: 14px;
}

/* MOBILE FIX */
@media (max-width: 992px) {

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
    }

    .hero-right img {
        width: 100%;
        height: auto;
    }

    /* ✅ FIX TRUST BOX POSITION */
    .trust-box {
        position: static;
        margin-top: 15px;
        justify-content: center;
    }
}

/* SMALL MOBILE */
@media (max-width: 576px) {

    .hero {
        padding: 50px 0;
    }

    .hero-left h1 {
        font-size: 26px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
}
/* =============================
   TRUST STRIP - BASE
============================= */
.trust-strip {
    padding: 30px 0;
}

/* DESKTOP (default) */
.trust-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: nowrap;        /* ✅ keep single line on desktop */
    gap: 10px;

    background: #fff;
    padding: 18px 20px;
    border-radius: 16px;
}

/* ITEM */
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;

    font-weight: 600;
    font-size: 14px;

    white-space: nowrap;      /* ✅ prevent breaking */
}

/* ICON */
.trust-item i {
    font-size: 16px;
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 16px;
    background: #ddd;
    margin: 0 6px;
}

@media (max-width: 992px) {

    .trust-strip .container {
        flex-wrap: wrap;       /* ✅ allow wrap */
        justify-content: center;
        gap: 12px 16px;        /* ✅ row-gap + column-gap */
        text-align: center;
    }

    .trust-item {
        font-size: 13.5px;
    }

    .divider {
        display: none;         /* ✅ REMOVE divider to avoid broken look */
    }

}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 80px 0;
    background: #f9fbfd;
}



/* ===== TITLE ===== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 50px;
}

/* ===== STATS GRID ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ===== CARD ===== */
.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    position: relative;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #e8f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap i {
    font-size: 24px;
    color: #007bff;
}

/* TEXT */
.stat-card h3 {
    font-size: 26px;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-card p {
    font-size: 14px;
    color: #555;
}



/* ========================================= */
/* ✅ TABLET (768px) */
/* ========================================= */
@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* ========================================= */
/* ✅ MOBILE (PERFECT FIX) */
/* ========================================= */
@media (max-width: 576px) {

    .portfolio {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-sub {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    /* ✅ SINGLE COLUMN (clean mobile layout) */
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .icon-wrap {
        width: 50px;
        height: 50px;
    }

    .icon-wrap i {
        font-size: 20px;
    }

    .stat-card h3 {
        font-size: 22px;
    }

    .stat-card p {
        font-size: 13px;
    }
}
.practice-area-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.section-title,
.section-subtitle {
    text-align: center !important;
    padding-bottom:25px;
}

.practice-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    height: 100%;
}

/* HOVER EFFECT */
.practice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}
.practice-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 600;
}

/* FORCE COLOR (IMPORTANT: use !important) */
.bg-blue {
    background: rgba(37, 99, 235, 0.12) !important;
    color: #2563eb !important;
}

.bg-green {
    background: rgba(22, 163, 74, 0.12) !important;
    color: #16a34a !important;
}

.bg-purple {
    background: rgba(124, 58, 237, 0.12) !important;
    color: #7c3aed !important;
}

.bg-orange {
    background: rgba(234, 88, 12, 0.12) !important;
    color: #ea580c !important;
}

.bg-teal {
    background: rgba(13, 148, 136, 0.12) !important;
    color: #0d9488 !important;
}

.bg-pink {
    background: rgba(219, 39, 119, 0.12) !important;
    color: #db2777 !important;
}

.bg-indigo {
    background: rgba(79, 70, 229, 0.12) !important;
    color: #4f46e5 !important;
}

.bg-lightblue {
    background: rgba(2, 132, 199, 0.12) !important;
    color: #0284c7 !important;
}
/* TEXT */
.practice-card h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.practice-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* CTA BUTTON (FIXED CENTER) */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 30px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .practice-card {
        text-align: center;
    }

    .practice-card .icon {
        margin: 0 auto 15px;
    }
}

/* ================= HERO ================= */
.faqs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef3f9, #eef3f9);
}

.faqs-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.faqs-left {
    max-width: 550px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf2ff;
    color: #0762ea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.faqs-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
    color: #0b1c39;
}

.faqs-left h2 span {
    color: #2f6fec;
}

.faqs-left p {
    color: #5f6b7a;
    margin-bottom: 25px;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1c75ff, #0a58ff);
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
}

/* RIGHT IMAGE */
.faqs-right img {
    max-width: 380px;
}


/* ================= FAQ LIST ================= */
.faq-list-section {
    padding: 60px 0;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* QUESTION ROW */
.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* LEFT */
.faq-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f6fec;
    font-size: 20px;
}

.faq-left h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* RIGHT ICON */
.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dbe3f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ANSWER */
.faq-a {
    margin-top: 15px;
    color: #5f6b7a;
    display: none;
    padding-left: 64px;
}

/* ACTIVE */
.faq-item.active .faq-a {
    display: block;
}


/* ================= MOBILE ================= */
@media (max-width: 992px) {

    .faqs-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .faq-left {
        align-items: flex-start;
        text-align: left;
    }

    .faq-a {
        padding-left: 0;
    }
}
/* FOOTER LINK */
.practice-footer {
    text-align: right;
    margin-top: 20px;
}

.practice-footer a {
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.practice-footer a:hover {
    color: #0B3A82;
}

/* âœ… RESPONSIVE */
@media (max-width: 992px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .practice-card:nth-child(4n) {
        border-right: 1px solid #e2e8f0;
    }

    .practice-card:nth-child(2n) {
        border-right: none;
    }

    .practice-card:nth-last-child(-n+4) {
        border-bottom: 1px solid #e2e8f0;
    }

    .practice-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .practice-grid {
        grid-template-columns: 1fr;
    }

    .practice-card {
        border-right: none;
    }

    .practice-card:not(:last-child) {
        border-bottom: 1px solid #e2e8f0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .practice-footer {
        text-align: center;
    }
}
.why-section {
    padding: 80px 0;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 16px;
}

/* RIGHT CONTENT */
.why-content {
    max-width: 520px;
}

/* ICON */
.why-icon {
    width: 45px;
    height: 45px;

    background: #e6f0ff;
    color: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    margin-bottom: 15px;
}

/* TITLE */
.why-content h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #1e293b;
    margin-bottom: 10px;
}

.why-content h2 span {
    color: #2563eb;
}

.line {
    width: 50px;              /* ✅ increase width */
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
    margin: 12px auto 20px;

}

/* TEXT */
.why-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* FEATURES */
.why-features {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;

    background: #fff;
    padding: 10px 14px;

    border-radius: 12px;
    font-size: 13px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    transition: all 0.3s ease; /* âœ… smooth animation */
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-4px); /* lift up */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* deeper shadow */
    border: 1px solid #e0e7ff;
}

/* ICON HOVER */
.feature i {
    color: #2563eb;
    transition: 0.3s;
}

.feature:hover i {
    transform: scale(1.1); /* slight zoom */
    color: #1d4ed8;
}
/* ✅ TABLET & MOBILE */
@media (max-width: 992px) {

    .why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* IMAGE */
    .why-image {
        display: flex;
        justify-content: center;
    }

    .why-image img {
        width: 100%;
        max-width: 420px;
        height: auto;
        border-radius: 12px;
    }

    /* CONTENT */
    .why-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
        flex-direction:column;
        display:flex;
        padding: 0 10px;
    }

    .why-content h2 {
        font-size: 26px;
        line-height: 1.3;
        max-width: 320px;
        margin: auto;
    }

    /* LINE CENTER */
    .line {
        width: 50px;
        height: 3px;
        background: #2563eb;
        border-radius: 2px;
        display: block;       /* ✅ important */
        margin: 12px auto 20px auto; /* ✅ THIS centers it perfectly */
    }

    /* TEXT */
    .why-content p {
        font-size: 14px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
        .why-icon {
          margin: 0 auto 15px;   /* ✅ center properly */
        }

    /* FEATURES */
    .why-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature {
        width: 100%;
        justify-content: center;
    }
}

/* ✅ SMALL MOBILE (PERFECT FIT) */
@media (max-width: 576px) {

    .why-section {
        padding: 50px 0;
    }

    .why-image img {
        max-width: 280px;
    }

    .why-content h2 {
        font-size: 22px;
    }

    .feature {
        font-size: 12px;
        padding: 8px 12px;
    }
}



.testimonial-section {
    padding: 70px 0;
    background: linear-gradient(to bottom,#eef2f7,#f8fafc);
}

/* HEADER */
.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #e6f0ff;
    color: #2563eb;

    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.testimonial-header h2 {
    font-size: 36px;
    margin: 14px 0 10px;
    color: #1e293b;
}

.testimonial-header p {
    color: #64748b;
    max-width: 600px;
    margin: auto;
    font-size: 15px;
}

/* GRID */
.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px; /* âœ… tighter */
}

/* CARD */
.testimonial-card {
    background: #fff;
    border-radius: 16px;

    padding: 20px 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* LEFT BLUE BORDER */
.testimonial-card.highlight {
    border-left: 3px solid #2563eb;
}

/* TOP */
.testimonial-card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card .top i {
    font-size: 18px;
    color: #2563eb;
}

/* STARS */
.stars i {
    font-size: 14px;
    color: #f59e0b;
}

/* TEXT */
.testimonial-card .quote {
    font-size: 15px;
    margin: 14px 0 18px;
    color: #1e293b;
    line-height: 1.5;
}

/* USER */
.testimonial-card .user {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #eef2f7;
    padding-top: 15px;
}

/* AVATAR */
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e6f0ff;
    color: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
    font-size: 13px;
}

/* LOCATION */
.user span {
    display: block;
    font-size: 13px;
    color: #64748b;
}

.user span i {
    font-size: 12px;
}


/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    color: #fff;
    padding: 60px 40px 30px;
    border-radius: 1px;
    background-color: #082c64;
}

/* CONTAINER */
.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-box {
    background: linear-gradient(135deg, #1E88E5, #00C2FF);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* TEXT */
.footer-text {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* MINI CARD */
.footer-card {
    background: #1e88e52b;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(214, 206, 206, 0.901);
}

.mini-card {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.mini-card i {
    font-size: 18px;
    color: #d8ebf0;
}

.mini-card p {
    font-size: 12px;
    color: #C7D4F5;
}

/* COLUMN */
.footer-col h4 {
    margin-bottom: 18px;
    font-size: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* LIST */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #C7D4F5;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.footer-col ul li:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-col ul li a{
    text-decoration: none;
    color:#fff;
}

.footer-col ul li i {
    margin-right: 10px;
}

/* BOTTOM */
.footer-bottom {
    
 margin-top: 40px;
    padding: 20px 80px;   /* ✅ move padding here (same as top section) */
    border-top: 1px solid rgba(255,255,255,0.1);

    display: flex;
    justify-content: space-between;
    align-items: center;

}

/* LEFT BOTTOM */
.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
}

.shield {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-left span {
    font-size: 13px;
    color: #C7D4F5;
}

/* SOCIAL */
.footer-social {
    display: flex;
    align-items: center;   /* ✅ ensure vertical alignment */
}

/* SOCIAL */
.footer-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    margin-left: 10px;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #1E88E5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
/* SERVICES HERO */
.services-hero {
    background-color: #0d6efd;
    padding: 100px 20px;
}

/* CONTAINER ALIGNMENT */
.services-hero-container {
    max-width: 1100px;
}

/* HEADING */
.services-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}

/* TEXT */
.services-hero p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {

    .services-hero {
        padding: 60px 20px;
        text-align: center;
    }

    .services-hero h1 {
        font-size: 32px;
    }
}

/* SECTION BACKGROUND */
.cpa-section {
    background: #e6f0ff;
    padding: 100px 0;
}

/* CONTAINER */
.cpa-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT SIDE */
.cpa-content {
    max-width: 460px;
}

/* SMALL LABEL */
.cpa-label {
    font-size: 13px;
    letter-spacing: 3px;
    color: #3b5cff;
    margin-bottom: 20px;
}

/* HEADING */
.cpa-content h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #0b132a;
    margin-bottom: 25px;
}

/* BLUE DOT */
.cpa-content .dot {
    color: #3b5cff;
}

/* DESCRIPTION */
.cpa-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #5f6b85;
    text-align: justify;
}

/* RIGHT CARD */
.cpa-cta {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    max-width: 520px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

/* CTA TITLE */
.cpa-cta h3 {
    font-size: 28px;
    line-height: 1.3;
    color: #0b132a;
    margin-bottom: 15px;
}

/* SMALL LINE UNDER TITLE */
.cpa-cta .line {
    display: block;
    width: 40px;
    height: 3px;
    background: #8ea2ff;
    margin: 10px 0 20px;
}

/* CTA TEXT */
.cpa-cta p {
    color: #6b7280;
    margin-bottom: 30px;
}

/* BUTTON */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2f4bff, #0c1fb8);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.btn-gradient i {
    font-size: 18px;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 75, 255, 0.3);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 991px) {
    .cpa-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cpa-cta {
        width: 100%;
    }

    .cpa-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .cpa-section {
        padding: 60px 0;
    }

    .cpa-content h2 {
        font-size: 32px;
    }

    .cpa-cta {
        padding: 30px;
        border-radius: 16px;
    }
}

/* =============================== */
/* HERO SECTION */
/* =============================== */

.industries-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3b82, #123a7a);
}

/* ✅ USE WRAPPER (not container) */
.industries-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===================== */
/* TEXT */
/* ===================== */
.industries-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.industries-hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5f5;
    max-width: 520px;
}

/* ===================== */
/* IMAGE */
/* ===================== */
.industries-hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ===================== */
/* ✅ TABLET */
/* ===================== */
@media (max-width: 992px) {

    .industries-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .industries-hero-content p {
        margin: 0 auto;
    }

    .industries-hero-image {
        text-align: center;
    }

    .industries-hero-content h1 {
        font-size: 32px;
    }
}

/* ===================== */
/* ✅ MOBILE */
/* ===================== */
@media (max-width: 576px) {

    .industries-hero {
        padding: 60px 0;
    }

    .industries-hero-content h1 {
        font-size: 26px;
    }

    .industries-hero-content p {
        font-size: 14px;
    }
}


/* ===== SECTION ===== */
.industries-ref {
    padding: 80px 0;
    background: #ffffff;
}


/* ===== LAYOUT ===== */
.industries-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.industries-ref__tag {
    font-size: 12px;
    font-weight: 600;
    color: #007bff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.industries-ref__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.industries-ref__title span {
    display: block;
    color: #007bff;
}

.industries-ref__desc {
    font-size: 16px;
    color: #6c757d;
    margin: 20px 0 30px;
}

/* BUTTON */
.industries-ref__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007bff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.industries-ref__btn i {
    transition: 0.3s;
}

.industries-ref__btn:hover i {
    transform: translateX(4px);
}

/* FEATURES */
.industries-ref__features {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

.industries-ref__feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.industries-ref__feature-icon {
    width: 34px;
    height: 34px;
    background: #eaf2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-ref__feature-icon i {
    font-size: 16px;
    color: #007bff;
}

.industries-ref__feature-text {
    font-size: 14px;
    font-weight: 500;
}

/* ========================= */
/* RIGHT GRID */
/* ========================= */

.industries-ref__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD */
.industries-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

.industries-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.industries-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-card__icon i {
    font-size: 22px;
    color: #fff;
}

/* TITLE */
.industries-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.industries-card p {
    font-size: 13px;
    color: #6c757d;
}

/* ARROW */
.industries-card__arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    font-size: 16px;
    color: #333;
}

/* ========================= */
/* COLOR VARIANTS */
/* ========================= */

.industries-card--blue .industries-card__icon { background: #007bff; }
.industries-card--green .industries-card__icon { background: #28a745; }
.industries-card--purple .industries-card__icon { background: #6f42c1; }
.industries-card--orange .industries-card__icon { background: #fd7e14; }
.industries-card--pink .industries-card__icon { background: #e83e8c; }
.industries-card--cyan .industries-card__icon { background: #17a2b8; }

/* ======================================== */
/* ✅ TABLET */
/* ======================================== */
@media (max-width: 992px) {

    .industries-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industries-ref__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-ref__title {
        font-size: 30px;
    }
}

/* ======================================== */
/* ✅ MOBILE (FIXED PERFECT) */
/* ======================================== */
@media (max-width: 576px) {

    .industries-ref {
        padding: 50px 0;
    }

    .industries-ref__title {
        font-size: 24px;
    }

    .industries-ref__desc {
        font-size: 14px;
    }

    /* ✅ STACK EVERYTHING CLEAN */
    .industries-ref__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industries-card {
        padding: 18px;
    }

    .industries-card h4 {
        font-size: 15px;
    }

    .industries-card p {
        font-size: 12px;
    }

    .industries-card__arrow {
        right: 14px;
        bottom: 14px;
    }

    /* FEATURES STACK BETTER */
    .industries-ref__features {
        gap: 10px;
    }
}

/* ============================= */
/* INDUSTRY FINAL CTA */
/* ============================= */

.industry-final-cta {
    background: #eef2f6; /* match other sections */
    padding: 100px 20px;
    text-align: center;
}

.cta-center {
    max-width: 650px;
    margin: auto;
}

/* Heading */
.industry-final-cta h2 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Text */
.industry-final-cta p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 35px;
}

/* Buttons wrapper */
.industry-final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}



/* OUTLINE BUTTON âœ… FIXED COLOR */
.industry-final-cta .btn-outline {
    border: 1px solid #cbd5e1;
    color: #0f172a; /* âœ… fixed (was white = invisible) */
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    background: #fff;
    transition: 0.3s;
}


/* âœ… Improved hover */
.industry-final-cta .btn-outline:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* Responsive */
@media (max-width: 600px) {
    .industry-final-cta h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}
/* ===================== */
/* INSIGHTS HERO */
/* ===================== */

.insights-hero {
    padding: 90px 0 40px;
    text-align: center;
    background: #f8fbff;
}

/* ===================== */
/* BADGE */
/* ===================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #eaf2ff;
    color: #2563eb;

    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;

    margin-bottom: 15px;
}

/* ===================== */
/* TITLE */
/* ===================== */
.insights-hero h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.insights-hero h1 span {
    color: #2563eb;
}

/* ===================== */
/* LINE (YOUR ISSUE FIXED) */
/* ===================== */
.hero-line {
    width: 70px;
    height: 3px;
    background: #2563eb;

    margin: 12px auto 20px;   /* ✅ ALWAYS CENTER */
    border-radius: 50px;
    display: block;
}

/* ===================== */
/* TEXT */
/* ===================== */
.insights-hero p {
    max-width: 650px;
    margin: 0 auto 25px;

    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===================== */
/* BUTTON */
/* ===================== */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #2563eb;
    color: #fff;

    padding: 12px 22px;
    border-radius: 8px;

    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.hero-btn i {
    transition: 0.3s;
}

.hero-btn:hover i {
    transform: translateX(4px);
}

/* ===================== */
/* FEATURE BAR */
/* ===================== */
.hero-features {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding:40px;
}

.hero-features .feature {
    display: flex;
    align-items: center;   /* ✅ THIS FIXES ALIGNMENT */
    gap: 12px;

    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.hero-features .icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0; /* ✅ prevents distortion */
}
.hero-features .icon.blue {
    background: #2563eb !important;
}

.hero-features .icon.green {
    background: #22c55e !important;
}

.hero-features .icon.purple {
    background: #7c3aed !important;
}

.hero-features .icon.orange {
    background: #f97316 !important;
}
.hero-features .icon i {
    color: #fff;
    font-size: 18px;
}


/* TEXT */
.hero-features strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.hero-features p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* ===================== */
/* ✅ TABLET */
/* ===================== */
@media (max-width: 992px) {

    .insights-hero h1 {
        font-size: 32px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================== */
/* ✅ MOBILE */
/* ===================== */
@media (max-width: 576px) {

    .insights-hero {
        padding: 60px 0 30px;
    }

    .insights-hero h1 {
        font-size: 24px;
    }

    .insights-hero p {
        font-size: 14px;
        padding: 0 10px;
    }

    /* ✅ FIX feature stacking */
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-features .feature {
        padding: 15px;
    }

    /* ✅ KEEP LINE CENTERED */
    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }
}

/* SECTION */
.insights-content {
    padding: 80px 0;
    background: linear-gradient(to bottom,#eef2f7,#f8fafc);
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #1e293b;
}

.section-header p {
    color: #64748b;
    font-size: 14px;
}

/* ===================== */
/* PILLARS */
/* ===================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.pillar-item {
    background: #fff;
    border-radius: 14px;

    padding: 14px 16px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    transition: 0.3s;
}

.pillar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* LEFT */
.pillar-item .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-item span {
    font-size: 14px;
}

/* ICON */
.icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon.blue {background:#e6f0ff;color:#2563eb;}
.icon.green {background:#ecfdf5;color:#16a34a;}
.icon.purple {background:#f3e8ff;color:#9333ea;}
.icon.orange {background:#fff7ed;color:#ea580c;}
.icon.indigo {background:#eef2ff;color:#4f46e5;}
.icon.pink {background:#fce7f3;color:#db2777;}

/* ===================== */
/* ARTICLES */
/* ===================== */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.article-card {
    display: flex;
    gap: 16px;

    background: #fff;
    padding: 16px;
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: 0.3s;
}

.article-card:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.article-card img {
    width: 140px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* CONTENT */
.article-card .meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 8px;
}

.badge {
    background:#2563eb;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
}

.badge.green {
    background: #ecfdf5;
}

.time {
    color: #64748b;
}

/* TEXT */
.article-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.article-card p {
    font-size: 13px;
    color: #64748b;
}

/* READ LINK */
.read-link {
    font-size: 13px;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

/* MOBILE */
@media(max-width:992px){
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* ABOUT HERO */
/* ============================= */

.about-hero {
    position: relative;

    /* Background Image */

    padding: 120px 20px;
    background: #0d6efd;

    display: flex;
    align-items: center;

}

/* Content */
.about-hero-content {
    position: relative; /* keep above overlay */
    max-width: 700px;
}

/* Heading */
.about-hero h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 20px;
}

/* Text */
.about-hero p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {

    .about-hero {
        padding: 80px 20px;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero-content {
        margin: auto;
    }
}
.about-story-section {
    padding: 80px 0;
    background: linear-gradient(to bottom,#eef2f7,#f8fafc);
}
.about-story-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;

    background: #fff;
    padding: 25px;
    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.about-story-image {
    position: relative;
}
.about-story-image img {
    width: 100%;
    border-radius: 14px;
}
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: #2563eb;
    color: #fff;

    padding: 10px 14px;
    border-radius: 12px;

    display: flex;
    gap: 10px;
    align-items: center;

    font-size: 13px;
}
.experience-badge i {
    font-size: 18px;
}
.about-story-content h2 {
    font-size: 28px;
    margin: 10px 0;

}
.about-story-content .section-badge {
    display: inline-flex;
    gap: 6px;
    background: #e6f0ff;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.section-badge i {
    color: #2563eb;
}
.line {
    width: 50px;
    height: 4px;
    background: #2563eb;
    margin: 20px 0;
    border-radius: 10px;
}
/* LIST */
.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.list-item {
    display: flex;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.list-item i {
    color: #2563eb;
}

/* ===================== */
/* MISSION */
/* ===================== */
.about-mission-values {
    padding: 70px 0;
    background: #f5f7fb;
}

.mission-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    margin-bottom: 35px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: #e6f0ff;
    color: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
}

.mission-content h2 {
    font-size: 20px;
}

.mission-content p {
    font-size: 14px;
    color: #03070b;
}

/* ===================== */
/* VALUES */
/* ===================== */
.values-section {
    text-align: center;
}

.values-title {
    font-size: 24px;
    margin-bottom: 25px;
}

.values-row {
    display: flex;
    align-items: stretch;

    background: #fff;
    padding: 20px;
    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

/* ITEM */
.value-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.value-item .icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* COLORS */
.icon.blue {background:#e6f0ff;color:#2563eb;}
.icon.green {background:#ecfdf5;color:#16a34a;}
.icon.purple {background:#f3e8ff;color:#9333ea;}
.icon.orange {background:#fff7ed;color:#ea580c;}

/* TEXT */
.value-item strong {
    font-size: 15px;
}

.value-item p {
    font-size: 14px;
    color: #000;
}

/* DIVIDER */
.values-row .divider {
    width: 1px;
    background: #e2e8f0;
    margin: 0 15px;
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 992px) {

    .about-story-card {
        grid-template-columns: 1fr;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .values-row {
        flex-direction: column;
        gap: 20px;
    }

    .divider {
        display: none;
    }
}

.about-story-section {
    padding: 80px 0;
    background: linear-gradient(to bottom,#eef2f7,#f8fafc);
}

.about-story-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;

    background: #fff;
    padding: 25px;
    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

/* IMAGE */
.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    border-radius: 14px;
}

/* FLOAT BADGE */
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;

    background: #2563eb;
    color: #fff;

    padding: 10px 14px;
    border-radius: 12px;

    display: flex;
    gap: 10px;
    align-items: center;

    font-size: 13px;
}

.experience-badge span {
    display: block;
    font-size: 12px;
}

/* CONTENT */
.section-badge {
    display: inline-flex;
    gap: 6px;
    background: #e6f0ff;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.about-story-content h2 {
    font-size: 28px;
    margin: 15px 0;
}

.about-story-content h2 span {
    color: #2563eb;
}

.line {
    width: 50px;
    height: 3px;
    background: #2563eb;
    margin: 15px 0 25px;
    border-radius: 10px;
}
/* ============================= */
/* CONTACT HERO */
/* ============================= */

.contact-hero {
    background: #0f64e4;
    padding: 100px 20px;
}

/* Container width */
.contact-hero .container {
    max-width: 1100px;
}

/* Heading */
.contact-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}

/* Text */
.contact-hero p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {

    .contact-hero {
        padding: 60px 20px;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}
/* ============================= */
/* CONTACT SECTION */
/* ============================= */

.contact-section {
    background: #eef2f6;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ================= LEFT ================= */

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* IMAGE CARD */
.contact-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* DARK GRADIENT OVERLAY */
.contact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}

.image-overlay span {
    font-size: 11px;
    letter-spacing: 2px;
}

.image-overlay h3 {
    margin-top: 5px;
    font-size: 20px;
}

/* INFO CARDS */
.contact-box {
    display: flex;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 18px;
    border-radius: 12px;
    transition: 0.2s;
}

.contact-box:hover {
    background: #f1f5f9;
}

.contact-box i {
    font-size: 16px;
    color: #2563eb;
    margin-top: 2px;
}

.contact-box span {
    font-size: 11px;
    letter-spacing: 1px;
    color: #3b82f6;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.contact-box p {
    font-size: 16px;
    color: #475569;
    line-height: 1.5;
}

/* ================= RIGHT FORM ================= */

.contact-form {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 16px;
}

/* LABELS */
.contact-form label {
    font-size: 12px;
    color: #0f172a;
    margin-bottom: 5px;
    display: block;
}

/* GRID */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-full {
    margin-bottom: 20px;
}

/* INPUTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    transition: 0.2s;
}

/* INPUT FOCUS */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #2563eb;
    outline: none;
}

/* BUTTON */
.btn-submit {
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/* ============================= */
/* REFER HERO */
/* ============================= */

.refer-hero {
    background: linear-gradient(
        to right,
        #0d6efd,
        #0d6efd
    );

    padding: 100px 20px;
    text-align: center;
}

/* Container */
.refer-container {
    max-width: 700px;
    margin: auto;
}

/* Badge */
.refer-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #fff;

    padding: 6px 12px;
    border-radius: 20px;

    font-size: 13px;
    margin-bottom: 20px;
}

/* Heading */
.refer-hero h1 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Text */
.refer-hero p {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* Buttons */
.refer-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* PRIMARY (WHITE) */
.btn-white {
    background: #ffffff;
    color: #0B3A82;

    padding: 12px 20px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 500;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* OUTLINE */
.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.5);
    color: #ffffff;

    padding: 12px 20px;
    border-radius: 6px;

    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Hover */
.btn-white:hover {
    background: #e5e7eb;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {

    .refer-hero {
        padding: 70px 20px;
    }

    .refer-hero h1 {
        font-size: 26px;
    }

    .refer-buttons {
        flex-direction: column;
    }
}
.refer-hero h1 {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.how-it-works {
    position: relative;
    overflow: hidden;
    padding: 78px 20px 84px; /* increased top + bottom */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, #1e88e53b 50%, #f7fbff 100%
100%);
}

.how-it-works-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.how-it-works__bg {
    border-radius: 50%;
}

.how-it-works__bg--left {
    width: 460px;
    height: 460px;
    left: -260px;
    top: -130px;
    background: radial-gradient(circle, rgba(141, 187, 255, 0.16) 0%, rgba(141, 187, 255, 0.07) 42%, transparent 72%);
}

.how-it-works__bg--right {
    width: 520px;
    height: 260px;
    right: -260px;
    top: 30px;
    background: radial-gradient(circle, rgba(141, 187, 255, 0.11) 0%, rgba(141, 187, 255, 0.04) 42%, transparent 72%);
}

.how-it-works__dots {
    width: 96px;
    height: 96px;
    opacity: 0.22;
    background-image: radial-gradient(circle, #b9d1ff 1.4px, transparent 1.4px);
    background-size: 12px 12px;
}

.how-it-works__dots--left {
    left: 130px;
    top: 80px;
}

.how-it-works__dots--right {
    right: 120px;
    top: 235px;
}

.how-it-works__curve {
    right: -40px;
    bottom: -18px;
    width: 280px;
    height: 110px;
    opacity: 0.22;
    background:
        radial-gradient(ellipse at bottom right, transparent 58%, rgba(160, 194, 255, 0.32) 58.5%, transparent 60.5%),
        radial-gradient(ellipse at bottom right, transparent 72%, rgba(160, 194, 255, 0.22) 72.5%, transparent 74.5%);
}

/* =========================
   HEADER
========================= */
.section-header {
    text-align: center;
    margin-bottom: 52px; /* more spacing before cards */
}

.section-header__title-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.section-header__ornament {
    display: inline-flex;
    align-items: center;
    color: #2f6cf6;
    opacity: 0.95;
    font-size: 18px;
    line-height: 1;
}

.section-header h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.3px;
    color: #0c214d;
}

.section-header p {
    margin: 15px;
    color: #4e6288;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

/* =========================
   STEPS LAYOUT
========================= */
.steps {
    display: grid;
    grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
    align-items: center;
    gap: 20px;
    padding: 0 10px; /* small inner breathing space */
}

/* =========================
   CARD
========================= */
.step-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #e5ebf5;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(20, 49, 109, 0.055);
    padding: 28px 28px 24px;
    min-height: 120px;
    max-width: 400px;
    width: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(20, 49, 109, 0.09);
}

/* top row inside card */
.step-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

/* Icon */
.step-card .icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f6cf2 0%, #0c54d8 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 12px 24px rgba(25, 90, 219, 0.18);
}

.step-card .icon i {
    line-height: 1;
}

/* Step Number */
.step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #e9f0ff;
    color: #173f91;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.3px;
}

/* Title */
.step-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #122b5f;
    line-height: 1.25;
    letter-spacing: -0.3px;
    max-width: 200px;
}

/* Text */
.step-card p {
    margin: 0;
    font-size: 15px;
    color: #4f648a;
    line-height: 1.55;
    font-weight: 500;
    max-width: 195px;
}

/* Arrow */
.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c66ef;
    font-size: 40px;
    line-height: 1;
}

.arrow i {
    line-height: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
    .how-it-works {
        padding: 68px 20px 74px;
    }

    .steps {
        grid-template-columns: 1fr 34px 1fr;
        row-gap: 18px;
        padding: 0;
    }

    .steps .step-card:nth-child(1) { grid-column: 1; }
    .steps .arrow:nth-child(2)     { grid-column: 2; }
    .steps .step-card:nth-child(3) { grid-column: 3; }

    .steps .arrow:nth-child(4) {
        display: none;
    }

    .steps .step-card:nth-child(5) { grid-column: 1; }
    .steps .arrow:nth-child(6)     { grid-column: 2; }
    .steps .step-card:nth-child(7) { grid-column: 3; }

    .step-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .how-it-works {
        padding: 56px 16px 60px; /* mobile top/bottom padding */
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header__title-row {
        gap: 12px;
        margin-bottom: 6px;
    }

    .section-header__ornament {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .section-header p {
        font-size: 15px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .arrow {
        display: none !important;
    }

    .step-card {
        min-height: auto;
        max-width: 100%;
        padding: 22px 20px 20px;
        border-radius: 20px;
    }

    .step-card__top {
        margin-bottom: 16px;
    }

    .step-card .icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }

    .step {
        min-width: 42px;
        height: 30px;
        font-size: 18px;
    }

    .step-card h3 {
        font-size: 17px;
        max-width: 100%;
    }

    .step-card p {
        font-size: 14px;
        max-width: 100%;
    }

    .how-it-works__dots {
        display: none;
    }
}
/* =====================================================
   REFERRAL REWARDS - UPDATED TO MATCH NEW IMAGE
===================================================== */
.referral-rewards {
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 55%, #f8fbff 100%);
}

/* decorative bg */
.referral-rewards__bg-left,
.referral-rewards__bg-right {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.referral-rewards__bg-left {
    width: 520px;
    height: 520px;
    left: -280px;
    top: -200px;
    background: radial-gradient(circle, rgba(120, 170, 255, 0.12) 0%, rgba(120, 170, 255, 0.05) 42%, transparent 72%);
}

.referral-rewards__bg-right {
    width: 420px;
    height: 220px;
    right: -180px;
    top: 40px;
    background: radial-gradient(circle, rgba(120, 170, 255, 0.08) 0%, rgba(120, 170, 255, 0.02) 42%, transparent 72%);
}

.referral-rewards__container {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px 20px;
}

/* =========================
   HEADER
========================= */
.rewards-header {
    text-align: center;
    max-width: 540px;
    margin: 20px auto 34px;

}

.rewards-header h2 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #0d214f;
    letter-spacing: -0.5px;
}

.rewards-header__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
    color: #6d7d97;
}

.rewards-header__text span {
    color: #2465e8;
    font-weight: 700;
}

/* =========================
   GRID
========================= */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: end;
    padding: 40px 10px; /* small horizontal padding */
}

/* =========================
   CARD
========================= */
.reward-card {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #e5ebf5;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(24, 54, 119, 0.06);
    padding: 42px 28px 16px;
    min-height: 340px;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.reward-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(24, 54, 119, 0.10);
}

/* floating icon */
.reward-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 12px 24px rgba(35, 76, 168, 0.12);
}

.reward-icon i {
    font-size: 24px;
    line-height: 1;
}

/* PLAN */
.plan {
    display: block;
    margin-top: 4px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* PRICE */
.reward-card h3 {
    margin: 0 0 8px;
    font-size: 44px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
    color: #1551d3;
}

.reward-card h3 small {
    font-size: 18px;
    font-weight: 700;
    color: #5f7294;
    margin-left: 4px;
}

/* TITLE */
.reward-card .title {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    color: #122b5f;
}

/* DESC */
.reward-card .desc {
    margin: 0 auto;
    max-width: 220px;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    color: #5d7295;
}

/* DIVIDER */
.reward-card .divider {
    height: 1px;
    background: #e4eaf4;
    margin: 14px 0 12px;
}

/* NOTE */
.reward-card .note {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #5e7295;
}

.reward-card .note i {
    font-size: 14px;
}

/* STARTER */
.reward-card--starter .reward-icon {
    background: linear-gradient(135deg, #edf2ff 0%, #dce5ff 100%);
}
.reward-card--starter .reward-icon i,
.reward-card--starter .plan,
.reward-card--starter .note i {
    color: #1f5fe3;
}

/* PREMIER */
.reward-card--premier .reward-icon {
    background: linear-gradient(135deg, #f1ebff 0%, #e5dcff 100%);
}
.reward-card--premier .reward-icon i,
.reward-card--premier .plan,
.reward-card--premier .note i {
    color: #7452e8;
}

.reward-card--premier h3 {
    color: #5a4fe3;
}

/* FEATURED */
.reward-card.featured {
    background: linear-gradient(135deg, #0ea5c6b3  0%, #0b3db5 100%);
    border-color: rgba(20, 72, 196, 0.4);
    box-shadow: 0 18px 40px rgba(13, 71, 191, 0.22);
    min-height: 340px;
    padding-top: 48px;
}

.reward-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(13, 71, 191, 0.28);
}

.reward-card.featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,0.16) 1.2px, transparent 1.2px),
        radial-gradient(circle at 36% 28%, rgba(255,255,255,0.16) 1.2px, transparent 1.2px),
        radial-gradient(circle at 70% 18%, rgba(255,255,255,0.13) 1.2px, transparent 1.2px),
        radial-gradient(circle at 82% 30%, rgba(255,255,255,0.14) 1.2px, transparent 1.2px);
    background-size: 120px 80px;
    opacity: 0.7;
}

.reward-card.featured .reward-icon {
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
    top: -20px;
}

.reward-card.featured .reward-icon i {
    color: #235fe5;
}

.reward-card.featured .badge-popular {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #5f7396;
    border: 1px solid #dce7fb;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 16px rgba(22, 62, 150, 0.12);
    z-index: 3;
}

.reward-card.featured .plan,
.reward-card.featured h3,
.reward-card.featured .title,
.reward-card.featured .desc,
.reward-card.featured .note,
.reward-card.featured .note i,
.reward-card.featured h3 small {
    color: #ffffff;
}

.reward-card.featured .divider {
    background: rgba(255, 255, 255, 0.25);
}

/* responsive */
@media (max-width: 991px) {
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reward-card,
    .reward-card.featured {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .referral-rewards {
        padding: 24px 16px 24px;
    }

    .rewards-header {
        margin-bottom: 28px;
    }

    .rewards-header h2 {
        font-size: 24px;
    }

    .rewards-header__text {
        font-size: 12.5px;
    }

    .reward-card {
        padding: 40px 20px 16px;
    }

    .reward-card h3 {
        font-size: 38px;
    }

    .reward-card h3 small {
        font-size: 16px;
    }

    .reward-card .title {
        font-size: 15px;
    }

    .reward-card .desc,
    .reward-card .note {
        font-size: 12.5px;
    }

    .reward-icon {
        width: 54px;
        height: 54px;
    }

    .reward-icon i {
        font-size: 22px;
    }
}
/* ============================= */
/* FEATURED CARD */
/* ============================= */

.featured {
    background: #0B3A82;
    color: #ffffff;

    transform: scale(1.05);
    border: none;

    box-shadow: 0 20px 50px rgba(11,58,130,0.35);
}

/* Fix text colors */
.featured h3,
.featured .title {
    color: #ffffff;
}

.featured small,
.featured .desc,
.featured .note {
    color: #cbd5e1;
}

/* Divider */
.featured .divider {
    background: rgba(255,255,255,0.25);
}

/* Icon */
.featured .note i {
    color: #ffffff;
}

/* ============================= */
/* BADGE */
/* ============================= */

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);

    background: #e5e7eb;
    color: #111827;

    font-size: 11px;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: scale(1);
    }
}
/* ============================= */
/* REFER FINAL CTA */
/* ============================= */

.refer-final-cta {
    background: #f3f4f6;
    padding: 80px 20px;
}

/* CARD */
.cta-card {
    background: #ffffff;
    border-radius: 16px;

    padding: 50px 30px;
    text-align: center;

    max-width: 900px;
    margin: auto;

    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ICON */
.cta-icon i {
    font-size: 26px;
    color: #0B3A82;

    background: #eef2f7;
    padding: 12px;
    border-radius: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

/* HEADING */
.cta-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #111827;
}

/* TEXT */
.cta-card p {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 30px;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}



/* OUTLINE BUTTON */
.btn-outline {
    border: 1px solid #d1d5db;
    color: #fff;

    padding: 12px 18px;
    border-radius: 6px;

    text-decoration: none;
    font-size: 14px;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}



.btn-outline:hover {
    background: #e5e7eb;
}
@media (max-width: 600px) {

    .cta-buttons {
        flex-direction: column;
    }

    .cta-card {
        padding: 40px 20px;
    }
}

/* RFP PAGE */
.rfp-page {
    background: linear-gradient(to bottom, #eef2f7, #ffffff);
    padding: 80px 0;
}

/* HEADER */
.rfp-header {
    text-align: center;
    margin-bottom: 40px;
}

.rfp-header h1 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 10px;
}

.rfp-header p {
    color: #64748b;
    font-size: 16px;
}

/* FORM CARD */
.rfp-card {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    width: 720px;
    max-height: 90vh;
    background: #fff;
    border-radius: 10px;
    overflow-y: auto; /* ✅ full modal scroll */
    position: relative;
}

/* Close button */
.close-btn {
    position: sticky;
    top: 10px;
    float: right;
    margin-right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    z-index: 10;
}

.close-btn:hover {
    color: #000;
}

/* Header */
.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
}

/* Meta */
.meta {
    margin-top: 8px;
}

.tag {
    background: #e6f0ff;
    color: #0073e6;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 5px;
}

.read-time {
    margin-left: 8px;
    font-size: 12px;
    color: #666;
}

/* Image */
.feature-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Content */
.content {
    padding: 20px;
}

.content h3 {
    margin-top: 20px;
}

.content p {
    line-height: 1.6;
    color: #444;
}
