/* ========== CSS VARIABLES & ROOT ========== */
:root {
    --primary: #085998;
    --dark-navy: #042260;
    --neutral: #4E4F51;
    --white: #ffffff;
    --light-bg: #f4f8fd;
    --light-gray: #eef2f8;
    --border: rgba(8, 89, 152, 0.12);
    --shadow-sm: 0 4px 20px rgba(4, 34, 96, 0.08);
    --shadow-md: 0 8px 40px rgba(4, 34, 96, 0.14);
    --shadow-lg: 0 20px 60px rgba(4, 34, 96, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif !important;
}

/* ========== GLOBAL RESET & BASE ============= */
*,
*::before,
*::after {
    box-sizing: border-box !important;

}

a {
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font);
    color: var(--neutral);
    background: var(--white);
    line-height: 1.7;


}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
    color: var(--dark-navy);
    line-height: 1.25;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;

}

.section-pad {
    padding: 90px 0;
}

/* Section label */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(8, 89, 152, 0.08);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 14px;
    border: 1px solid rgba(8, 89, 152, 0.15);
}

.section-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
    line-height: 1.22;
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-subtitle {
    font-size: 15.5px;
    color: var(--neutral);
    max-width: 600px;
    line-height: 1.75;
}

/* Divider accent */
.title-divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--dark-navy));
    border-radius: 4px;
    margin-bottom: 24px;
}

/* Buttons */
.btn-primary-solid {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14.5px;
    border: none;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 22px rgba(8, 89, 152, 0.38);
    transition: var(--transition);
}

.btn-primary-solid:hover {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(8, 89, 152, 0.5);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14.5px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    letter-spacing: 0.4px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14.5px;
    border: 2px solid var(--primary);
    letter-spacing: 0.4px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(8, 89, 152, 0.35);
}

/* ========================================
       NAVBAR
    ======================================== */
.navbar-main {
    background: #ffffff77;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}


.navbar-main.scrolled {
    background: #ffffffcc;
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(4, 34, 96, 0.25);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), #1a7ad4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 4px 14px rgba(8, 89, 152, 0.4);
}

.navbar-brand img {
    height: 90px;
}




.navbar-brand .brand-tagline {
    font-size: 9.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-link-main {
    color: rgba(0, 0, 0, 0.85) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link-main::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link-main:hover {
    color: var(--primary) !important;
}

.nav-link-main:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--dark-navy));
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13.5px;
    border: none;
    box-shadow: 0 4px 16px rgba(8, 89, 152, 0.4);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #0a6cb8, #053080) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.mobile_h {
    min-height: 100vh;
}

/* ================= HERO / SWIPER SLIDER =================== */
.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 680px;
}

.swiper-slide.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Individual slide backgrounds via inline-style-like classes */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 8s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(4, 34, 96, 0.88) 0%,
            rgba(8, 89, 152, 0.70) 55%,
            rgba(4, 34, 96, 0.40) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    transition: var(--transition);
}

.hero-email a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.hero-email:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.hero-email i {
    color: #A8DCFF;
    font-size: 0.95rem;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: #4fc3f7;
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.6);
    }
}

