body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.topbar {
    background: linear-gradient(to right, #1e73d8, #0ea5c6);
    color: #fff;
    font-size: 13px;
}

.topbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 6px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SIDE */
.top-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* RIGHT SIDE */
.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON STYLE */
.topbar i {
    font-size: 12px;
}

/* DOT DIVIDER */
.divider {
    opacity: 0.7;
}


/* MAIN NAV */
.navbar {
    background: #f3f4f6;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo strong {
    color: #0f172a;
    font-size: 16px;
}

.logo small {
    display: block;
    font-size: 11px;
    color: #64748b;
}

/* optional hover */
.logo:hover strong {
    color: #0B3A82;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #1e73d8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
}

.logo strong {
    display: block;
    font-size: 18px;
}

.logo small {
    font-size: 10px;
    color: #777;
}

/* MENU BOX (rounded) */
.menu-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 28px;

    background: #e9edf3;
    padding: 14px 30px;

    border-radius: 50px;
    border: 1px solid #d5dbe3;

    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

/* LINKS */
.menu-box a {
    text-decoration: none;
    color: #5b6470;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.menu-box a:hover {
    color: #1e3a8a;
}

/* RIGHT SIDE CONTAINER */
.nav-right {
    display: flex;
    align-items: center;
}

/* CTA BUTTON */
.cta-btn {
    background: linear-gradient(135deg, #1e73d8, #0ea5c6);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* OPTIONAL: arrow styling */
.cta-btn::after {
    content: "→";
    font-size: 14px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #eef2f7, #dce6f1);
    padding: 60px 0;
}

/* SAME WIDTH AS HEADER */
.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.hero-content {
    flex: 1;
}

/* TAG */
.hero-tag {
    font-size: 12px;
    color: #1e73d8;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* TITLE */
.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.hero-content span {
    color: #1e73d8;
    font-style: italic;
}

/* TEXT */
.hero-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

/* PRIMARY */
.btn-primary {
    background: linear-gradient(135deg, #1e73d8, #0ea5c6);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

/* SECONDARY */
.btn-secondary {
    background: #e5e7eb;
    color: #333;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
/* INITIAL HIDDEN STATE */
.hero-content,
.hero-image {
    opacity: 0;
    transform: translateY(30px);
}

/* LEFT CONTENT ANIMATION */
.hero-content {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* RIGHT IMAGE ANIMATION */
.hero-image {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content h1 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

/* Paragraph */
.hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

/* Buttons */
.hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}
.hero-image img {
    animation: zoomIn 1s ease forwards;
    transform: scale(0.95);
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}
/* MOBILE HERO */
@media (max-width: 992px) {

    .hero-container {
        flex-direction: column;   /* stack */
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center; /* center buttons */
        flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }
}

/* SMALL MOBILE */
@media (max-width: 576px) {

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-tag {
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;             /* full width buttons */
        justify-content: center;
    }
}

/* TRUST SECTION */
.trust {
    background: #e9f0f6;
    padding: 30px 0;
}

/* SAME ALIGNMENT */
.trust-container {
    max-width: 1180px;
    margin: auto;
    padding: 0 20px;
}

/* TOP LINE */
.trust-line {
    height: 1px;
    background: #cdd6df;
    margin-bottom: 20px;
}

/* ITEMS */
.trust-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowwrap;
    gap: 20px;
}

/* SINGLE ITEM */
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #4a5a6a;
    white-space: nowrap;
    font-weight:700;
}
/* TRUST ITEM */
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    letter-spacing: 1px;
    color: #4a5a6a;
}

/* ICON STYLE */
.trust-item i {
    font-size: 14px;
    color: #1e73d8;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;
}

/* HOVER (optional subtle effect) */
.trust-item:hover i {
    transform: scale(1.1);
    transition: 0.2s ease;
}


@media (max-width: 900px) {
    .trust-grid {
        justify-content: center;
    }

    .trust-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 500px) {
    .trust-card {
        flex: 1 1 100%;
        justify-content: center;
    }
}
/* ============================= */
/* GLOBAL CONTAINER */
/* ============================= */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ============================= */
/* CONTAINER */
/* ============================= */

/* SECTION */
.portfolio-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F7FAFF, #EEF4FF);
}

/* HEADER */
.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.portfolio-header p {
    color: var(--text-muted);
    margin-top: 10px;
}

/* GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
    overflow: hidden;
}

/* CARD */
.portfolio-card {
    background: #ffffff;
    padding: 25px 10px;
    text-align: center;
    border: 1px solid #E6ECF5;
    transition: 0.3s ease;
    position: relative;
}

/* hover effect (important 🔥) */
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.15);
    z-index: 2;
}

/* numbers */
.portfolio-card h3 {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* text */
.portfolio-card p {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ICON BOX */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 14px;

    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.25);
}

/* GRID BORDER FIX (like your image) */
.portfolio-card:nth-child(1),
.portfolio-card:nth-child(2),
.portfolio-card:nth-child(3) {
    border-bottom: 1px solid #E6ECF5;
}

.portfolio-card:nth-child(1),
.portfolio-card:nth-child(2),
.portfolio-card:nth-child(4),
.portfolio-card:nth-child(5) {
    border-right: 1px solid #E6ECF5;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* PRACTICE SECTION */
/* ============================= */

.practice-section {
    background: #eef2f6;
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-header p {
    color: #64748b;
    max-width: 900px;
    line-height: 1.6;
}

/* ✅ GRID (IMPORTANT CHANGE) */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e8f0;
}

/* ✅ CARD = GRID CELL STYLE */
.practice-card {
    padding: 25px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}

/* Remove extra borders (last column & last row) */
.practice-card:nth-child(4n) {
    border-right: none;
}

.practice-card:nth-last-child(-n+4) {
    border-bottom: none;
}

/* Hover effect (soft like screenshot) */
.practice-card:hover {
    background: #f8fafc;
}

/* TOP BAR */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* ICON */
.icon-box {
    width: 42px;
    height: 42px;
    background: #082c64;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* NUMBER */
.number {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
}

/* TITLE */
.practice-card h3 {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 8px;
}

/* TEXT */
.practice-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}
/* ============================= */
/* FAQ SECTION */
/* ============================= */

.faqs-section {
    background: #eef2f6;
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.faqs-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.faqs-header .tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #3b82f6;
    font-weight: 600;
}

.faqs-header h2 {
    font-size: 56px;
    line-height: 1.2;
    color: #0f172a;
    margin: 10px 0;
}

/* Italic style */
.faqs-header h2 em {
    font-style: italic;
    font-weight: 400;
}

.faqs-header p {
    color: #64748b;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faqs-header h2 {
        font-size: 34px;
    }
}
/* ============================= */
/* FAQ LIST SECTION */
/* ============================= */

.faq-list-section {
    background: #eef2f6;
    padding: 80px 20px;
}

.container {
    max-width: 900px;
    margin: auto;
}

/* LIST */
.faq-list {
    width: 100%;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #d1d5db;
}

/* QUESTION ROW */
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 10px;
    font-size: 18px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
    cursor: pointer;
}

/* ICON */
.faq-q i {
    font-size: 16px;
    color: #64748b;
    transition: 0.3s;
}

/* ANSWER */
.faq-a {
    display: none;
    padding: 0 10px 20px;
}

.faq-a p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-a {
    display: block;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
}

/* HOVER */
.faq-q:hover {
    color: #0B3A82;
}

/* MOBILE */
@media (max-width: 600px) {
    .faq-q {
        font-size: 16px;
    }
}
/* 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 */
.why-section {
    background: #ffffff;
    padding: 80px 20px;
}

/* Layout */
.why-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.why-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Content */
.why-content {
    max-width: 500px;
}

/* WHY ICON (CONSISTENT STYLE) */
.why-icon {
    width: 40px;
    height: 40px;

    background: #e6eef8;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

.why-icon i {
    font-size: 16px;
    color: #020c1b;
}

/* Heading */
.why-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111827;
}

/* Text */
.why-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
@media (max-width: 900px) {

    .why-container {
        grid-template-columns: 1fr;
    }

    .why-content {
        text-align: center;
        margin: auto;
    }
}
/* ============================= */
/* INDUSTRIES SECTION */
/* ============================= */

.industries {
    background: #eef2f6;
    padding: 100px 20px;
}

.industries-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.industries-left .tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 10px;
}

