* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #1a56db;
    /* --blue-light: #3b82f6; */
    --blue-light: #E6EAFD;
    --blue-dark: #1e3a8a;
    --blue-border: #dbeafe;
    --yellow: #f59e0b;
    --yellow-btn: #f59e0b;
    --green: #10b981;
    --purple: #7c3aed;
    --orange: #f97316;
    --pink: #ec4899;
    --teal: #39c6a8;
    --red: #EA2824;
    --red-light: #FCEFEF;
    --navy: #0f172a;
    --navy-dark: #1E1D54;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f0f6ff;
    --bg-section: #f8fafc;
    --white: #fff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(26, 86, 219, 0.10);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.07);
    --radius: 14px;
    --radius-sm: 8px;

    --yellow-color: #FEE7B2;
    --yellow-light: #FEF3DD;
    --yellow-border: #E7D79D;

    --purple-color: #DBBEF8;
    --purple-light: #E1D9FE;
    --purple-border: #7E639D;

    --pink-color: #FECBDC;
    --pink-light: #FDE6EE;
    --pink-border: #ECA2BC;

    --green-color: #D1E9B9;
    --green-light: #E5F7E1;
    --green-border: #B1CBA8;

    --voilet: #a150f8;
    --voilet-light: #F0E6FB;
    --voilet-border: #D8C9FD;


    --about-bg-image: url('../images/about-bg-image.webp');
    --contact-us: url('../images/contact-us.webp');

    --primary-font: "Outfit", sans-serif;
    --fontawesome-font: "Font Awesome 6 Free";
}

body {
    font-family: var(--primary-font);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--primary-font);
}

a {
    text-decoration: none;
}

p {
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.text-red {
    color: var(--red) !important;
}

.text-green {
    color: var(--green) !important;
}

.is-invalid {
    border: 2px solid var(--red);
    color: var(--red);
    background: var(--red-light);
}

.is-success {
    border: 2px solid var(--green);
    color: var(--green);
    background: var(--green-light);
}

.has-error {
    border-color: var(--red) !important;
    color: var(--red) !important;
}

.has-error :where(label, input) {
    border-color: var(--red) !important;
    color: var(--red) !important;
}

.has-error::placeholder,
.has-error input::placeholder {
    color: var(--red) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-section {
    background-color: var(--bg-section) !important;
}

.icon-link {
    color: var(--blue-primary);
    font-weight: 600;
    gap: 10px;
    transition: all 0.4s ease;
}

.icon-link::after {
    content: '\f061';
    font-family: var(--fontawesome-font);
    font-weight: 900;
}

.icon-link:hover {
    color: var(--blue-dark);
}

[data-pattern] {
    position: relative;
    background:
        radial-gradient(circle at 15% -10%, var(--voilet-border) 0 180px, transparent 181px),
        radial-gradient(circle at 0% 70%, var(--green-border) 0 220px, transparent 221px),
        radial-gradient(circle at 100% 80%, var(--pink-color) 0 300px, transparent 301px),
        radial-gradient(circle at 96% 20%, var(--yellow-color) 0 160px, transparent 161px),
        linear-gradient(135deg, #EEF0FD, #EEF0FD) !important;
}

[data-pattern="half-circle"]::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--voilet), var(--blue-light));
    border-radius: 50%;
    top: 0;
    left: -100px;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }

    25% {
        border-radius: 60% 40% 30% 70% / 50% 70% 30% 50%;
    }

    50% {
        border-radius: 35% 65% 60% 40% / 60% 30% 70% 40%;
    }

    75% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    }

    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
}

[data-varient="yellow"] {
    --bg: var(--yellow-color) !important;
    --bg-light: var(--yellow-light) !important;
    --color: var(--yellow) !important;
}

[data-varient="dark-blue"] {
    --bg: var(--blue-light) !important;
    --bg-light: var(--blue-light) !important;
    --border: var(--blue-border) !important;
    --color: var(--blue-dark) !important;
}

[data-varient="purple"] {
    --bg: var(--purple-color) !important;
    --bg-light: var(--purple-light) !important;
    --border: var(--purple-border) !important;
    --color: var(--purple) !important;
}

