/*=========================================
    GOOGLE FONT
=========================================*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

/*=========================================
    ROOT
=========================================*/
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --text: #475569;
    --light: #f8fafc;
    --border: #e2e8f0;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #f8fbff;
    color: var(--secondary);
    overflow-x: hidden;
}

/*=========================================
    BACKGROUND
=========================================*/

body::before {
    content: "";

    position: fixed;

    width: 700px;
    height: 700px;

    background: #dbeafe;

    border-radius: 50%;

    filter: blur(150px);

    top: -250px;
    right: -180px;

    z-index: -2;
}

body::after {
    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    background: #bfdbfe;

    border-radius: 50%;

    filter: blur(140px);

    bottom: -220px;
    left: -160px;

    z-index: -2;
}

/*=========================================
    NAVBAR
=========================================*/

.jm-navbar {
    padding: 18px 0;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.logo-blue {
    color: var(--primary);
}

.navbar-brand {
    font-size: 32px;
    font-weight: 800;

    color: var(--secondary) !important;
}

.navbar-nav {
    gap: 15px;
}

.nav-link {
    color: #334155 !important;

    font-size: 15px;

    font-weight: 600;

    position: relative;
}

.nav-link::after {
    content: "";

    width: 0;

    height: 2px;

    background: var(--primary);

    position: absolute;

    left: 0;
    bottom: -6px;

    transition: 0.35s;
}

.nav-link:hover::after {
    width: 100%;
}

.login-btn {
    color: #334155;

    text-decoration: none;

    font-weight: 600;
}

.primary-btn {
    background: var(--primary);

    color: #fff;

    padding: 14px 28px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.35s;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);

    color: #fff;

    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.25);
}

/*=========================================
    HERO
=========================================*/

.hero {
    padding-top: 180px;
    padding-bottom: 110px;

    position: relative;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    background: #eff6ff;

    color: #2563eb;

    padding: 10px 18px;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 28px;
}

.hero h1 {
    font-size: 64px;

    font-weight: 800;

    line-height: 1.12;

    color: #0f172a;
}

.hero h1 span {
    color: #2563eb;
}

.hero p {
    margin-top: 28px;

    color: #64748b;

    line-height: 1.9;

    font-size: 18px;

    max-width: 560px;
}

.hero-buttons {
    display: flex;

    gap: 16px;

    margin-top: 40px;
}

.secondary-btn {
    border: 1px solid #dbe4f3;

    color: #334155;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 14px;

    font-weight: 700;

    transition: 0.3s;

    background: #fff;
}

.secondary-btn:hover {
    background: #2563eb;

    color: #fff;

    border-color: #2563eb;
}

.hero-rating {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 35px;
}

.stars {
    color: #fbbf24;

    font-size: 18px;
}

.hero-rating span {
    color: #64748b;

    font-weight: 600;
}

/*=========================================
    HERO STATS
=========================================*/

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}

.stat {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    padding: 20px 24px;
    min-width: 130px;
    transition: 0.35s;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
}

.stat h3 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat span {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

/*=========================================
    DASHBOARD
=========================================*/

.dashboard-card {
    position: relative;

    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 28px;

    padding: 30px;

    max-width: 480px;

    margin: auto;

    box-shadow:
        0 40px 80px rgba(15, 23, 42, 0.08),
        0 10px 30px rgba(37, 99, 235, 0.08);

    animation: floatCard 5s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 28px;
}

.dashboard-header small {
    color: #64748b;
}

.dashboard-header h5 {
    font-weight: 700;
    margin-top: 4px;
}

.online-dot {
    width: 12px;
    height: 12px;

    background: #22c55e;

    border-radius: 50%;

    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.15);
}

.dashboard-box {
    background: #fff;

    border-radius: 18px;

    padding: 18px 20px;

    margin-bottom: 16px;

    border: 1px solid var(--border);

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: 0.3s;
}

.dashboard-box:hover {
    transform: translateY(-4px);

    border-color: #2563eb;

    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
}