.industries-left h2 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 15px;
}

.industries-left p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    background: #0B3A82;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #082c64;
}

/* RIGHT GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.industry-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.industry-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 12px;
}

/* TITLE */
.industry-card h4 {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 6px;
}

/* TEXT */
.industry-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .industries-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-left h2 {
        font-size: 28px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.industry-section {
    background: #eef2f6;
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.industry-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #0f172a;
}

.industry-header p {
    max-width: 650px;
    color: #64748b;
    line-height: 1.6;
}

/* Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Card */
.industry-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

/* Top row */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Icon */
.icon {
    width: 45px;
    height: 45px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Number */
.number {
    font-size: 12px;
    color: #2563eb;
    font-weight: 600;
}

/* Title */
.industry-card h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}

/* Text */
.industry-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* CTA Card */
.industry-cta-card {
    background: #fff;
    border: 1px dashed #94a3b8;
    border-radius: 16px;
    padding: 25px;
}

.industry-cta-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.industry-cta-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #64748b;
}

.cta-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-header h2 {
        font-size: 28px;
    }
}

/* ============================= */
/* TESTIMONIAL SECTION */
/* ============================= */

.testimonials-section {
    background: #f3f4f6;
    padding: 80px 0;
}

/* TITLE */
.testimonial-title {
    font-size: 28px;
    color: #111827;
    margin-bottom: 40px;
}