[data-varient="blue"] {
    --bg: var(--blue-light) !important;
    --bg-light: var(--blue-light) !important;
    --border: var(--blue-border) !important;
    --color: var(--blue-primary) !important;
}

[data-varient="pink"] {
    --bg: var(--pink-color) !important;
    --bg-light: var(--pink-light) !important;
    --border: var(--pink-border) !important;
    --color: var(--pink) !important;
}

[data-varient="green"] {
    --bg: var(--green-color) !important;
    --bg-light: var(--green-light) !important;
    --border: var(--green-border) !important;
    --color: var(--green) !important;
}

[data-varient="teal"] {
    --color: var(--teal) !important;
}

[data-varient="orange"] {
    --bg: var(--yellow-light) !important;
    --bg-light: var(--yellow-light) !important;
    --color: var(--orange) !important;
    --border: var(--yellow-border) !important;
}

[data-varient="red"] {
    --bg: var(--red-light) !important;
    --bg-light: var(--red-light) !important;
    --color: var(--red) !important;
}

.badge {
    font-size: 1rem;
    font-weight: 600;
    border-color: var(--blue-border) !important;
    background: var(--bg-light) !important;
    color: var(--blue-primary) !important;
    border-radius: var(--radius-sm);
}

.badge i {
    color: var(--blue-primary);
}

.testi-text {
    line-height: 1.7;
    transition: all .3s ease;
}

.testi-text.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    border: none;
    background: transparent;
    color: var(--blue-primary);
    font-weight: 600;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
    font-size: 0.85rem;
}

.read-more-btn:hover {
    text-decoration: underline;
}

@media (min-width:992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white);
    border-bottom: 1.5px solid #e8f0fe;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(26, 86, 219, 0.07);
}

.navbar-brand p {
    font-size: 0.8rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-primary) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--white);
    background-color: var(--blue-primary);
}

.dropdown-item:hover {
    background-color: var(--blue-light);
    color: var(--blue-dark);
}

.btn-demo {
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    border: 1px solid var(--blue-primary);
    padding: 0.5rem 1.3rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.btn-demo:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--blue-primary);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 60%, #f5f3ff 100%);
    background: #EEF0FD;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-dark);
    margin-bottom: 18px;
}

.hero h1 .accent {
    color: var(--yellow);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 480px;
}

.btn-primary-hero {
    background: var(--blue-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.8rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    margin-right: 12px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.25);
}