.dashboard-box strong {
    color: var(--primary);
    font-size: 20px;
}

.dashboard-box i {
    color: var(--primary);
    font-size: 22px;
    margin-right: 10px;
}

.progress {
    width: 160px;
    height: 8px;
    border-radius: 30px;
    overflow: hidden;
    background: #e2e8f0;
}

.progress-bar {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

/*=========================================
    TRUSTED
=========================================*/

.trusted {
    padding: 70px 0;

    border-top: 1px solid #eef2f7;

    text-align: center;
}

.trusted p {
    color: #64748b;

    margin-bottom: 30px;

    font-weight: 600;
}

.company-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 45px;
}

.company-list span {
    font-size: 20px;

    font-weight: 700;

    color: #94a3b8;

    transition: 0.3s;
}

.company-list span:hover {
    color: #2563eb;
}

/*=========================================
    ANIMATION
=========================================*/

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*=========================================
    RESPONSIVE
=========================================*/

@media (max-width: 991px) {
    .hero {
        padding-top: 140px;
        text-align: center;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        margin: auto;
        margin-top: 25px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-rating {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .dashboard-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 26px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .dashboard-card {
        padding: 22px;
    }

    .company-list {
        gap: 22px;
    }

    .company-list span {
        font-size: 16px;
    }

    .stat {
        width: 100%;
    }
}

/*=========================================
    TRUSTED SECTION
=========================================*/

.trusted-section {
    padding: 100px 0;
    background: #fff;
}

.trusted-heading {
    text-align: center;
    max-width: 760px;
    margin: auto;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: #eef4ff;
    color: #2563eb;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.trusted-heading h2,
.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.trusted-heading p,
.section-title p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
}

/*=========================================
    LOGO SLIDER
=========================================*/

.logo-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    width: 180px;
    height: 90px;

    background: #fff;

    border: 1px solid #edf2f7;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.35s;

    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.logo-item:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);

    border-color: #2563eb;
}

.logo-item img {
    width: 120px;
    opacity: 0.75;
    transition: 0.3s;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/*=========================================
    SERVICES
=========================================*/

.services {
    padding: 110px 0;
    background: #f8fbff;
}

.section-title {
    max-width: 760px;
    text-align: center;
    margin: auto;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    height: 100%;

    transition: 0.35s;

    border: 1px solid #edf2f7;

    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);

    border-color: #2563eb;
}

.service-card .icon {
    width: 70px;
    height: 70px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #2563eb, #60a5fa);

    color: #fff;

    font-size: 30px;

    margin-bottom: 28px;
}

.service-card h4 {
    font-size: 24px;

    font-weight: 700;

    margin-bottom: 18px;

    color: #0f172a;
}