/* ============================= */
/* GRID */
/* ============================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 per row */
    gap: 25px;
}

/* ============================= */
/* CARD */
/* ============================= */

.testimonial-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ============================= */
/* QUOTE ICON */
/* ============================= */

.quote-icon {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 10px;
}

/* ============================= */
/* TEXT */
/* ============================= */

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: #111827;

    line-height: 1.6;
    margin-bottom: 15px;
}

/* ============================= */
/* AUTHOR */
/* ============================= */

.testimonial-author {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}
@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA SECTION */
.cta {
    padding: 80px 0;
    background: #f4f6f9;
}

/* CONTAINER aligned with header */
.cta-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* CTA CARD */
.cta-content {
    background: #123e86;
    color: #fff;

    padding: 60px;
    border-radius: 20px;

    position: relative;
    overflow: hidden;
    
     opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;

}

/* LIGHT CIRCLE EFFECT (background design) */
.cta-content::after {
    content: "";
    position: absolute;
    right: -150px;
    top: -150px;

    width: 400px;
    height: 400px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-content::before {
    content: "";
    position: absolute;
    right: -100px;
    top: 0;

    width: 300px;
    height: 300px;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

/* TITLE */
.cta-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* TEXT */
.cta-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 500px;

    margin-bottom: 30px;
}
/* CTA BUTTON (MATCH DESIGN) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: #e5e7eb;
    color: #111;

    padding: 12px 14px 12px 24px;
    border-radius: 40px;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    min-width: 260px;
}

/* TEXT */
.cta-button span {
    flex: 1;
}

/* CIRCLE ICON */
.cta-button .icon {
    width: 34px;
    height: 34px;

    background: #1e73d8;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 14px;

    transition: 0.3s ease;
}

/* HOVER */
.cta-button:hover .icon {
    transform: translateX(3px);
}


@media (max-width: 768px) {

    .cta-content {
        padding: 40px 25px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        max-width: 100%;
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    background: #f8fafc;
    padding: 80px 20px 30px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

/* COLUMN */
.footer-col h3 a {
    text-decoration: none;
    color: #0f172a;
}

.footer-col p {
    margin-top: 10px;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
}

/* HEADINGS */
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #0f172a;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #64748b;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #0B3A82;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }
}
/* SERVICES HERO */
.services-hero {
    background-color: #0B3A82;
    padding: 100px 20px;
}

/* CONTAINER ALIGNMENT */
.services-hero .container {
    max-width: 1200px;
}

/* HEADING */
.services-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}

/* TEXT */
.services-hero p {
    color: #cbd5e1;
    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;
    }
}