.btn-primary-hero:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.btn-outline-hero {
    background: var(--white);
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    border-radius: 10px;
    padding: 0.72rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-outline-hero:hover {
    background: var(--blue-primary);
    color: var(--white);
}

.btn-secondary-hero {
    background: var(--white);
    color: var(--blue-primary);
    border: 1px solid var(--white);
    border-radius: 10px;
    padding: 0.72rem 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    transition: all 0.2s;
}

.btn-secondary-hero:hover {
    border-color: var(--blue-dark);
    color: var(--blue-dark);
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.about-us .hero-trust {
    justify-content: space-between;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--blue-primary);
    --size: 22px;
    width: var(--size);
    height: var(--size);
}

.about-us .trust-item svg {
    --size: 40px;
}

.about-us .trust-item {
    font-size: 0.9rem;
}

.trust-item svg {
    flex-shrink: 0;
}

/* Hero right panel */
.hero-visual {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(26, 86, 219, 0.18);
}

.hero-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-card.card-assess {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.hero-card.card-plan {
    top: 28%;
    right: -24px;
    animation-delay: 0.8s;
}

.hero-card.card-track {
    bottom: 22%;
    left: -24px;
    animation-delay: 1.6s;
}

.hero-card .card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-dot-red {
    background: #ef4444;
}

.card-dot-purple {
    background: #7c3aed;
}

.card-dot-blue {
    background: #3b82f6;
}

.hero-card .card-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ========== SECTION BASE ========== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 14px;
}

.section-title .hl {
    color: var(--yellow);
}

.section-title .hl-blue {
    color: var(--blue-primary);
}

.section-sub {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* ========== CONTACT US ========== */
.contact-us .hero-visual {
    background-image: var(--contact-us);
    padding: 100px;
    border-radius: var(--radius) 0 0 var(--radius);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: end;
    min-height: 526px;
}

.connect-with-us-box {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
}

.connect-with-us-box h4 {
    font-weight: 600;
    color: var(--blue-dark);
}

.connect-with-us-box p {
    color: var(--text-dark);
}

.icon-box-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.icon-box {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

.icon-box.link-box::after {
    content: '\f105';
    font-family: var(--fontawesome-font);
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue-dark);
}

.icon-box.link-box:hover::after {
    color: var(--blue-primary);
}

.icon-box .icon {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue-light);
    color: var(--blue-primary);
    border-radius: var(--radius);
}

.icon-box.link-box:hover .icon {
    background: var(--blue-primary);
    color: var(--blue-light);
}

.icon-box.link-box .icon {
    --size: 40px;
    border-radius: 5px;
}

.icon-box .icon svg {
    --size: 30px;
    width: var(--size);
    height: var(--size);
}

.icon-box.link-box .icon svg {
    --size: 20px;
}

.icon-box .text {
    color: var(--blue-dark);
    font-weight: 600;
    margin: 0;
}

.icon-box.link-box:hover .text {
    color: var(--blue-primary);
}

.icon-text-box h5 {
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 5px;
}


.icon-text-box p {
    margin-bottom: 0;
}

.contact-section {
    padding: 0 0 70px;
}

.contact-card {
    background: var(--white);
    border-radius: 18px;
    padding: 35px;
    box-shadow: var(--shadow-card);
}

.contact-card .section-title {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-card .section-title svg {
    --size: 25px;
    width: var(--size);
    padding: 14px;
    height: var(--size);
    background: var(--blue-light);
    color: var(--blue-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card .section-title h3 {
    font-weight: 700;
    margin: 0;
    color: var(--blue-dark);
}

.contact-card .section-subtitle {
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 400;
}

.form-control,
.form-select {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #dbe3f3;
}

textarea.form-control {
    min-height: 130px;
    resize: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue-primary);
    box-shadow: none;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #18214d;
}

.required {
    color: var(--red);
}

.form-check-label {
    font-size: 15px;
}

.form-check-label a {
    text-decoration: none;
    font-weight: 600;
}

.send-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 10px;
    background: var(--blue-primary);
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
    transition: .3s;
}

.send-btn:hover {
    transform: translateY(-2px);
}

.send-btn i {
    margin-left: 10px;
}

.info-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 22px;
}

.info-box h3 {
    font-weight: 700;
    color: var(--blue-dark);
}

.info-box p {
    color: var(--text-muted);
}

.feature {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

.feature svg {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    padding: 10px;
    border-radius: 10px;
    background: var(--blue-light);
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-card);
}

.feature h5 {
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--blue-dark);
}

.feature p {
    margin: 0;
    color: var(--text-muted);
}

.demo-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
}

.demo-box h4 {
    font-weight: 700;
    color: var(--blue-dark);
}

.demo-btn {
    border: 2px solid var(--blue-primary);
    color: var(--blue-primary);
    background: #fff;
    border-radius: 10px;
    padding: 0.5rem 1.3rem;
    font-weight: 600;
    transition: .3s;
}

.demo-btn:hover {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark)
}

/* ========== PAPER FILES SECTION ========== */
.paper-box {
    --bg: var(--bg-light);
    --color: var(--blue-primary);
    position: relative;
    padding: 20px;
    background-color: var(--bg);
    border-radius: var(--radius);
}

.paper-box h3 {
    color: var(--color);
    font-weight: 600;
}

.paper-files .paper-files-box {
    --bg-light: var(--red-light);
    --color: var(--red);
    position: relative;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius);
    height: 100%;
}

@media (min-width: 767px) and (max-width: 1699px) {
    .paper-files-responsive>div {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .paper-files-responsive>div img {
        margin-block: 20px;
    }
}

@media (min-width: 767px) {

    .paper-files .paper-files-box:not(.no-arrows)::before {
        content: '\f061';
        position: absolute;
        font-family: var(--fontawesome-font);
        font-weight: 900;
        right: -56px;
        font-size: 40px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--color);
    }

    .paper-files .center-arrow {
        position: relative;
    }

    .paper-files .center-arrow::after {
        content: '\f061';
        position: absolute;
        font-family: var(--fontawesome-font);
        font-weight: 900;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--white);
        background: var(--blue-primary);
        box-shadow: 0 0 0 5px var(--white);
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        --size: 46px;
        width: var(--size);
        height: var(--size);
        border-radius: 50%;
    }

    .paper-files .paper-files-box.paper-files-left-icon::before {
        right: auto;
        left: -56px;
    }

}