.service-card p {
    color: #64748b;

    line-height: 1.8;

    margin: 0;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media (max-width: 991px) {
    .trusted-heading h2,
    .section-title h2 {
        font-size: 36px;
    }

    .logo-item {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .trusted-section,
    .services {
        padding: 70px 0;
    }

    .trusted-heading h2,
    .section-title h2 {
        font-size: 30px;
    }

    .logo-item {
        width: 140px;
        height: 75px;
    }

    .logo-item img {
        width: 90px;
    }

    .service-card {
        padding: 30px 24px;
    }
}

.service-hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.7s ease;
}

.service-show {
    opacity: 1;
    transform: translateY(0);
}

/*=========================================
CAREER JOURNEY
=========================================*/

.career-journey {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

.journey-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 80px;
    position: relative;
}

.journey-line {
    position: absolute;
    top: 50px;
    left: 12%;
    width: 76%;
    height: 4px;

    background: linear-gradient(90deg, #2563eb, #60a5fa);

    z-index: 0;
}

.journey-step {
    position: relative;
    z-index: 2;

    background: #fff;

    border-radius: 24px;

    padding: 35px 28px;

    text-align: center;

    transition: 0.35s;

    border: 1px solid #edf2f7;

    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.journey-step:hover {
    transform: translateY(-12px);

    box-shadow: 0 35px 70px rgba(37, 99, 235, 0.12);
}

.step-number {
    position: absolute;

    right: 18px;
    top: 18px;

    color: #dbeafe;

    font-size: 34px;

    font-weight: 800;
}

.step-icon {
    width: 90px;
    height: 90px;

    border-radius: 50%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #2563eb, #60a5fa);

    color: #fff;

    font-size: 36px;

    margin-bottom: 28px;
}

.journey-step h4 {
    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;
}

.journey-step p {
    color: #64748b;

    line-height: 1.8;
}

@media (max-width: 991px) {
    .journey-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .journey-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .journey-wrapper {
        grid-template-columns: 1fr;
    }
}

.journey-hidden {
    opacity: 0;
    transform: translateY(70px);

    transition: 0.8s ease;
}

.journey-show {
    opacity: 1;
    transform: translateY(0);
}

.ai-dashboard {
    padding: 120px 0;

    background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.career-dashboard {
    background: #fff;

    padding: 35px;

    border-radius: 30px;

    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08);
}

.dashboard-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.dash-card {
    padding: 25px;

    border-radius: 22px;

    background: #f8fbff;

    border: 1px solid #edf2f7;

    transition: 0.35s;
}

.dash-card:hover {
    transform: translateY(-8px);

    border-color: #2563eb;

    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.score {
    background: linear-gradient(135deg, #2563eb, #4f8cff);

    color: #fff;
}

.resume {
    background: #eef7ff;
}

.skills ul {
    padding-left: 18px;

    margin-top: 15px;
}

.progress {
    height: 10px;

    border-radius: 50px;

    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

@media (max-width: 991px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.dash-hidden {
    opacity: 0;

    transform: translateY(40px);

    transition: 0.8s;
}

.dash-show {
    opacity: 1;

    transform: translateY(0);
}

.why-jobmint {
    padding: 120px 0;
    background: #fff;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.bento-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 28px;
    padding: 35px;
    transition: 0.35s;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
    border-color: #2563eb;
}

.bento-card.large {
    min-height: 300px;
}

.bento-card.wide {
    grid-column: 1 / -1;
}

.bento-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px;
}

.bento-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bento-card p {
    color: #64748b;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.wide {
        grid-column: auto;
    }
}

.success-stories {
    padding: 120px 0;

    background: #f8fbff;
}

.testimonial-card {
    background: #fff;

    border-radius: 30px;

    padding: 35px;

    height: 100%;

    border: 1px solid #edf2f7;

    transition: 0.35s;

    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.12);
}

.profile {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;
}

.profile img {
    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;
}

.profile h5 {
    margin-bottom: 5px;

    font-weight: 700;
}

.profile span {
    color: #64748b;
}

.salary-tag {
    display: inline-block;

    margin-top: 25px;

    background: #eef4ff;

    color: #2563eb;

    padding: 10px 18px;

    border-radius: 30px;

    font-weight: 700;
}

/*==========================
WHY CHOOSE
===========================*/

.why-choose {
    padding: 120px 0;
    background: #fff;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

/*==========================
GRID
===========================*/

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

/*==========================
CARD
===========================*/

.feature-card {
    background: #fff;

    border-radius: 24px;

    border: 1px solid #eef2f7;

    padding: 34px;

    display: flex;

    align-items: center;

    gap: 22px;

    transition: 0.35s;

    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);

    border-color: #2563eb;
}

/*==========================
ICON
===========================*/

.icon-box {
    width: 72px;
    height: 72px;

    min-width: 72px;

    border-radius: 18px;

    background: #eef4ff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #2563eb;

    font-size: 34px;

    transition: 0.35s;
}

.feature-card:hover .icon-box {
    background: #2563eb;

    color: #fff;
}

/*==========================
TEXT
===========================*/

.content h4 {
    font-size: 24px;

    font-weight: 700;

    margin-bottom: 10px;

    color: #111827;
}

.content p {
    margin: 0;

    font-size: 16px;

    line-height: 1.7;

    color: #6b7280;
}

/*==========================
BOTTOM CARD
===========================*/

.feature-wide {
    grid-column: 2 / 4;
}

/*==========================
RESPONSIVE
===========================*/

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-wide {
        grid-column: auto;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        flex-direction: column;

        text-align: center;

        padding: 28px;
    }

    .icon-box {
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 30px;
    }
}

/*==============================
SUCCESS SECTION
==============================*/

.success-section {
    padding: 120px 0;

    background: #f8fbff;
}

.success-card {
    position: relative;

    background: #fff;

    border-radius: 28px;

    padding: 35px;

    height: 100%;

    border: 1px solid #edf2f7;

    transition: 0.35s;

    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
}

.success-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);

    border-color: #2563eb;
}

.quote-icon {
    position: absolute;

    top: 25px;

    right: 25px;

    color: #4ade80;

    font-size: 34px;
}

.profile {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;
}

.profile img {
    width: 72px;

    height: 72px;

    border-radius: 50%;

    object-fit: cover;
}

.profile h5 {
    margin: 0;

    font-size: 22px;

    font-weight: 700;
}

.profile span {
    display: block;

    color: #374151;

    font-weight: 600;
}

.profile small {
    color: #6b7280;
}

.success-card p {
    font-size: 18px;

    color: #4b5563;

    line-height: 1.8;

    margin: 25px 0;
}

.result-badge {
    display: inline-block;

    padding: 10px 22px;

    background: #eef4ff;

    color: #2563eb;

    border-radius: 30px;

    font-weight: 700;
}

/*==============================
DOTS
==============================*/

.slider-dots {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 45px;
}

.slider-dots span {
    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #d1d5db;

    transition: 0.3s;
}

.slider-dots .active {
    width: 38px;

    border-radius: 20px;

    background: #2563eb;
}

/*==============================
RESPONSIVE
==============================*/

@media (max-width: 991px) {
    .success-card {
        margin-bottom: 20px;
    }
}

.swiper-slide {
    opacity: 0.45;

    transform: scale(0.9);

    transition: 0.45s;
}

.swiper-slide-active {
    opacity: 1;

    transform: scale(1);
}

.swiper-slide-active .success-card {
    box-shadow: 0 25px 80px rgba(37, 99, 235, 0.18);

    border: 1px solid #2563eb;
}

.verified {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #ecfdf5;

    color: #16a34a;

    padding: 8px 14px;

    border-radius: 30px;

    font-weight: 600;

    font-size: 13px;

    margin-bottom: 20px;
}

.verified i {
    font-size: 16px;
}

.company img {
    height: 18px;

    margin-top: 6px;

    opacity: 0.75;

    filter: grayscale(100%);
}
.rating {
    margin: 20px 0;

    color: #fbbf24;

    font-size: 15px;
}

.success-card {
    padding: 40px;

    border-radius: 30px;

    background: white;

    transition: 0.4s;
}

/*==========================
FAQ + CTA
==========================*/

.faq-cta-section {
    padding: 120px 0;

    background: #fff;
}

/* FAQ */

.faq-box {
    background: #fff;

    padding: 45px;

    border-radius: 30px;

    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.custom-accordion .accordion-item {
    border: none;

    margin-bottom: 15px;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.05);
}

.custom-accordion .accordion-button {
    background: #fff;

    font-size: 18px;

    font-weight: 700;

    padding: 22px;

    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #2563eb;

    background: #fff;
}

.custom-accordion .accordion-body {
    padding: 22px;

    color: #64748b;

    line-height: 1.8;
}

/* CTA */

.cta-box {
    background: linear-gradient(135deg, #08132d, #0e214d);

    color: #fff;

    border-radius: 30px;

    padding: 50px;

    position: relative;

    overflow: hidden;
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -120px;
    top: -120px;

    border: 2px dashed rgba(255, 255, 255, 0.15);

    border-radius: 50%;
}

.cta-box h2 {
    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;
}

.cta-box p {
    color: #d7e3ff;

    margin: 25px 0;

    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;

    align-items: center;

    padding: 16px 30px;

    background: #2563eb;

    color: #fff;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.35s;
}

.cta-btn:hover {
    background: #3b82f6;

    color: #fff;

    transform: translateY(-4px);
}

.cta-box small {
    display: block;

    margin-top: 20px;

    color: #d7e3ff;
}

.hero-person {
    max-height: 370px;
}

/*===============================
FOOTER
================================*/

.footer {
    background: #07142a;

    padding: 80px 0 35px;

    color: #fff;
}

.footer-logo img {
    height: 42px;

    margin-bottom: 25px;
}

.footer-text {
    color: #aeb9cc;

    line-height: 1.9;

    margin-bottom: 25px;

    max-width: 260px;
}

.footer h5 {
    font-size: 20px;

    margin-bottom: 25px;

    font-weight: 700;
}

.footer ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li a {
    color: #aeb9cc;

    text-decoration: none;

    transition: 0.3s;
}

.footer ul li a:hover {
    color: #fff;

    padding-left: 6px;
}

.social-links {
    display: flex;

    gap: 14px;

    margin-bottom: 30px;
}

.social-links a {
    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    transition: 0.3s;
}

.social-links a:hover {
    background: #2563eb;

    transform: translateY(-4px);
}

.newsletter {
    display: flex;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    margin-top: 20px;
}

.newsletter input {
    flex: 1;

    height: 58px;

    border: none;

    outline: none;

    background: #13233f;

    color: #fff;

    padding: 0 20px;
}

.newsletter input::placeholder {
    color: #93a4bf;
}

.newsletter button {
    border: none;

    background: #2563eb;

    color: #fff;

    width: 150px;

    font-weight: 700;

    transition: 0.3s;
}

.newsletter button:hover {
    background: #3b82f6;
}

.made-india {
    margin-top: 40px;

    text-align: right;

    color: #aeb9cc;
}

.copyright {
    color: #8e9cb5;

    margin-top: 25px;

    font-size: 14px;
}

/*===========================
Responsive
===========================*/

@media (max-width: 991px) {
    .footer {
        text-align: center;
    }

    .footer-text {
        margin: auto auto 25px;
    }

    .social-links {
        justify-content: center;
    }

    .made-india {
        text-align: center;

        margin-top: 30px;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input {
        width: 100%;
    }

    .newsletter button {
        width: 100%;

        height: 55px;
    }
}

/*=========================================
PREMIUM SERVICES
=========================================*/

.premium-services {
    padding: 120px 0;

    background: linear-gradient(180deg, #ffffff, #f8fbff);

    position: relative;

    overflow: hidden;
}

/* Background Blur */

.premium-services::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: #dbeafe;

    border-radius: 50%;

    filter: blur(150px);

    top: -250px;

    right: -250px;

    z-index: 0;
}

.premium-services .container {
    position: relative;

    z-index: 2;
}

/*=========================================
GRID
=========================================*/

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin-top: 70px;
}

/*=========================================
CARD
=========================================*/

.service-card {
    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.65);

    border-radius: 28px;

    padding: 35px;

    transition: 0.4s;

    position: relative;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

/* Shine Effect */

.service-card::before {
    content: "";

    position: absolute;

    left: -120%;

    top: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);

    transition: 0.8s;
}

.service-card:hover::before {
    left: 120%;
}

.service-card:hover {
    transform: translateY(-10px);

    border-color: #2563eb;

    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.15);
}