/* ============================= */
/* CORE PRACTICE SECTION */
/* ============================= */

.core-practice {
    background: #f3f4f6;
    padding: 80px 20px;
}

/* Container (optional if not defined) */
.container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.core-title {
    font-size: 30px;
    margin-bottom: 40px;
    color: #111827;
}

/* Grid Layout */
.core-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.core-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 15px rgba(0,0,0,0.04);

    transition: all 0.25s ease;
}

/* Hover Effect */
.core-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Header Row */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header i {
    font-size: 18px;
    color: #fff;

    background: #0B3A82;
    padding: 10px;
    border-radius: 8px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon hover */
.core-card:hover .card-header i {
    background: #0B3A82;
    color: #ffffff;
}

/* Number (01, 02, etc.) */
.number {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
}

/* Title */
.core-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #111827;
}

/* Description */
.core-card p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
}
.card-header i {
    background: #1e3a8a;
    padding: 10px;
    border-radius: 8px;
}
.icon {
    font-size: 20px;
    color: #fff;
}


@media (max-width: 1024px) {
    .core-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .core-grid {
        grid-template-columns: 1fr;
    }

    .core-title {
        text-align: center;
    }
}

/* ============================= */
/* CPA SECTION */
/* ============================= */

.cpa-section {
    background: #f9fafb;
    padding: 80px 20px;
}

/* Layout */
.cpa-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT CONTENT */
.cpa-content {
    max-width: 500px;
}