.hero-title {
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.13;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero-title .accent {
    background: linear-gradient(135deg, #7ec8f4, #a8d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.88);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 500;
    transition: var(--transition);
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    transform: translateY(-1px);
}

.hero-tag-section {
    background: var(--white);
    padding-top: 60px;
    padding-bottom: 60px;
}

.tag-card {
    background: #fff;
    border: 1px solid rgba(8, 89, 152, 0.12);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: 0 12px 32px rgba(8, 89, 152, 0.06);
    transition: var(--transition);
    min-height: 220px;
}

.tag-card:hover {
    transform: translateY(-4px);
    border-color: rgba(8, 89, 152, 0.2);
}

.tag-card h3 {
    font-size: 18.5px;
    margin-bottom: 12px;
    color: var(--dark-navy);
}

.tag-card p {
    color: var(--neutral);
    line-height: 1.75;
    margin-bottom: 0;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Swiper custom pagination & nav */
.hero-swiper .swiper-pagination {
    bottom: 36px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--white);
    width: 28px;
    border-radius: 4px;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 900;
}

/* Hero image card floater */
.hero-float-card {
    position: relative;
    z-index: 2;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-stat-chip {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat-chip.chip-top {
    top: 24px;
    right: -10px;
}

.hero-stat-chip.chip-bottom {
    bottom: 24px;
    left: -10px;
}

.chip-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chip-icon.blue {
    background: rgba(8, 89, 152, 0.1);
    color: var(--primary);
}

.chip-icon.navy {
    background: rgba(4, 34, 96, 0.1);
    color: var(--dark-navy);
}

.chip-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1;
}

.chip-label {
    font-size: 11px;
    color: var(--neutral);
    font-weight: 500;
    white-space: nowrap;
}

/* ========================================
       TRUST BAR
    ======================================== */
.trust-bar {
    background: var(--dark-navy);
    padding: 22px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    overflow-x: hidden;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    font-weight: 500;
    position: relative;
}

.trust-item+.trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.trust-item i {
    font-size: 16px;
    color: #4fc3f7;
}

/* ================= ABOUT SECTION ============== */
.about-section {
    background: var(--white);
}

.about-img-col {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-badge-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 220px;
}

.about-badge-card .num {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.about-badge-card .label {
    font-size: 13px;
    color: var(--neutral);
    font-weight: 500;
    margin-top: 4px;
}

.about-accent-bar {
    width: 5px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary), var(--dark-navy));
    border-radius: 5px;
    margin-right: 18px;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-navy);
    margin: 5px 4px;
    transition: var(--transition);
}

.value-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.value-chip i {
    color: var(--primary);
    font-size: 13px;
}

.value-chip:hover i {
    color: var(--white);
}

/* ==================== WHY CHOOSE SECTION ===================== */
.why-section {
    background: var(--light-bg);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--dark-navy));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(8, 89, 152, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(8, 89, 152, 0.1), rgba(4, 34, 96, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 18px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--dark-navy));
    color: var(--white);
}

.feature-card h4 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--neutral);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
       SERVICES SECTION
    ======================================== */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    cursor: default;
    position: relative;
}

.service-card:hover {
    background: linear-gradient(145deg, var(--dark-navy), var(--primary));
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card .svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .svc-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-card:hover h4 {
    color: var(--white);
}

.service-card p {
    font-size: 13.5px;
    color: var(--neutral);
    line-height: 1.7;
    margin: 0;
    transition: var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.78);
}

.service-card .svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .svc-arrow {
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
       INDUSTRY EXPERTISE SECTION
    ======================================== */
.industry-section {
    background: var(--light-bg);
}

.industry-img-col {
    position: relative;
}

.industry-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.industry-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    margin: 0 auto;
}

.industry-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.industry-list-item {
    display: flex;
    align-items: center;
    text-align: start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: default;
}

.industry-list-item:hover {
    border-color: var(--primary);
    background: rgba(8, 89, 152, 0.03);
    transform: translateX(4px);
}

.industry-list-item i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--dark-navy));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.industry-list-item span {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--dark-navy);
}

/* ========================================
       STATISTICS / COUNTER SECTION
    ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-num {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-plus {
    font-size: 30px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.7);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-top: 8px;
}

.stat-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 12px;
}

/* ========================================
       EXPERTISE SECTION (Tech & Leadership)
    ======================================== */
.expertise-section {
    background: var(--white);
}

.expertise-tab {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
}

.expertise-tab h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise-tab h4 i {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--dark-navy));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.expertise-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-navy);
    margin: 4px 3px;
    transition: var(--transition);
}

.expertise-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.expertise-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.expertise-tag:hover::before {
    background: rgba(255, 255, 255, 0.7);
}

/* ========================================
       RECENT PLACEMENTS
    ======================================== */
.placements-section {
    background: var(--light-bg);
}

.placement-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.placement-chip:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.placement-chip .role-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(8, 89, 152, 0.1), rgba(4, 34, 96, 0.06));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.placement-chip .role-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
}

/* ========================================
       MISSION / VISION SECTION
    ======================================== */
.mission-section {
    background: linear-gradient(150deg, var(--dark-navy) 0%, #0a2d7a 60%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mv-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    height: 100%;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 22px;
}

.mv-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin: 0;
}

/* ========================================
       CTA BANNER
    ======================================== */