.paper-files .paper-files-box :is(h3, h4) {
    font-weight: 600;
    color: var(--color);
}

.paper-box ul li {
    color: var(--text-dark);
    font-weight: 400;
}

/* ========== RD TEAM ========== */
.rd-section {
    background: var(--white);
}

.check-list {
    --color: var(--blue-primary);
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list li::before {
    content: '\f058';
    font-family: var(--fontawesome-font);
    font-weight: 900;
    color: var(--color);
    flex-shrink: 0;
}

.dropdown-item::before {
    content: '\f105';
    font-family: var(--fontawesome-font);
    font-weight: 900;
    color: var(--color);
    margin-right: 10px;
    font-size: 0.75rem;

}

.simple-check-list {
    --color: var(--blue-primary);
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.simple-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.simple-check-list li::before {
    content: '\f00c';
    font-family: var(--fontawesome-font);
    font-weight: 900;
    color: var(--color);
    flex-shrink: 0;
}

.close-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.close-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.close-list li::before {
    content: '\f057';
    font-family: var(--fontawesome-font);
    font-weight: 900;
    color: var(--red);
    flex-shrink: 0;
}

.team-card {
    --bg: var(--yellow-color);
    --bg-light: var(--yellow-light);
    --border: var(--yellow-border);
    background: var(--bg-light);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 4px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px 10px 0;
}

.team-text {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 20px 22px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--border);
    min-height: 138px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-card p {
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

/* ========== ABOUT ========== */
.about-section {
    background: linear-gradient(135deg, #f0f6ff 0%, #faf5ff 100%);
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    background: var(--about-bg-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.dash-stat {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
}

.dash-stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue-primary);
    display: block;
}

.dash-stat-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dash-chart-area {
    background: #f8fafc;
    border-radius: 10px;
    height: 90px;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    gap: 6px;
}

.dash-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--blue-primary);
    opacity: 0.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 10px;
}

.about-feature {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 5px;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
}

.about-feature {
    --color: var(--blue-primary);
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 5px;
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
}

.about-feature-icon svg {
    --size: 26px;
    width: var(--size);
    height: var(--size);
    color: var(--color);
}


.about-feature-text h6 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin: 0;
}

.about-tags {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

/* ========== WHY EARLY INTERVENTION ========== */
.why-early-intervention {
    background-color: var(--white);
}

.early-intervention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

/* .early-intervention-grid .early-intervention-feature:nth-child(even) {
    padding-left: 30px;
    border-left: 2px dotted #d4d5d6;
} */

/* .early-intervention-grid .early-intervention-feature:nth-child(even) {
    padding-inline: 20px;
    border-inline: 2px dotted #d4d5d6;
} */

.early-intervention-feature {
    --bg-light: var(--voilet-light);
    --color: var(--voilet);
    --border: var(--voilet-border);
    display: flex;
    align-items: center;
    gap: 14px;
    /* padding: 10px; */
}

.early-intervention-feature-icon {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--bg-light);
    /* border: 1px solid var(--border); */
}

.early-intervention-feature-icon svg {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    color: var(--color);
}

.early-intervention-feature-text h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0;
}

.early-intervention-feature-text p {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== OUR STORY ========== */
.our-story {
    background-color: var(--bg-light);
}

.our-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.our-story-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 10px;
    position: relative;
}

.our-story-image img {
    border-radius: 24px;
}

.our-story-feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    --size: 10px;
    width: var(--size);
    height: var(--size);
    background-color: var(--blue-primary);
    opacity: 0.6;
    border-radius: var(--size);
}

.our-story-feature-icon {
    line-height: 1;
}

.our-story-feature-icon svg {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    color: var(--blue-primary);
}

.our-story-feature-text h5 {
    color: var(--blue-primary);
    font-weight: 600;
}

.our-story-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========== OUR VISION MISSION ========== */
.our-vision-mission {
    background-color: var(--white);
}