/* ICON */
.cpa-icon i {
    font-size: 22px;
    color: #0B3A82;

    background: #eef2f7;
    padding: 10px;
    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* HEADING */
.cpa-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

/* TEXT */
.cpa-content p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================= */
/* CTA CARD */
/* ============================= */

.cpa-cta {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* CTA TITLE */
.cpa-cta h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

/* CTA TEXT */
.cpa-cta p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    background: #0B3A82;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

/* BUTTON HOVER */
.btn-primary:hover {
    background: #082c64;
}
@media (max-width: 900px) {
    .cpa-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cpa-content {
        margin: auto;
    }

    .cpa-cta {
        margin-top: 20px;
    }
}

/* ============================= */
/* INDUSTRIES HERO */
/* ============================= */

.industries-hero {
    background: #0B3A82;
    padding: 100px 20px;
}

/* Layout */
.industries-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.industries-hero-content {
    max-width: 600px;
}

/* Heading */
.industries-hero-content h1 {
    color: #ffffff;
    font-size: 44px;
    margin-bottom: 20px;
}

/* Text */
.industries-hero-content p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
}

/* RIGHT IMAGE */
.industries-hero-image img {
    width: 100%;
    border-radius: 16px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
@media (max-width: 900px) {
    .industries-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .industries-hero-content {
        margin: auto;
    }

    .industries-hero-image {
        margin-top: 30px;
    }

    .industries-hero-content h1 {
        font-size: 32px;
    }
}
/* ============================= */
/* GRID */
/* ============================= */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ============================= */
/* NORMAL CARDS */
/* ============================= */

.industry-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);

    transition: 0.25s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.industry-card i {
    font-size: 18px;
    color: #0B3A82;

    background: #eef2f7;
    padding: 10px;
    border-radius: 8px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card:hover i {
    background: #0B3A82;
    color: #fff;
}

/* ============================= */
/* CTA CARD (RIGHT SIDE DARK BOX) */
/* ============================= */

.industry-cta-card {
    background: linear-gradient(135deg, #1e73d8, #0ea5c6);
    color: #ffffff;

    border-radius: 12px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* CTA TEXT */
.industry-cta-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.industry-cta-card p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* CTA LINK */
.cta-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.cta-link:hover {
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================= */
/* 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;
}

/* PRIMARY BUTTON */
.industry-final-cta .btn-primary {
    background: #0B3A82;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* 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;
}

/* Hover */
.industry-final-cta .btn-primary:hover {
    background: #082c64;
}

/* ✅ 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 {
    background: #0B3A82;
    padding: 100px 20px;
}

/* Container (limit width like screenshot) */
.insights-hero .container {
    max-width: 1100px;
}

/* Heading */
.insights-hero h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
}

/* Text */
.insights-hero p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .insights-hero {
        padding: 60px 20px;
        text-align: center;
    }

    .insights-hero h1 {
        font-size: 32px;
    }
}
/* ============================= */
/* INSIGHTS CONTENT */
/* ============================= */

.insights-content {
    background: #f3f4f6;
    padding: 80px 20px;
}

/* Section Titles */
.section-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111827;
}

/* ============================= */
/* CONTENT PILLARS */
/* ============================= */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

/* Pill */
.pillar-item {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;

    border: 1px solid #e5e7eb;

    font-size: 14px;
    color: #374151;
}

/* Icon */
.pillar-item i {
    color: #0B3A82;
    font-size: 16px;
}

/* ============================= */
/* FEATURED ARTICLES */
/* ============================= */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card */
.article-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);

    transition: 0.25s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

/* Top row */
.article-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Badge */
.badge {
    background: #eef2f7;
    color: #0B3A82;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Time */
.time {
    font-size: 12px;
    color: #9ca3af;
}

/* Title */
.article-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Text */
.article-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Link */
.read-link {
    text-decoration: none;
    color: #0B3A82;
    font-weight: 500;
}

.read-link:hover {
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= */
/* ABOUT HERO */
/* ============================= */

.about-hero {
    position: relative;

    /* Background Image */
    background: url('/images/about-bg.jpg') center/cover no-repeat;

    padding: 120px 20px;

    display: flex;
    align-items: center;
}

/* Overlay (IMPORTANT) */
.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    /* Blue layer */
    background: rgba(11, 58, 130, 0.85);
}

/* 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: #cbd5e1;
    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 */
/* ============================= */

.about-story {
    background: #f3f4f6;
    padding: 80px 20px;
}

/* Layout */
.about-story-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.about-story-image img {
    width: 100%;
    border-radius: 12px;

    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Content */
.about-story-content {
    max-width: 600px;
}

/* Paragraphs */
.about-story-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}
@media (max-width: 900px) {

    .about-story-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-story-content {
        margin: auto;
    }

    .about-story-image {
        margin-bottom: 20px;
    }
}
/* ============================= */
/* MISSION + VALUES */
/* ============================= */

.about-mission-values {
    background: #f3f4f6;
    padding: 80px 20px;
}

/* ============================= */
/* MISSION */
/* ============================= */

.mission-block {
    max-width: 700px;
    margin-bottom: 50px;
}

.mission-block h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.mission-block p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================= */
/* VALUES */
/* ============================= */

.values-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 15px rgba(0,0,0,0.04);

    transition: 0.25s ease;
}

/* Hover */
.value-card:hover {
    transform: translateY(-5px);
}

/* ICON (Bootstrap Icons ✅) */
.value-card i {
    font-size: 20px;
    color: #ffffff;

    background: #1e3a8a;
    padding: 10px;
    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}

/* Hover icon effect */
.value-card:hover i {
    background: #0B3A82;
    color: #ffffff;
}

/* TITLE */
.value-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* TEXT */
.value-card p {
    font-size: 14px;
    color: #6b7280;
}
@media (max-width: 768px) {

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-block {
        text-align: center;
        margin: auto;
        margin-bottom: 40px;
    }
}
/* ============================= */
/* CONTACT HERO */
/* ============================= */

.contact-hero {
    background: #0B3A82;
    padding: 100px 20px;
}

/* Container width */
.contact-hero .container {
    max-width: 900px;
}

/* 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: #f3f4f6;
    padding: 80px 20px;
}

/* Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

/* ============================= */
/* LEFT SIDE */
/* ============================= */

.contact-details h2 {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item i {
    font-size: 18px;
    color: #0B3A82;

    background: #eef2f7;
    padding: 10px;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
}

.detail-item strong {
    display: block;
    margin-bottom: 3px;
}

.detail-item p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* ============================= */
/* RIGHT SIDE (FORM) */
/* ============================= */

.contact-form h2 {
    margin-bottom: 20px;
}

/* Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    border: 1px solid #d1d5db;
    border-radius: 6px;

    font-size: 14px;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #0B3A82;
}

/* Button */
.btn-primary {
    background: #0B3A82;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #082c64;
}
@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-details {
        text-align: center;
    }
}
/* ============================= */
/* REFER HERO */
/* ============================= */

.refer-hero {
    background: linear-gradient(
        to right,
        #0B3A82,
        #092a5e
    );

    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: 12px;
    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 {
    background: #eef2f6;
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header span {
    color: #3b82f6;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 500;
    margin-top: 10px;
    color: #0f172a;
    line-height: 1.2;
}

/* Steps Layout */
.steps {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

/* Card */
.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 250px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.step-card .icon {
    width: 50px;
    height: 50px;
    background: #0ea5e9;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Step Number */
.step {
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
}

/* Title */
.step-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #0f172a;
}

/* Text */
.step-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Arrow */
.arrow {
    font-size: 24px;
    color: #0ea5e9;
}

/* Responsive */
@media (max-width: 992px) {
    .steps {
        justify-content: center;
    }
    
    .arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }

    .step-card {
        width: 100%;
    }
}
/* REFER STEPS */
/* ============================= */

/* ============================= */
/* REFERRAL REWARDS */
/* ============================= */

.referral-rewards {
    background: #f3f4f6;
    padding: 90px 20px;
    text-align: center;
}

/* Header */
.rewards-header {
    max-width: 640px;
    margin: 0 auto 50px;
}

.rewards-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.rewards-header p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================= */
/* GRID */
/* ============================= */

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* ============================= */
/* CARD */
/* ============================= */

.reward-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 14px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    text-align: left;
    position: relative;

    transition: all 0.25s ease;
}

/* Hover */
.reward-card:hover {
    transform: translateY(-6px);
}

/* PLAN */
.plan {
    font-size: 11px;
    letter-spacing: 1px;
    color: #020917;
    text-transform: uppercase;
    font-weight:800;
}

/* PRICE */
.reward-card h3 {
    font-size: 36px;
    margin: 12px 0;
    color: #111827;
}

.reward-card small {
    font-size: 12px;
    color: #6b7280;
}

/* TITLE */
.title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

/* DESCRIPTION */
.desc {
    font-size: 13.5px;
    color: #6b7280;
}

/* DIVIDER */
.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 20px 0;
}

/* NOTE */
.note {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
}

.note i {
    color: #0B3A82;
    margin-right: 6px;
}

/* ============================= */
/* 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;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #0B3A82;
    color: #ffffff;

    padding: 12px 18px;
    border-radius: 6px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* 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;
}

/* HOVER */
.btn-primary:hover {
    background: #082c64;
}

.btn-outline:hover {
    background: #e5e7eb;
}
@media (max-width: 600px) {

    .cta-buttons {
        flex-direction: column;
    }

    .cta-card {
        padding: 40px 20px;
    }
}