.cta-section {
    background: var(--white);
}

.cta-inner {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 30%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 500px;
    line-height: 1.75;
}

/* ========================================
       FOOTER
    ======================================== */
.footer-main {
    background: var(--dark-navy);
    padding: 72px 0 0;
}

.footer-brand img {
    height: 120px;
}


.footer-brand .brand-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 14px 0 22px;
    max-width: 280px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-link::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 48px 0 0;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* ========================================
       ANIMATIONS & MISC
    ======================================== */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
}

.swiper-slide-active .hero-animate {
    animation: slideUp 0.7s ease forwards;
}

.swiper-slide-active .hero-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.swiper-slide-active .hero-animate:nth-child(2) {
    animation-delay: 0.25s;
}

.swiper-slide-active .hero-animate:nth-child(3) {
    animation-delay: 0.4s;
}

.swiper-slide-active .hero-animate:nth-child(4) {
    animation-delay: 0.55s;
}

.swiper-slide-active .hero-animate:nth-child(5) {
    animation-delay: 0.65s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide-active .hero-float-card {
    animation: fadeIn 0.8s ease 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
       RESPONSIVE
    ======================================== */
@media (max-width: 991px) {
    .section-pad {
        padding: 64px 0;
    }

    .hero-swiper {
        height: auto;
        min-height: 100vh;
    }

    .hero-float-card {
        margin-top: 40px;
    }

    .about-badge-card {
        right: 0;
        bottom: -10px;
    }

    .stat-item+.stat-item::before {
        display: none;
    }

    .cta-inner {
        padding: 48px 32px;
    }

    .hero-stat-chip.chip-top {
        right: 0;
    }

    .hero-stat-chip.chip-bottom {
        left: 0;
    }

    .nav-link-main {
        color: #fff !important;
    }

    .navbar-main {
        position: static;
    }

    .hero-content {
        padding-top: 10px !important;
        padding-bottom: 0 !important;
    }

    .navbar-toggler {
        background-color: var(--primary) !important;
        padding: 8px 8px !important;
        border-radius: 6px !important;
    }

    .navbar-brand img {
        height: 70px;
    }
    .footer-social {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {

    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 25px !important;
    }

    .hero-title br {
        display: none;
    }



    .navbar-brand img {
        height: 60px;
    }

    .section-pad {
        padding: 52px 0;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 44px);
    }

    .hero-swiper {
        height: auto;
         min-height: auto !important;
    }

    .cta-inner {
        padding: 36px 22px;
    }

    .footer-main {
        padding: 52px 0 0;
    }

    .hero-img-wrap img {
        height: 280px;
    }

    .about-img-main img {
        height: 320px;
    }

    .industry-img-main img {
        height: 300px;
    }

    .industry-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .industry-list-item {
        display: block;
        text-align: start;
    }

    .industry-list-item span {
        margin-top: 15px;
        display: inline-block;
    }

    .trust-bar-inner {
        display: block;
        flex-wrap: wrap;
        gap: 0;
    }

    .trust-item {
        padding: 8px 12px;
        font-size: 12.5px;
    }

    .hero-swiper {
        height: auto;
        min-height: auto !important;
        /* padding-bottom: 50px !important; */
    }

    .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        padding: 10px;
    }

    .moblie-bannerbtn {
        padding: 10px 15px !important;
        font-size: 15px !important;
    }

    .hero-content {
        padding-top: 10px !important;
        padding-bottom: 0 !important;
    }

    .navbar-main {
        position: static;
    }

    .navbar-toggler {
        background-color: var(--primary) !important;
        padding: 8px 10px !important;
        border-radius: 6px !important;
    }

    .corevlaue {
        text-align: center;
        padding-bottom: 20px;
    }

    .value-chip {
        width: 46%;
    }

    .mobilebtn {
        text-align: center;
    }

    .slide-bg{
        height: 100vh !important;
    }

    /* .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction{
        display: none !important;
    } */
}

@media (max-width: 370px) {
    .hero-btns {
        flex-wrap: wrap;
    }

    .mobile_h {
        min-height:85vh !important;
    }

    .hero-content {
        padding-top: 10px !important;
        padding-bottom: 0 !important;
    }

}