.our-vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.our-vision-mission-grid .our-vision-mission-feature:nth-child(2) {
    border-inline: 2px dotted #d4d5d6;
    padding-inline: 20px;
}

.our-vision-mission-feature {
    --color: var(--voilet);
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 14px;
    padding: 10px;
}

.our-vision-mission-feature-icon {
    padding: 16px;
    border-radius: 30px;
    background: var(--color);
    line-height: 1;
}

.our-vision-mission-feature-icon svg {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    color: var(--white);
}

.our-vision-mission-feature-text h5 {
    color: var(--color);
    font-weight: 600;
}

.our-vision-mission-feature-text p {
    color: var(--text-muted);
    margin: 0;
}

/* ========== MODULES ========== */

.modules-section {
    background: var(--white);
    padding: 72px 0;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-6 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.module-card {
    --bg-light: var(--voilet-light);
    --color: var(--voilet);
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px 10px;
    text-align: center;
    transition: all 0.22s;
    height: 100%;
}

.module-light .module-card {
    background: var(--bg-section) !important;
    border: 1px solid var(--blue-light) !important;
}

.module-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.module-icon-wrap svg {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    margin: 0 auto 10px;
    color: var(--color);
}

.module-card h6 {
    font-weight: 700;
    margin: 0;
}

.module-card p {
    margin-bottom: 0;
}

.btn-explore {
    background: linear-gradient(90deg, var(--blue-primary), #3b82f6);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.7rem 2rem;
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 36px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.25);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.35);
}

/* ========== HOW IEPLANNER EMPOWERS PROFESSIONALS ========== */

.empowers-professionals {
    background-color: var(--bg-section);
}

/* ========== EVENT TABS ========== */
.event-gallery {
    background-color: var(--bg-section);
}

.event-filter {
    margin-bottom: 35px;
}

.event-tabs {
    gap: 12px;
    flex-wrap: wrap;
}

.event-tabs .nav-link {
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 10px 22px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    transition: .3s;
}

.event-tabs .nav-link:hover {
    background-color: var(--blue-light) !important;
}

.event-tabs .nav-link.active {
    background: var(--blue-primary) !important;
    color: var(--white) !important;
}

/* .sort-select {
    width: 170px;
    border-radius: 12px;
    height: 45px;
}

.calendar-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 12px;
    background: var(--blue-primary);
    color: var(--white);
} */

.event-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: .35s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.event-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.event-card:hover img {
    transform: scale(1.08);
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--white);
    background-color: var(--color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date {
    position: absolute;
    right: 15px;
    top: 15px;
    background: var(--white);
    width: 68px;
    border-radius: var(--radius);
    text-align: center;
    padding: 10px 0;
}

.event-date h4 {
    margin: 0;
    font-weight: 700;
    color: var(--blue-dark);
}

.event-date span {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.event-content {
    padding: 18px;
}

.event-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 2px;
}

.event-content p {
    color: var(--text-muted);
    margin: 0;
}

.event-content i {
    color: var(--blue-primary);
    margin-right: 6px;
}

/* ========== WHY CHOOSE ========== */
.why-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1a56db 50%, #2563eb 100%);
}

.why-section.about-page {
    background: var(--bg-light);
}

.why-section.color-section {
    background: var(--white);
}

.why-section .section-title {
    color: var(--white);
}

.why-section.about-page .section-title {
    color: var(--navy-dark);
}

.why-section .section-title .hl {
    color: var(--yellow);
}

.why-card {
    background-color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 28px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    backdrop-filter: blur(6px);
    transition: all 0.22s;
}

.small-card .why-card {
    padding: 15px 20px;
    align-items: start;
    justify-content: start;
    gap: 12px;
}

.service-page .why-card {
    --bg-light: var(--voilet-light);
    --color: var(--voilet);
    flex-direction: row;
    text-align: left;
    gap: 20px;
}

.about-page .why-card {
    --bg-light: var(--voilet-light);
    --color: var(--voilet);
    --border: var(--voilet-border);
    box-shadow: var(--shadow-card);
    padding: 20px;
    justify-content: start;
}

.color-section .why-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.why-card:hover {
    background-color: var(--bg-light);
    transform: translateY(-4px);
}