/*=========================================
LARGE CARD
=========================================*/

.service-large {
    grid-column: span 2;

    display: flex;

    align-items: center;

    gap: 30px;

    background: linear-gradient(135deg, #08142b, #0d214a);
}

.service-large h3 {
    color: #ffffff !important;
}

/*=========================================
VIDEO CARD
=========================================*/

.service-video {
    grid-column: 1/-1;

    background: linear-gradient(135deg, #08142b, #0d214a);

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 50px;
}

.service-video p {
    color: #d5e3ff;
}

.service-video .primary-btn {
    white-space: nowrap;
}

/*=========================================
ICON
=========================================*/

.service-icon {
    width: 82px;

    height: 82px;

    border-radius: 22px;

    background: linear-gradient(135deg, #2563eb, #60a5fa);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 34px;

    transition: 0.4s;

    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

/*=========================================
LABEL
=========================================*/

.service-label {
    display: inline-block;

    background: #eef4ff;

    color: #2563eb;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 15px;
}

/*=========================================
TEXT
=========================================*/

.service-card h3 {
    font-size: 30px;

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 22px;

    font-weight: 700;

    margin: 22px 0 15px;

    color: #0f172a;
}

.service-card p {
    color: #64748b;

    line-height: 1.8;

    margin-bottom: 0;
}

.service-content a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    color: #2563eb;

    font-weight: 700;

    text-decoration: none;
}

.service-content a i {
    transition: 0.3s;
}

.service-content a:hover i {
    transform: translateX(6px);
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-large,
    .service-video {
        grid-column: auto;

        flex-direction: column;

        text-align: center;
    }

    .service-video {
        padding: 40px 30px;
    }

    .service-video .primary-btn {
        margin-top: 25px;
    }
}

/*=============================
INDUSTRIES
=============================*/

.industries-section {
    padding: 120px 0;

    background: #f8fbff;
}

.industries-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin-top: 70px;
}

.industry-card {
    background: #fff;

    border-radius: 24px;

    padding: 35px 30px;

    text-align: center;

    border: 1px solid #edf2f7;

    transition: 0.35s;

    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}

.industry-card:hover {
    transform: translateY(-10px);

    border-color: #2563eb;

    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
}

.industry-card i {
    width: 80px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    border-radius: 20px;

    background: linear-gradient(135deg, #2563eb, #60a5fa);

    color: #fff;

    font-size: 34px;

    margin-bottom: 25px;
}

.industry-card h4 {
    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

    color: #0f172a;
}

.industry-card p {
    color: #64748b;

    line-height: 1.8;
}

@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Mega Menu */

.mega-menu{
    width:900px;
    left:50%;
    top: 65%;
    transform:translateX(-50%);
    margin-top:15px;
    border-radius:20px;
    background:#fff;
}

.mega-title{
    color:#0d6efd;
    font-weight:700;
    margin-bottom:15px;
    font-size:18px;
}

.mega-menu .dropdown-item{
    padding:10px 0;
    font-size:15px;
    color:#555;
    transition:.3s;
    border-radius:8px;
}

.mega-menu .dropdown-item:hover{
    color:#0d6efd;
    padding-left:10px;
    background:#f5f9ff;
}

.dropdown-menu{
    border-radius:15px;
    padding:15px;
}

.dropdown-item{
    padding:10px 15px;
}

.dropdown-item:hover{
    background:#f4f8ff;
    color:#0d6efd;
}

.navbar .dropdown:hover>.dropdown-menu{
    display:block;
}

.navbar .dropdown-toggle::after{
    margin-left:6px;
}

@media (max-width:991.98px){

    .mega-menu{

        width:100% !important;

        position:static !important;

        transform:none !important;

        left:0 !important;

        top:0 !important;

        margin-top:0 !important;

        box-shadow:none !important;

        border:none !important;

        padding:10px 15px !important;

    }

    .mega-menu .row{

        display:block;

    }

    .mega-menu .col-lg-4{

        width:100%;

        margin-bottom:20px;

    }

    .mega-title{

        margin-top:10px;

        font-size:16px;

    }

    .navbar .dropdown:hover>.dropdown-menu{
        display:block;
    }

    .navbar-collapse{

        max-height:calc(100vh - 75px);
        overflow-y:auto;
        overflow-x:hidden;

    }


}