.why-card svg {
    --size: 44px;
    width: var(--size);
    height: var(--size);
    color: var(--color);
}

.about-page:not(.color-section) .why-card:hover svg {
    color: var(--bg-light);
}

.why-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-page .why-card h5 {
    font-size: 1.2rem;
}

.small-card .why-card h5 {
    font-size: 1rem;
}

.why-card p,
.why-card ul {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.service-page .why-card p {
    font-size: 0.9rem;
}

.why-icon-wrap {
    --size: 100px;
    width: var(--size);
    height: var(--size);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-page .why-icon-wrap {
    background-color: var(--bg-light);
    border-radius: var(--size);
}

.about-page:not(.color-section) .why-card:hover .why-icon-wrap {
    background-color: var(--color);
}

.why-icon-wrap svg {
    color: var(--color);
}

.empowers-professionals .why-card {
    box-shadow: var(--shadow-card);
}
.empowers-professionals .why-card .badge{
    color: var(--color) !important;
}
.empowers-professionals .why-icon-wrap,
.empowers-professionals .why-icon-wrap svg {
    --size: 55px;
}

.small-card .why-icon-wrap,
.small-card .why-icon-wrap svg {
    --size: 30px;
}

.color-section .why-icon-wrap {
    --size: 80px;
}

.color-section .why-icon-wrap svg {
    --size: 70px;
}

.service-page .why-icon-wrap {
    --size: 85px;
    flex-shrink: 0;
    background-color: var(--bg-light);
    margin-bottom: 0;
}

.small-card .why-icon-wrap {
    --size: 50px;
}

/* ========== OUR JOURNEY ========== */
.journey-section {
    background: var(--white);
}

.journey-wrapper {
    position: relative;
    display: grid;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.journey-line {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--text-muted) 0%,
            var(--blue-primary) 14.28%,

            var(--orange) 14.28%,
            var(--orange) 28.56%,

            var(--green) 28.56%,
            var(--green) 42.84%,

            var(--blue-primary) 42.84%,
            var(--blue-primary) 57.12%,

            var(--purple) 57.12%,
            var(--purple) 71.40%,

            var(--pink) 71.40%,
            var(--pink) 85.68%,

            var(--teal) 85.68%,
            var(--text-muted) 100%);
    z-index: 0;
}

.journey-line::before {
    content: '\f0d9';
    font-family: var(--fontawesome-font);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -17px;
    font-size: 1.6rem;
    color: var(--text-muted);
}

.journey-line::after {
    content: '\f105';
    font-family: var(--fontawesome-font);
    font-weight: 900;
    position: absolute;
    right: -6px;
    top: -17px;
    font-size: 1.6rem;
    color: var(--text-muted);
}

.journey-item {
    --color: var(--blue-primary);
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 130px;
    text-align: center;
}

.journey-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--white);
    color: var(--color);
    border: 3px solid var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: relative;
}

.journey-icon::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, .08);
}

@media (min-width: 767px) {
    .journey-item:not(:last-child) .journey-icon::after {
        content: '\f105';
        font-family: var(--fontawesome-font);
        font-weight: 900;
        position: absolute;
        color: inherit;
        font-size: 1rem;
        right: -76px;
        --size: 30px;
        width: var(--size);
        height: var(--size);
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--white);
    }
}

.journey-item h6 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.journey-item p {
    margin: 0;
    color: var(--text-muted);
}

/* ========== PROCESS SECTION ========== */
.journey-process {
    background: var(--bg-section);
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.process-item {
    width: 110px;
    text-align: center;
    position: relative;
}

.process-circle {
    --color: var(--voilet);
    --size: 72px;
    width: var(--size);
    height: var(--size);
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color);
    background: var(--white);
    border: 2px solid currentColor;
}

.process-circle::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: currentColor;
    opacity: .12;
}

.process-circle i {
    position: relative;
    z-index: 1;
    font-size: 28px;
    color: currentColor;
}

.step {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.process-item h6 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-dark);
    margin: 0;
}

.process-arrow {
    --color: var(--voilet);
    align-self: flex-start;
    padding-top: 28px;
    color: var(--color);
    font-size: 18px;
}

@media (max-width: 991px) {
    .slider-card-section .feature-card-content {
        padding: 20px;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        margin: 0;
    }

    .hero-trust {
        gap: 16px;
    }

    .btn-auth-wrapper {
        padding: 0.5rem 0.85rem;
        display: flex;
        gap: 0.6rem;
        flex-direction: column;
    }

    .navbar-toggler {
        --size: 40px;
        width: var(--size);
        height: var(--size);
        background: var(--blue-light);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .navbar-toggler svg {
        stroke: var(--blue-primary);
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .about-grid,
    .module-grid:not(.grid-5, .grid-6) {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .contact-card {
        padding: 20px;
    }

    .contact-us .hero-visual {
        padding: 20px;
    }

    .process-wrapper {
        gap: 24px;
    }

    .process-arrow {
        display: none;
    }

    .process-item {
        width: calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .process-item {
        width: 100%;
    }
}

/* ========== DASHBOARD SLIDER SECTION ========== */
.dashboard-slider .container {
    position: relative;
}

.dashboardSlider {
    padding: 0 5px 55px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    transition: .3s;
    box-shadow: var(--shadow-card);
}

.slider-card-section .feature-card {
    --color: var(--blue-dark);
    --bg-light: var(--blue-light);
    --border: var(--blue-border);
}

.slider-card-section .feature-card-content {
    display: flex;
    padding: 20px 40px;
    text-align: left;
    gap: 30px;
}

.slider-card-section .feature-card-content h3 {
    color: var(--color);
}

.slider-card-section img {
    border-top-right-radius: var(--radius);
    border-top-left-radius: var(--radius);
}

.slider-card-section .feature-icon-box {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-light);
    color: var(--color);
    border-radius: 10px;
}

.slider-card-section .feature-icon-box svg {
    --size: 30px;
    width: var(--size);
    height: var(--size);
}

.slider-card-section .feature-footer-content {
    position: relative;
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2;
    border-radius: var(--radius);
    height: 62px;
    margin-top: -15px;
}

.slider-card-section .feature-footer-content h6 {
    position: relative;
    padding: 0;
    color: var(--white);
}

.slider-card-section .feature-footer-content h6::before {
    content: '';
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card img {
    width: 100%;
    display: block;
}

.feature-card h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 18px;
    margin: 0;
}

.custom-arrow {
    --size: 45px;
    width: var(--size);
    height: var(--size);
    color: var(--blue-dark);
    font-weight: bold;
}

.custom-arrow::after {
    font-size: 22px;
    font-weight: 700;
}

.swiper-button-prev {
    left: -25px;
}

.swiper-button-next {
    right: -25px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 22px;
    border-radius: var(--radius);
    background: var(--blue-primary);
}

@media(max-width:991px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}


/* ========== MEET OUR TEAM ========== */

.meet-our-leadership-team h3 {
    font-weight: 600;
}

.meet-our-team {
    background-color: var(--bg-light);
}

.our-team-image {
    --size: 100px;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    margin-bottom: 16px;
    object-fit: contain;
    aspect-ratio: 1;
    overflow: hidden;
}

.our-team-card {
    background-color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 20px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    backdrop-filter: blur(6px);
    transition: all 0.22s;
}

.our-team-card h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.teams-card {
    background: var(--white);
    border: 1px solid var(--bg-light);
    border-radius: var(--radius);
    padding: 12px;
    height: 100%;
    transition: .3s ease;
    box-shadow: var(--shadow);
}

.team-img {
    border-radius: 12px;
    overflow: hidden;
    background: #f7f8fb;
    margin-bottom: 18px;
}

.team-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.teams-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #17356b;
    margin-bottom: 6px;
}

.designation {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    margin-bottom: 12px;
}

.team-info {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.team-info li {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.linkedin {
    width: 34px;
    height: 34px;
    background: #0A66C2;
    color: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.linkedin:hover {
    background: #084d93;
    color: #fff;
}

@media (max-width: 767px) {

    .team-card h5 {
        font-size: 17px;
    }

    .designation {
        font-size: 14px;
    }

    .team-info li {
        font-size: 13px;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: var(--white);
}

.testimonials-section .testimonial-card,
.cta-card {
    border-radius: var(--radius);
    background: var(--white);
    transition: .3s;
    box-shadow: var(--shadow-card);
    margin: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.stars {
    color: #ff9800;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 125px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #1f2d5a;
}

.user-info span {
    font-size: 13px;
    color: #777;
}

/* CTA Card */

.cta-card {
    background-color: var(--blue-primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.cta-card h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-orange {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--orange);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    transition: .3s;
}

.btn-orange:hover {
    background: var(--yellow);
    color: var(--white);
}

.explore-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.explore-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ========== STATS ========== */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-section .row {
    --color: var(--blue-primary);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stats-section.dark-mode .row {
    background-color: var(--blue-dark);
    --color: var(--white);
}

.stat-count-suffix {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color);
}

.stat-item {
    text-align: center;
}

.stat-val {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--color);
    display: inline-block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-icon {
    margin-bottom: 10px;
}

.stat-icon svg {
    --size: 72px;
    width: var(--size);
    height: var(--size);
    color: var(--color);
}

.dark-mode .stat-icon svg {
    --size: 45px;
}

.recognized-trusted .stat-icon {
    margin: 0;
}

.recognized-trusted .stat-icon svg {
    background-color: var(--bg-light);
    --color: var(--blue-dark);
    --size: 40px;
    padding: 10px;
    border-radius: var(--radius);
}

.recognized-trusted .stat-lbl {
    color: var(--blue-dark);
    margin: 0;
}

.recognized-trusted .row .reveal {
    align-items: center;
}

.stat-lbl {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dark-mode .stat-lbl {
    color: var(--white);
}

/* ========== FAQ + TESTIMONIALS ========== */
.faq-testimonial-section {
    background: var(--bg-section);
}

.faq-card {
    background-color: var(--bg-light);
    padding: 30px !important;
    margin: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.accordion-item {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    background: #fff !important;
    color: var(--text-dark) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--blue-primary) !important;
}

.accordion-body {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 12px 20px 18px;
}

.testimonial-tabs .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 6px 18px !important;
    color: var(--text-muted) !important;
    border: 1.5px solid var(--border);
    margin-right: 8px;
    background: #fff;
    transition: all 0.2s;
}

.testimonial-tabs .nav-link.active {
    background: var(--blue-primary) !important;
    color: #fff !important;
    border-color: var(--blue-primary);
}

.testimonial-card {
    background-color: var(--voilet-light);
    padding: 30px !important;
    margin: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-left: 20px;
}

.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-card);
    border: 1.5px solid var(--border);
    height: 100%;
}

.testi-avatar {
    --bg-light: var(--blue-light);
    --color: var(--blue-primary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    background: var(--bg-light);
    color: var(--color);
}

.testi-avatar img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: inherit;
    object-position: top center;
}

.testi-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin: 8px 0;
}

.testi-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

/* ========== CTA ========== */
.cta-section {
    background-color: var(--bg-section);
    position: relative;
    padding: 0 100px;
}

.cta-section .container-fluid>.row {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-primary) 50%, var(--purple) 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
}

.cta-section p {
    color: var(--white);
    margin-bottom: 0;
}

.btn-cta {
    background: var(--yellow);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-cta:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

/* ========== FOOTER ========== */
footer {
    background: var(--navy);
    padding: 56px 0 30px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
    margin-bottom: 14px;
    max-width: 220px;
    text-align: center;
}

.footer-logo p {
    font-size: 0.8rem;
}

footer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.footer-contact-item a {
    color: inherit;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--yellow);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 28px 0 22px;
}

.footer-bottom {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    cursor: pointer;
}

.social-icon a {
    line-height: 0;
}

.social-icon:hover {
    background: var(--blue-primary);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ========== UTILS ========== */
.text-center-mob {
    text-align: center;
}

.btn-learn {
    background: var(--blue-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-learn:hover {
    background: var(--blue-dark);
    color: #fff;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 0;
    }

    .cta-section {
        margin: 0;
    }

    .testimonial-card {
        margin-left: 0;
    }

    section {
        padding: 50px 0;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-card {
        display: none;
    }

    .dash-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== SCROLL ANIMATE ========== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-section .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    gap: 8px;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* counter animation */
.count-val {
    font-variant-numeric: tabular-nums;
}