/* ===========================================================
   TOKENS & RESET
=========================================================== */
:root {
    --primary: #0B5ED7;
    --primary-dk: #001B5E;
    --primary-lt: #EBF2FF;
    --accent: #2EA3FF;
    --accent2: #00D4FF;
    --glow: rgba(46, 163, 255, .55);
    --glow-soft: rgba(46, 163, 255, .18);
    --white: #FFFFFF;
    --gray-50: #F8FAFF;
    --gray-100: #EFF4FC;
    --gray-200: #D6E1F5;
    --gray-400: #8FA3C8;
    --gray-600: #4A5D7E;
    --gray-800: #1A2942;
    --green: #10B981;
    --purple: #7C3AED;
    --orange: #F59E0B;
    --cyan: #06B6D4;
    --royal: #1D4ED8;

    --font: 'Poppins', sans-serif;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 18px;
    --r-xl: 22px;
    --r-2xl: 28px;

    --sh: 0 2px 12px rgba(11, 94, 215, .08);
    --sh-md: 0 6px 32px rgba(11, 94, 215, .12);
    --sh-lg: 0 12px 60px rgba(11, 94, 215, .15);
    --sh-glow: 0 0 28px rgba(46, 163, 255, .35);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--gray-800);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

/* ===========================================================
   TOP BAR
=========================================================== */
.topbar {
    /* background: var(--primary-dk); */
    padding: 1px 0;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.75);
}

.topbar-inner {
    max-width:100%;
    margin: 0 auto;
    padding:4px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.topbar a {
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar a:hover {
    color: var(--accent2);
}

.topbar-sep {
    opacity: .3;
}

/* ===========================================================
   NAVBAR
=========================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:#fdfdfd;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 20px rgba(11, 94, 215, .06);
    transition: box-shadow .3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(11, 94, 215, .14);
}

.nav-inner {
    max-width: 100%;
        margin: 0 auto;
        padding: 0 45px;
        height: 80px;
        display: flex;
        align-items: center;
        gap: 32px;
        border: 1px solid #f3eded;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: white;
    letter-spacing: -.03em;
    box-shadow: 0 4px 16px rgba(11, 94, 215, .35);
    flex-shrink: 0;
}

.logo-text .lt1 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dk);
    letter-spacing: -.03em;
    line-height: 1.1;
}

.logo-text .lt2 {
    font-size: 9px;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    border-radius: var(--r-sm);
    transition: all .2s var(--ease);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-lt);
}

.nav-link i {
    font-size: 10px;
    transition: transform .2s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    padding: 8px;
    min-width:270px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .22s var(--ease);
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: var(--r-sm);
    transition: all .15s;
}

.dropdown a:hover {
    background: var(--primary-lt);
    color: var(--primary);
    padding-left: 18px;
}

/* CTA button */
.btn-cta {
    height: 40px;
    padding: 0 20px;
    flex-shrink: 0;
    /* background: linear-gradient(135deg, var(--primary), var(--accent)); */
    /* background-color:#24334a; */
    /* background: linear-gradient(135deg, #38bdf8 0%, #2563eb 45%, #1e3a8a 100%); */
        /* background: linear-gradient(135deg, #30b9fd, #1b3f91); */
        background: linear-gradient(135deg,
                    #5E8BFF 0%,
                    #3F69C9 45%,
                    #294F9F 100%);
    color: white;
    border: none;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(11, 94, 215, .35);
    transition: all .25s var(--ease);
    display: flex;
    align-items: center;
    gap: 7px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(11, 94, 215, .45);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all .3s var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top:35px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 27, 94, .97);
    backdrop-filter: blur(16px);
    z-index: 999;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity .3s;
}

.mobile-nav.show {
    display: flex;
    opacity: 1;
}

.mobile-nav a {
    color: #171f31;
        font-size: 13px;
        font-weight: 700;
        padding: 10px 18px;
        border-radius: var(--r-md);
        transition: background .2s;
    }


.mobile-nav a:hover {
    background: rgba(255, 255, 255, .1);
}

.mobile-nav .btn-cta-mobile {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 14px 27px;
    border-radius: var(--r-md);
    font-size: 16px;
    font-weight: 700;
    width:240px;
    margin-left:25px;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display:none;
}

/* ===========================================================
   HERO SECTION  Styling 
=========================================================== */
/* HERO SECTION */
/* =========================
   HERO SECTION
========================= */
/* HERO SECTION */
/* =========================
   HERO SECTION
========================= */
.hero-section {

    position: relative;
    overflow: hidden;

    width: 100%;
    height: 390px;

background-image: url('../img/new-fg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;


    background-repeat: no-repeat;

    /* MAIN FIX */
    background-size: 100% 100%;

    /* IMPORTANT */
    background-position: center center;
}



/* OPTIONAL OVERLAY */

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.82) 38%,
            rgba(255, 255, 255, 0.12) 65%,
            rgba(255, 255, 255, 0) 100%);

    z-index: 1;
}

/* =========================
   CONTAINER
========================= */

.hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1920px;

    margin: 0 auto;

    padding: 20px 50px;

    display: flex;
    align-items: center;
}

/* =========================
   CONTENT
========================= */

.hero-content {
    width: 52%;
}

/* =========================
   TITLE
========================= */

.hero-title {
    font-size: 50px;
        line-height: 70px;
        font-weight: 800;
        color: #05143B;
        margin-bottom: 35px;
}

/* =========================
   GRADIENT TEXT
========================= */

.gradient-text {
background: linear-gradient(90deg,
            #57D8FF 0%,
            #4CB6FF 30%,
            #5D8DFF 65%,
            #72E5B8 100%);
    
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    
        /* Glow */
        /* text-shadow:
            0 0 10px rgba(95, 134, 255, 0.35),
            0 0 20px rgba(63, 104, 217, 0.25); */
    display: inline-block;
}

/* =========================
   DESCRIPTION
========================= */

.hero-description {
    max-width: 500px;

    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;

    color: #3F4A63;

    margin-bottom:45px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* =========================
   PRIMARY BUTTON
========================= */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 12px;

    border-radius: 16px;

    /* background: #1565FF; */
    background: linear-gradient(135deg,
                #5E8BFF 0%,
                #3F69C9 45%,
                #294F9F 100%);
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;

    box-shadow: 0 14px 35px rgba(21, 101, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: #0050E6;
}

/* =========================
   SECONDARY BUTTON
========================= */

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 12px;

    border-radius: 16px;

    border: 2px solid #1565FF;

    background: #fff;
    color: #1565FF;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #1565FF;
    color: #fff;

    transform: translateY(-4px);
}

/* REMOVE RIGHT IMAGE */

/* .hero-image {
    display: none;
} */

/* =========================
   1600px+
========================= */

@media (min-width: 1600px) {

    .hero-section {
        min-height:  390px;
        /* background-size: cover; */
    }

    .hero-container {
        /* padding-left: 120px; */
        padding-right: 120px;
    }
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1400px) {

    .hero-title {
        font-size: 44px;
        line-height:70px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-content {
        width: 40%;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .hero-section {
        min-height: auto;

        background-position: center;
        background-size: cover;
    }

    .hero-section::before {
        background: rgba(255, 255, 255, 0.78);
    }

    .hero-container {
        padding: 90px 30px 80px;

        justify-content: center;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size:45px;
        letter-spacing: -1px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;

        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hero-section {
        padding: 0px 0;
    }

    .hero-container {
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;

        margin-bottom:8px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;

        padding: 17px 20px;

        font-size: 16px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-container {
        padding: 20px 16px;
    }
        .nav-inner {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 7px;
            height: 80px;
            display: flex;
            align-items: center;
            gap: 32px;
            border: 1px solid #f3eded;
        }



}



/* our focus area */

/* SECTION */

.focus-section {
    padding:12px 50px;
    background: #fff;
}

.container {
    max-width:100%;
    margin: auto;
}

/* HEADING */

.section-heading {
    text-align: center;
    margin-bottom:15px;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;

background: linear-gradient(90deg,
            #57D8FF 0%,
            #4CB6FF 30%,
            #5D8DFF 65%,
            #72E5B8 100%);
    
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    
        /* Glow */
        /* text-shadow:
            0 0 10px rgba(95, 134, 255, 0.35),
            0 0 20px rgba(63, 104, 217, 0.25); */

    display: inline-block;
}




/* .section-heading h2 {
    font-size: 35px;
    font-weight: 800;
    color: #07143B;
    margin-bottom: 14px;
} */

.heading-line {
    width: 55px;
    height: 4px;
    background: #141414;
    border-radius: 20px;
    margin: auto;
    margin-top:10px;
}

/* GRID */

.focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    text-align: center;
}



/* CARD */

/* ICON */
/* CARD */
.focus-card {
    display: flex;
    flex-direction: column;
}

/* ICON BOX */

.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius:50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 5px auto;
    /* YE CENTER KREGA */

    position: relative;
}

/* ICON */

.icon-wrap i {
    font-size: 21px;
    color: #fff;

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


/* CARD COLORS */

.blue {
    background: #1565FF;
}

.green {
    background: #3E8B36;
}

.purple {
    background: #6129B3;
}

.orange {
    background: #F57A20;
}

.cyan {
    background: #0C8BB5;
}

.royal {
    background: #1A5EFF;
}




.focus-card {
    position: relative;
    background: #fff;
    border: 1px solid #E8EDF5;
    border-radius: 26px;
    padding: 7px 6px 6px;
    min-height: 190px;
    transition: 0.35s ease;
    overflow: hidden;
    /* display: flex;
    flex-direction: column; */
}


.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}


/* TITLE */

.focus-card h3 {
            font-size: 13px;
                line-height: 29px;
                font-weight: 800;
                color: #06153A;
                margin-bottom: 0px;
}

/* DESCRIPTION */

.focus-card p {
    font-size: 12px;
    line-height: 1.9;
    color: #4B587C;
    margin-bottom: auto;
}

/* ARROW */

.arrow {
    margin-top:3px;
    display: flex;
    justify-content: flex-end;
    margin-right:10px;
}

.arrow i {
    font-size:18px;
    color: #1565FF;
    transition: 0.3s;
}

.focus-card:hover .arrow i {
    transform: translateX(6px);
}

/* LAPTOP */

@media(max-width:1190px) {

    .focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* TABLET */

@media(max-width:992px) {

    .focus-section {
        padding: 70px 25px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .focus-card {
        min-height: 330px;
    }

}

/* MOBILE */

@media(max-width:576px) {

    .focus-section {
        padding: 25px 18px;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .focus-card {
        min-height: auto;
        padding: 8px 14px;
        border-radius: 22px;
    }

    .icon-wrap {
        width: 74px;
        height: 74px;
        margin-bottom: 24px;
    }

    .icon-wrap i {
        font-size: 30px;
    }

    .focus-card h3 {
        font-size: 13px;
    }

    .focus-card p {
        font-size: 12px;
        line-height: 1.7;
    }

}


/* about section styling  */

/* SECTION */

.about-initiative-section {
    padding: 5px 50px;
    background: #ffffff;
}

.container {
    max-width:100%;
    margin: auto;
}

/* MAIN GRID */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.65fr;
    gap: 28px;
    align-items: stretch;
    margin-top:18px;
}

/* COMMON BOX */

.about-box,
.initiative-box {
        background:#03a9f40a;
        border: 1px solid #EEF2F8;
        border-radius: 26px;
        padding: 15px 15px 0px 15px;
        position: relative;
        overflow: hidden;
}

/* HEADINGS */

.section-title {
    font-size:15px;
    font-weight: 800;
    line-height: 1.2;
    color:#061341;
    /* text-align:center; */
/* 
    background: linear-gradient(90deg,
            #57D8FF 0%,
            #4CB6FF 30%,
            #5D8DFF 65%,
            #72E5B8 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */

    /* display: inline-block; */
}





.title-line {
    width: 55px;
    height: 4px;
    background:#01193e;
    border-radius: 50px;
    margin-bottom: 28px;
}

/* ABOUT TEXT */

.about-content p {
    font-size: 12px;
    line-height: 1.9;
    color: #44516E;
    margin-bottom: 26px;
}

/* BUTTON */

.about-btn {
    display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 11px 7px;
        border: 2px solid #1565FF;
        border-radius: 14px;
        text-decoration: none;
        color: #1565FF;
        font-size: 14px;
        font-weight: 700;
        transition: 0.35s ease;
        background: #fff;
        margin-bottom: 10px;
    }


.about-btn:hover {
    background: #1565FF;
    color: #fff;
    transform: translateY(-3px);
}

/* CITY LINE ART */

.city-art {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.18;
}

/* INITIATIVE HEADER */

.initiative-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 34px; */
}

.view-all {
    text-decoration: none;
    color: #1565FF;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CARDS */

.initiative-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom:10px;

}

/* CARD */

.initiative-card {
    background-color: #31528e08;
    border: 1px solid #EEF2F8;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.card-image {
    width: 100%;
    height:136px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.initiative-card:hover .card-image img {
    transform: scale(1.05);
}

/* CONTENT */

.card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    min-height:130px!important;
    /* height: 100%; */
}

.card-content h3 {
    font-size: 10px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 3px;
    color:#000000;
    text-transform: uppercase;
}

.card-content p {
    font-size: 12px;
    line-height: 1.8;
    color: #4B587C;
    margin-bottom:0px;
}

/* LINK */

.card-link {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1565FF;
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
}

/* TABLET */

@media(max-width:1200px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

}

/* MOBILE */

@media(max-width:992px) {

    .about-initiative-section {
        padding: 70px 24px;
    }

    .initiative-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 34px;
    }

    .card-content h3 {
        font-size: 26px;
    }

}

/* SMALL MOBILE */

@media(max-width:576px) {

    .about-initiative-section {
        padding: 0px 16px;
    }

    .about-box,
    .initiative-box {
        padding: 24px;
        border-radius: 22px;
    }

    .initiative-header {
        flex-direction: column;
        gap: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content p,
    .card-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom:20px;
    }

    .card-content {
        padding: 10px;
    }

    .card-content h3 {
        font-size: 12px;
    }

    .card-image {
        height: 180px;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

}

/* About section styling ending  */

















.hero-image {
    display:none;
}



/* footer styling */

/* SECTION */

.cta-footer {
    /* background: linear-gradient(90deg, #0050E6 0%, #001A66 100%); */
    background: linear-gradient(135deg, #30b9fd, #1b3f91);
    padding: 5px 50px;
    overflow: hidden;
}

.cta-container {
    max-width:100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT CONTENT */

.cta-content {
    max-width: 560px;
}

.cta-content h2 {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin-bottom:5px;
}

.cta-content p {
    font-size: 11px;
    /* line-height: 1.8; */
    color: rgba(255, 255, 255, 0.88);
}

/* RIGHT BOXES */

.cta-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */

.cta-card {
    width:210px;
    height:65px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.03);

    transition: 0.35s ease;
    cursor: pointer;
}

.cta-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ICON */

.cta-card i {
    font-size:25px;
    color: #ffffff;
    margin-bottom: 5px;
}

/* TEXT */

.cta-card h4 {
    font-size: 13px;
    font-weight:400;
    color: #ffffff;
    text-align: center;
}

/* TABLET */

@media(max-width:1200px) {

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-boxes {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        width: 100%;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .cta-footer {
        padding: 15px 20px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 17px;
    }

    .cta-boxes {
        grid-template-columns: 1fr;
    }

    .cta-card {
        height: 80px;
    }

    .cta-card i {
        font-size: 25px;
    }

    .cta-card h4 {
        font-size: 15px;
    }

        .footer-bottom p {
            margin: 0;
            font-size: 10px!important;
            color: #e5e5e5;
            font-weight: 500;
        }

}

/* SMALL MOBILE */

@media(max-width:480px) {

    .cta-content h2 {
        font-size: 14px;
        line-height: 1.35;
    }

    .cta-content p {
        font-size: 12px;
        line-height: 1.7;
    }

        .topbar {
            /* background: var(--primary-dk); */
            padding: 10px 0;
            font-size: 12px;
            color: rgba(0, 0, 0, 0.75);
        }
       
    /* .topbar{
        display:none;
    } */





}



/* End footer styling  */

@media (max-width: 768px) {

    .nav-links,
    .btn-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 64px 0;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        overflow-x: auto;
    }

    .cta-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-inner {
        padding: 60px 24px 40px;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    /* .topbar-inner {
        display: none;
    } */

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-num {
        font-size: 22px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* .hero-section::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4497fb;
    background: -moz-linear-gradient(left, #4497fb 0, #ed2ded 25%, #c99826 50%, #9600ff 75%, #4497fb 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #4497fb), color-stop(25%, #ed2ded), color-stop(50%, #c99826), color-stop(75%, #9600ff), color-stop(100%, #4497fb));
    background: -webkit-linear-gradient(left, #4497fb 0, #ed2ded 25%, #c99826 50%, #9600ff 75%, #4497fb 100%);
    background: -o-linear-gradient(left, #4497fb 0, #ed2ded 25%, #c99826 50%, #9600ff 75%, #4497fb 100%);
    background: -ms-linear-gradient(left, #4497fb 0, #ed2ded 25%, #c99826 50%, #9600ff 75%, #4497fb 100%);
    z-index: 99;
    animation: 5s linear infinite rotate;
    -webkit-animation: 5s linear infinite rotate;
} */



.hero-section::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4497fb;
background: -webkit-linear-gradient(left, #4497fb 0, #2f508a 25%, #5375d3 50%, #594905 75%, #264778 100%);
    z-index: 99;
    animation: 5s linear infinite rotate;
    -webkit-animation: 5s linear infinite rotate;
}

@keyframes rotate{

0% {
    background-position: -3000px;
}

100% {
    background-position: 0;
}

}





/* bottom footer start styling  */

/* =========================
        FOOTER CSS
========================= */
/* =========================
   FOOTER
========================= */

.iair-footer {
      position: relative;
        background: linear-gradient(135deg, #020024 0%, #061b57 45%, #0a4db3 100%);
        color: #fff;
        padding: 8px 3% 3px;
        font-family: Arial, sans-serif;
        overflow: hidden;
}

/* GLOW EFFECT */

.iair-footer::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(48, 185, 253, 0.12);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    filter: blur(90px);
}

.iair-footer::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    filter: blur(90px);
}

/* CONTENT */

.footer-container,
.footer-bottom {
    position: relative;
    z-index: 2;
}


/* =========================
   GRID
========================= */

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.9fr;
    gap: 0px;
    align-items: flex-start;
}


/* =========================
   LOGO
========================= */

.footer-logo {
    width:170px;
    max-width: 100%;
}


/* =========================
   HEADING
========================= */

.footer-col h3 {
    font-size:18px;
    margin-bottom:18px;
    font-weight:600;
    position: relative;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #30b9fd;
    border-radius: 20px;
}


/* =========================
   QUICK LINKS
========================= */

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 7px;
}

/* ICON ADD */

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    display: flex;
    align-items: center;
    gap: 12px;

    transition: .3s ease;
}

/* ICON */

.footer-col ul li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    width: 24px;
    height: 24px;

    border-radius: 50%;
    background: rgba(48, 185, 253, 0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #30b9fd;
    font-size: 12px;

    transition: .3s ease;
}

/* HOVER */

.footer-col ul li a:hover {
    color: #30b9fd;
    transform: translateX(4px);
}

.footer-col ul li a:hover::before {
    background: #30b9fd;
    color: #fff;
}


/* =========================
   CONTACT
========================= */

.footer-col p {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    font-size: 14px;
    line-height: 1.8;
    color: #f1f1f1;

    margin-bottom:7px;
}

.footer-col p i {
    color: #30b9fd;
    font-size: 14px;
    margin-top: 4px;
}


/* =========================
   SOCIAL
========================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    transition: .3s ease;
}

.social-links a:hover {
    background: #30b9fd;
    transform: translateY(-4px);
}


/* =========================
   BOTTOM
========================= */

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.12);

    /* margin-top: 30px; */
    padding-top: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #e5e5e5;
}

.footer-company span {
    color: #fff;
    font-weight: 700;
}


/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}


/* =========================
   MOBILE
========================= */

@media(max-width:600px) {

    .iair-footer {
        padding: 35px 20px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-col h3 {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .footer-col ul li a {
        font-size: 15px;
    }

    .footer-col p {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

.fa-facebook-f {
    color: #1877F2;
}

.fa-instagram {
    color: #E4405F;
}

.fa-linkedin-in {
    color: #0A66C2;
}

.fa-youtube {
    color: #FF0000;
}

.fa-x-twitter{

}






/* mobile menus  */
/* =========================
   MOBILE NAVIGATION
========================= */
/* =========================
   MOBILE OVERLAY
========================= */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   MOBILE NAV
========================= */
/* =========================
   MOBILE OVERLAY
========================= */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   MOBILE NAV
========================= */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;

    width: 320px;
    max-width: 100%;
    height: 100vh;

    background: #ffffff;

    z-index: 9999;

    transition: 0.4s ease;

    overflow-y: auto;

    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
}

/* ACTIVE */
.mobile-nav.active {
    right: 0;
}

/* =========================
   INNER
========================= */

.mobile-nav-inner {
    padding: 8px 14px 25px;
}

/* =========================
   SCROLLBAR
========================= */

.mobile-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

/* =========================
   CLOSE BUTTON
========================= */

.mobile-close {
    display: flex;
        justify-content: flex-end;
    
        margin-bottom: 8px;
    
        font-size: 28px;
    
        cursor: pointer;
    
        color: #0f172a;
}

/* =========================
   DROPDOWN
========================= */

.mobile-dropdown {
    margin-bottom: 16px;
}

/* FIRST MENU */
.mobile-dropdown:first-of-type {
    margin-top: 0;
}

.mobile-dropdown-btn {
    width: 100%;

    border: none;

    background: #f1f5f9;

    padding: 14px 16px;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;

    color: #0f172a;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    transition: 0.3s ease;
}

.mobile-dropdown-btn:hover {
    background: #e2e8f0;
}

/* ICON ROTATE */

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.mobile-dropdown-btn i {
    transition: 0.3s ease;
}

/* =========================
   DROPDOWN CONTENT
========================= */

.mobile-dropdown-content {
    max-height: 0;

    overflow: hidden;

    transition: all 0.4s ease;

    padding-left: 8px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 400px;

    margin-top: 10px;
}

.mobile-dropdown-content a {
    display: block;

    padding: 12px 14px;

    border-radius: 12px;

    background: #f8fafc;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 500;

    color: #1e293b;

    text-decoration: none;

    transition: 0.3s ease;
}

.mobile-dropdown-content a:hover {
    background: #e0f2fe;

    color: #0284c7;

    transform: translateX(3px);
}

/* =========================
   SIMPLE LINK
========================= */

.mobile-single-link {
    display: block;

    background: #f1f5f9;

    padding: 14px 16px;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;

    color: #0f172a;

    text-decoration: none;

    margin-bottom: 18px;

    transition: 0.3s ease;
}

.mobile-single-link:hover {
    background: #e2e8f0;
}

/* =========================
   CTA BUTTON
========================= */

.btn-cta-mobile {
    /* background: linear-gradient(135deg, #38bdf8 0%, #2563eb 45%, #1e3a8a 100%); */
    background: linear-gradient(
    135deg,
    #5E8BFF 0%,
    #3F69C9 45%,
    #294F9F 100%
);

    color: #fff !important;

    padding: 15px 18px;

    border-radius: 16px;

    text-align: center;

    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    text-decoration: none;

    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);

    transition: 0.3s ease;
}

.btn-cta-mobile:hover {
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .mobile-nav {
        width: 100%;
    }

}

@media(max-width:480px) {

    .mobile-nav-inner {
        padding: 0 12px 20px;
        margin-top:-190px!important;
    }

    .mobile-top{
        border-top:1px solid gray;
    }

    .mobile-logo img{
        width:90%;
    }

    .mobile-close {
        font-size: 26px;
    }

    .mobile-dropdown-btn {
        padding: 13px 14px;
        font-size: 14px;
    }

    .mobile-dropdown-content a {
        font-size: 13px;
    }

    .btn-cta-mobile {
        font-size: 14px;
    }

}
/* bottom footer start End  */


/* About Us Page styling Start */
/* =========================================
      MISSION & VISION SECTION
========================================= */
/* =========================
   LEADERSHIP HERO SECTION
========================= */
/* =========================
   LEADERSHIP HERO SECTION
========================= */
/* IAIR LOGO MATCHING BACKGROUND */
/* =========================
   SECTION
========================= */
/* =========================
   SECTION
========================= */

.mission-vision-section {
width: 100%;
    position: relative;
    overflow: hidden;
    /* padding: 0px 3%; */
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 5px;
    padding-bottom: 0;
    /* background: linear-gradient(135deg, #f8faff 0%, #a3c2fb 35%, #c3d7fa 70%, #94bafb 100%); */
        background: linear-gradient(135deg, #f8faff 0%, #c3d7fe 35%, #c3d7fa 70%, #c4d8fd 100%);
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to right,
            rgba(255, 255, 255, .25),
            transparent);

    pointer-events: none;
}

.mission-vision-section::after {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    top: -180px;
    left: -150px;

    border-radius: 50%;

    background: rgba(79, 125, 224, .08);

    filter: blur(120px);
}

/* =========================
   CONTAINER
========================= */

.mv-container {
    width: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    position: relative;
    z-index: 2;
}

/* =========================
   CONTENT
========================= */

.mv-content {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
}

/* =========================
   BREADCRUMB
========================= */

.mv-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(79, 125, 224, .08);

    border: 1px solid rgba(79, 125, 224, .15);

    color: #3554a5;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}

.mv-breadcrumb span {
    color: #4f7de0;
    font-size: 18px;
}

/* =========================
   TITLE
========================= */

.mv-title {
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;

    color: #1c2f6d;

    margin-bottom: 15px;
}

.mv-title span {
    background-color: #5072cd;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================
   LINE
========================= */

.mv-line {
    width: 90px;
    height: 5px;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #4f6db8,
            #7f99dc);

    margin-bottom: 20px;
}

/* =========================
   TEXT
========================= */

.mv-text {
        color: #4b5563;
        font-size: 12px;
        line-height: 1.5;
        max-width: 611px;
        font-weight: 500;
        text-align: justify;
}

/* =========================
   IMAGE
========================= */

.mv-image {
    /* flex: 0 0 55%; */
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-image::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, .35),
            transparent 70%);

    z-index: -1;
}

.mv-image img {
    width: 100%;
    max-width: 550px;
    height: auto;

    display: block;

    /* opacity: .96;

    mix-blend-mode: screen;

    filter:
        brightness(1.12) contrast(.92) saturate(.85);

    animation: none;

    -webkit-mask-image:
        radial-gradient(ellipse at center,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, .8) 82%,
            transparent 100%);

    mask-image:
        radial-gradient(ellipse at center,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, .8) 82%,
            transparent 100%); */
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .mv-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .mv-content,
    .mv-image {
        width: 100%;
        flex: unset;
    }

    .mv-title {
        font-size: 42px;
    }

    .mv-line {
        margin-left: auto;
        margin-right: auto;
    }

    .mv-text {
        margin: auto;
    }

    .mv-breadcrumb {
        margin: auto auto 20px;
    }

    .mv-image img {
        max-width: 550px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .mission-vision-section {
        padding: 40px 20px;
    }

    .mv-title {
        font-size: 30px;
    }

    .mv-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .mv-breadcrumb {
        font-size: 12px;
        padding: 8px 14px;
    }

    .mv-line {
        width: 70px;
        height: 4px;
    }

    .mv-image img {
        max-width: 320px;
    }
}


/* terms and conditions  */

/* =========================================================
   TERMS & CONDITIONS
========================================================= */

.terms-wrapper {
    position: relative;

    padding: 40px 3%;

    background: #ffffff;

    overflow: hidden;
}

/* BIG BG TEXT */

.bg-title {
    position: absolute;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    font-size: 85px;
    font-weight: 800;

    color: rgba(0, 0, 0, 0.04);

    white-space: nowrap;

    z-index: 0;
}

/* HEADING */

.terms-heading {
    position: relative;

    z-index: 2;

    margin-bottom: 50px;
}

.terms-heading h2 {
    font-size: 34px;
    font-weight: 800;

    color: #000;

    margin-bottom: 12px;
}

.terms-heading p {
    max-width: 100%;

    color: #4b5563;

    line-height: 1.8;

    font-size: 13px;
}

/* ITEM */

.terms-item {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 40px;
}

/* NUMBER */

.terms-number {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 50%;

    background: linear-gradient(135deg, #2563eb, #1d4ed8);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;

    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* CONTENT */

.terms-content h4 {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 15px;
    font-weight: 700;

    color: #111827;

    margin-bottom: 12px;
}

/* ICON */

.terms-content h4 i {
    font-size: 18px;

    background: linear-gradient(135deg, #2563eb, #38bdf8);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.25));
}

/* PARAGRAPH */

.terms-content p {
    color: #4b5563;

    line-height: 1.9;

    font-size: 13px;

    max-width: 100%;
    text-align: justify;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

    .bg-title {
        font-size: 58px;
    }

}

@media(max-width:768px) {

    .terms-wrapper {
        padding: 40px 20px;
    }

    .bg-title {
        font-size: 40px;

        top: 30px;
    }

    .terms-heading h2 {
        font-size: 28px;
    }

    .terms-item {
        gap: 15px;
    }

    .terms-content h4 {
        font-size: 15px;
    }

}

@media(max-width:480px) {

    .bg-title {
        font-size: 28px;
    }

    .terms-item {
        flex-direction: column;
    }

    .terms-number {
        width: 50px;
        height: 50px;

        min-width: 50px;
    }

    .terms-content h4 {
        font-size: 15px;
        line-height: 1.5;
    }

    .terms-content p {
        font-size: 14px;
    }

    .nav-logo img{
       width: 260px!important;;
    }

}



/* about us page styling  */


/* =========================================================
   IAIR MISSION & VISION
========================================================= */

.iair-mv-section {
    padding: 30px 3%;
    background: #ffffff;
}

/* CONTAINER */

.iair-mv-container {
    max-width: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

/* BOX */

.iair-mv-box {
    position: relative;
        background: #fff;
        border-radius: 28px;
        padding: 5px 35px 5px;
        border: 1px solid #dbeafe;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        transition: 0.35s ease;
    }


.iair-mv-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(37, 99, 235, 0.10);
}

/* ICON */

.iair-mv-icon {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 6px;

    color: #fff;

    font-size: 28px;

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.22);
}

/* MISSION */

.iair-mission-icon {
    background:
        linear-gradient(135deg, #2563eb, #38bdf8);
}

/* VISION */

.iair-vision-icon {
    background:
        linear-gradient(135deg, #7c3aed, #9333ea);
}

/* HEADING */

.iair-mv-box h2 {
    text-align: center;

    font-size:25px;

    font-weight: 700;

    margin-bottom: 16px;

    color: #1e293b;
}

.iair-mv-box h2 span {
background: linear-gradient(135deg,
            #27457a 0%,
            #3f63b4 35%,
            #5373c9 65%,
            #7a95da 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iair-vision-box h2 span {
background: linear-gradient(135deg,
            #27457a 0%,
            #3f63b4 35%,
            #5373c9 65%,
            #7a95da 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DIVIDER */

.iair-mv-divider {
    width: 70px;
    height: 5px;

    border-radius: 30px;

    margin: auto auto 5px;

    background:
        linear-gradient(135deg, #2563eb, #38bdf8);
}

.iair-vision-divider {
    background:
        linear-gradient(135deg, #7c3aed, #38bdf8);
}

/* DESCRIPTION */

.iair-mv-description {
    text-align: center;

    font-size: 14px;

    line-height: 2;

    color: #475569;

    margin-bottom:10px;
}

/* LIST */

.iair-mv-list {
    list-style: none;

    padding: 0;
    margin: 0;
}

.iair-mv-list li {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;

    font-size: 14px;

    line-height: 1.8;

    color: #1e293b;

    font-weight: 500;
}

/* ICONS */

.iair-mv-list li i {
    color: #2563eb;

    margin-top: 5px;

    font-size: 18px;
}

.iair-vision-list li i {
    color: #7c3aed;
}

/* BOTTOM DESIGN */

.iair-mv-box::after {
    content: "";

    position: absolute;

    left: -10%;
    bottom: -70px;

    width: 120%;
    height: 150px;
/* 
    background:
        radial-gradient(circle at top,
            rgba(37, 99, 235, 0.10),
            transparent 70%); */

    opacity: 0.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .iair-mv-box h2 {
        font-size: 40px;
    }

}

@media(max-width:992px) {

    .iair-mv-container {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .iair-mv-section {
        padding: 30px 20px;
    }

    .iair-mv-box {
        padding: 60px 28px 40px;
    }

    .iair-mv-box h2 {
        font-size: 34px;
    }

    .iair-mv-description {
        font-size: 12px;
    }

    .iair-mv-list li {
        font-size: 12px;
    }

}

@media(max-width:480px) {

    .iair-mv-box {
        padding: 1px 10px 5px;
    }

    .iair-mv-icon {
        width: 50px;
        height: 50px;

        font-size: 24px;
    }

    .iair-mv-box h2 {
        font-size: 28px;
    }

    .iair-mv-description {
        line-height: 1.8;
    }

}



/* about -guidelines sections styling  */

/* =========================================================
   GUIDING PRINCIPLES
========================================================= */

.iair-principles-section {
    padding: 0px 3%;
    background: #ffffff;
}

/* HEADING */

.iair-principles-heading {
    text-align: center;
    margin-bottom: 10px;
}

.iair-principles-heading h2 {
    font-size:25px;
    font-weight: 700;
    color: #111827;
}

.iair-principles-heading h2 span {
background: linear-gradient(135deg,
            #27457a 0%,
            #3f63b4 35%,
            #5373c9 65%,
            #7a95da 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LINE */

.iair-principles-line {
    width: 70px;
    height: 5px;

    margin: 18px auto 0;

    border-radius: 50px;

    background: linear-gradient(135deg, #2563eb, #38bdf8);
}

/* GRID */

.iair-principles-grid {
    max-width:100%;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 25px;
}

/* CARD */

.iair-principle-card {
    background:#2a6bee0d;

    border-radius: 26px;

    padding: 10px 25px;

    text-align: center;

    border: 1px solid #edf2f7;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);

    transition: 0.35s ease;
}

.iair-principle-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(37, 99, 235, 0.12);
}

/* ICON */

.iair-principle-icon {
    width: 55px;
    height: 55px;

    margin: auto auto 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 32px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ICON COLORS */

.integrity-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.innovation-icon {
    background: linear-gradient(135deg, #6d28d9, #9333ea);
}

.collaboration-icon {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.inclusivity-icon {
    background: linear-gradient(135deg, #15803d, #4ade80);
}

.excellence-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* TITLE */

.iair-principle-card h3 {
    font-size: 15px;
    font-weight: 700;

    color: #111827;

    margin-bottom:5px;
}

/* TEXT */

.iair-principle-card p {
    font-size: 14px;

    line-height: 1.9;

    color: #4b5563;

    font-weight: 500;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .iair-principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:768px) {

    .iair-principles-section {
        padding: 0px 20px;
    }

    .iair-principles-heading h2 {
        font-size: 20px;
    }

    .iair-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:576px) {

    .iair-principles-grid {
        grid-template-columns: 1fr;
    }

    .iair-principle-card {
        padding: 35px 22px;
    }

    .iair-principle-card h3 {
        font-size: 16px;
    }

    .iair-principle-card p {
        font-size: 13px;
    }

}


/* Commitment STYLING  */
/* =========================================================
   IAIR COMMITMENT & IMPACT
========================================================= */

.iair-impact-section {
    padding: 15px 3%;
    margin-top:15PX;

background: linear-gradient(135deg,
            #27457a 0%,
            #3f63b4 35%,
            #5373c9 65%,
            #7a95da 100%);

    overflow: hidden;

    position: relative;
}

/* CONTAINER */

.iair-impact-container {
    max-width: 100%;
    margin: auto;
}

/* HEADING */

.iair-impact-heading {
    text-align: center;

    margin-bottom: 25px;
}

.iair-impact-heading h2 {
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 5px;
    color: #ffffff;
}

.iair-impact-heading h2 span {
    background: linear-gradient(135deg, #ffffff, #ffffff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID */

.iair-impact-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 0;
}

/* CARD */

.iair-impact-card {
    display: flex;

    gap: 18px;

    padding: 0 28px;

    border-right:
        1px solid rgba(255, 255, 255, 0.15);
}

.no-border {
    border-right: none;
}

/* ICON */

.iair-impact-icon {
    min-width:50px;
    height:50px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size:22px;

    color: #fff;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}

/* ICON COLORS */

.education-icon {
    color: #60a5fa;
}

.research-icon {
    color: #38bdf8;
}

.collaboration-icon2 {
    color: #c084fc;
}

.social-icon {
    color: #d8b4fe;
}

.nation-icon {
    color: #67e8f9;
}

/* CONTENT */

.iair-impact-content h3 {
    font-size: 15px;

    line-height: 1.5;

    color: #fff;

    margin-bottom: 12px;
}

.iair-impact-content p {
    color: rgba(255, 255, 255, 0.72);

    line-height: 1.9;

    font-size: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .iair-impact-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 30px;
    }

    .iair-impact-card {
        border-right: none;

        padding: 0;
    }

}

@media(max-width:768px) {

    .iair-impact-section {
        padding:8px 20px;
    }

    .iair-impact-heading h2 {
        font-size: 16px;

        line-height: 1.4;
    }

    .iair-impact-grid {
        grid-template-columns: 1fr;
    }

    .iair-impact-card {
        flex-direction: row;

        align-items: flex-start;
    }

    .iair-impact-content h3 {
        font-size: 15px;
    }

}

@media(max-width:480px) {

    .iair-impact-heading h2 {
        font-size: 20px;
    }

    .iair-impact-card {
        gap: 16px;
    }

    .iair-impact-icon {
        min-width: 60px;
        height: 60px;

        font-size: 24px;
    }

    .iair-impact-content h3 {
        font-size: 15px;
    }

    .iair-impact-content p {
        font-size: 13px;
    }

}


/* TOGETHER SECTION STYLING  */

/* =========================================================
   IAIR FUTURE CTA SECTION
========================================================= */

.iair-future-section {
    padding: 13px 5%;

    background: #ffffff;

    border-top: 4px solid #081f78;
}

/* CONTAINER */

.iair-future-container {
    max-width:100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

/* LEFT */

.iair-future-left {
    display: flex;
    align-items: center;

    gap: 28px;
}

/* ICON */

.iair-future-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    position: relative;
    box-shadow:0 15px 40px rgba(37, 99, 235, 0.25);
}

/* OUTER RING */

.iair-future-icon::after {
    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    border:
        2px dashed rgba(37, 99, 235, 0.35);
}

/* TEXT */

.iair-future-content h2 {
    font-size: 15px;

    line-height: 1.3;

    font-weight: 700;

    color: #0f172a;
}

.iair-future-content h2 span {
    background:
        linear-gradient(135deg, #2563eb, #38bdf8);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */

.iair-future-buttons {
    display: flex;
    align-items: center;

    gap: 22px;
}

/* BUTTON */

.iair-future-btn {
        min-width: 180px;
            height: 56px;
            padding: 0 12px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: 0.35s ease;
}

/* PRIMARY */

.primary-btn {
    background:
        linear-gradient(135deg, #2563eb, #1d4ed8);

    color: #fff;

    box-shadow:
        0 12px 28px rgba(37, 99, 235, 0.25);
}

.primary-btn:hover {
    transform: translateY(-5px);
}

/* OUTLINE */

.outline-btn {
    border: 2px solid #93c5fd;

    color: #2563eb;

    background: #fff;
}

.outline-btn:hover {
    background: #eff6ff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

    .iair-future-container {
        flex-direction: column;

        align-items: flex-start;
    }

}

@media(max-width:992px) {

    .iair-future-content h2 {
        font-size: 42px;
    }

    .iair-future-buttons {
        width: 100%;

        flex-wrap: wrap;
    }

}

@media(max-width:768px) {

    .iair-future-section {
        padding: 20px 20px;
    }

    .iair-future-left {
        flex-direction: column;

        align-items: flex-start;
    }

    .iair-future-content h2 {
        font-size: 34px;
    }

    .iair-future-icon {
        width: 50px;
        height: 50px;

        min-width: 50px;

        font-size: 25px;
    }

    .iair-future-btn {
        width: 100%;
            min-width: 100%;
            height: 45px;
            font-size: 16px;
    }

}

@media(max-width:480px) {

    .iair-future-content h2 {
        font-size: 16px;

        line-height: 1.5;
    }

}


/* about understanding section styling  */
/* =========================================
      UNDERSTANDING IAIR SECTION
========================================= */
/* =========================================
      UNDERSTANDING IAIR SECTION
========================================= */
.understanding-iair {
    width: 100%;
    padding: 30px 3%;
    background: #ffffff;
}

.ui-container {
    /* max-width: 100%;
    margin: auto; */
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */

.ui-left {
    flex: 0 0 380px;
    min-width: 300px;
}

.ui-image-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(88, 122, 255, 0.2);
}

.ui-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* RIGHT */

.ui-right {
    flex: 1;
    min-width: 0;
}

.ui-right h2 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 8px;
    font-weight: 800;
    color: #08143c;
}

.ui-right h2 span {
    color: #2f57ab;
}

.ui-right p {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom:0px;
    font-weight: 500;
}

/* FEATURE BOX */

.ui-feature-box {
    margin-top:3px;
    border: 1px solid #dbe4ff;
    border-radius: 20px;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: #fff;
}

.ui-feature-item {
    text-align: center;
    padding: 10px;
}

.ui-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #edf4ff, #ffffff);
    border: 1px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #5b7cff;
    font-size: 28px;
}

.ui-feature-item h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #111827;
    font-weight: 700;
}

.ui-feature-item p {
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

/* =========================
        LARGE TABLET
========================= */

@media (max-width: 1199px) {

    .ui-container {
        gap: 40px;
    }

    .ui-left {
        flex: 0 0 320px;
    }

}

/* =========================
          TABLET
========================= */

@media (max-width: 991px) {

    .ui-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .ui-left {
        flex: none;
        width: 100%;
        max-width: 450px;
        min-width: auto;
    }

    .ui-right {
        width: 100%;
    }

    .ui-right h2 {
        font-size: 32px;
        text-align: center;
    }

    .ui-right p {
        text-align: center;
    }

    .ui-feature-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
          MOBILE
========================= */

@media (max-width: 600px) {

    .understanding-iair {
        padding: 20px 15px;
    }

    .ui-container {
        gap: 20px !important;
    }

    .ui-left {
        width: 100%;
        max-width: 100%;
    }

    .ui-image-box {
        border-radius: 18px;
    }

    .ui-right h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .ui-right p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .ui-feature-box {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .ui-feature-item {
        padding: 0;
    }

    .ui-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .ui-feature-item h4 {
        font-size: 16px;
    }

    .ui-feature-item p {
        font-size: 14px;
    }
}

/* about us -our ai eduaction stystem  */

/* =========================================
      AI EDUCATION ECOSYSTEM
========================================= */

.ai-ecosystem-section {
    width: 100%;
    padding: 10px 3%;
    background: #ffffff;
}

.ecosystem-container {
    max-width:100%;
    margin: auto;
}

/* HEADING */

.ecosystem-heading {
    text-align: center;
    margin-bottom: 15px;
}

.ecosystem-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.ecosystem-heading h2 span {
    color:#2f57ab;
}

.eco-line {
    width: 70px;
    height: 4px;
    background: #111827;
    border-radius: 20px;
    margin: auto;
    margin-bottom:8px;
}

.ecosystem-heading p {
    max-width: 850px;
    margin: auto;
    color: #64748b;
    font-size: 13px;
    line-height: 1.9;
}

/* GRID */

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */

.eco-card {
    border-radius: 24px;
    padding: 10px 15px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: 0.4s ease;
}

.eco-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.eco-top-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 25px;
}

.eco-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom:10px;
}

.eco-green-bg {
    background: #4caf50;
}

.eco-blue-bg {
    background: #2563eb;
}

.eco-purple-bg {
    background: #9333ea;
}

.eco-card h3 {
    font-size:25px;
    margin-bottom:5px;
    font-weight: 800;
}

.eco-green h3 {
    color: #4caf50;
}

.eco-blue h3 {
    color: #2563eb;
}

.eco-purple h3 {
    color: #9333ea;
}

.eco-card h4 {
    font-size: 16px;
    line-height: 1.5;
    color: #0f172a;
    margin-bottom: 18px;
    font-weight: 700;
}

.eco-desc {
    font-size:13px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom:15px;
}

/* LIST */

.eco-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.eco-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom:10px;
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
}

.eco-card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 15px;
}

.eco-green ul li::before {
    color: #4caf50;
}

.eco-blue ul li::before {
    color: #2563eb;
}

.eco-purple ul li::before {
    color: #9333ea;
}

/* BUTTON */

.eco-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
}

.eco-btn-green {
    border: 2px solid #4caf50;
    color: #4caf50;
}

.eco-btn-blue {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.eco-btn-purple {
    border: 2px solid #9333ea;
    color: #9333ea;
}

.eco-btn:hover {
    transform: translateY(-3px);
}

/* =========================================
              TABLET
========================================= */

@media(max-width:991px) {

    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-heading h2 {
        font-size: 40px;
    }

    .eco-card h3 {
        font-size: 34px;
    }

    .eco-card h4 {
        font-size: 22px;
    }

}

/* =========================================
              MOBILE
========================================= */

@media(max-width:768px) {

    .ai-ecosystem-section {
        padding: 0px 20px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-heading h2 {
        font-size: 23px;
    }

    .ecosystem-heading p {
        font-size: 15px;
        line-height: 1.8;
    }

    .eco-card {
        padding: 28px 22px;
    }

    .eco-card h3 {
        font-size: 20px;
    }

    .eco-card h4 {
        font-size:14px;
    }

}

/* what we do section  */

/* =========================================
          WHAT WE DO SECTION
========================================= */

.what-we-do-section {
    width: 100%;
    padding: 10px 3%;
    background: #ffffff;
}

.wwd-container {
    max-width:100%;
    margin: auto;
}

/* HEADING */

.wwd-heading {
    text-align: center;
    margin-bottom:15px;
}

.wwd-heading h2 {
    font-size:30px;
    font-weight: 800;
    color: #08143c;
    margin-bottom: 12px;
}

.wwd-heading h2 span {
    color: #38bdf8;
}

.wwd-line {
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: #111827;
    margin: auto;
}

/* GRID */

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* CARD */

.wwd-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px 26px;
    border: 1px solid #edf2ff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s ease;
    position: relative;
    min-height:300px;
    display: flex;
    flex-direction: column;
}

.wwd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ICON */

.wwd-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 26px;
}

.blue-bg {
    background: #2563eb;
}

.purple-bg {
    background: #7c3aed;
}

.cyan-bg {
    background: #06b6d4;
}

.green-bg {
    background: #43a047;
}

.violet-bg {
    background: #9333ea;
}

/* CONTENT */

.wwd-card h3 {
        font-size: 16px;
            line-height: 1.4;
            color: #111827;
            margin-bottom: 5px;
            font-weight: 800;
}

.wwd-card p {
    font-size: 14px;
    line-height: 2;
    color: #4b5563;
    margin-bottom: 4px;
    flex: 1;
}

/* ARROW */

.wwd-card a {
    font-size: 28px;
    color: #2563eb;
    transition: 0.3s;
    align-self: flex-end;
}

.wwd-card a:hover {
    transform: translateX(5px);
}

/* =========================================
                LAPTOP
========================================= */

@media(max-width:1200px) {

    .wwd-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================================
                TABLET
========================================= */

@media(max-width:991px) {

    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wwd-heading h2 {
        font-size: 42px;
    }

}

/* =========================================
                MOBILE
========================================= */

@media(max-width:768px) {

    .what-we-do-section {
        padding: 70px 20px;
    }

    .wwd-grid {
        grid-template-columns: 1fr;
    }

    .wwd-heading h2 {
        font-size: 34px;
    }

    .wwd-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .wwd-card h3 {
        font-size: 24px;
    }

    .wwd-card p {
        font-size: 15px;
        line-height: 1.9;
    }

}

/* =========================================
          WHO WE SERVE SECTION
========================================= */

.who-we-serve-section {
    width: 100%;
    padding: 5px 3%;
    background: #ffffff;
}

.wws-container {
    max-width:100%;
    margin: auto;
}

/* HEADING */

.wws-heading {
    text-align: center;
    margin-bottom: 15px;
}

.wws-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #08143c;
    margin-bottom: 14px;
}

.wws-heading h2 span {
    color:#2f57ab;
}

.wws-line {
    width: 70px;
    height: 4px;
    border-radius: 30px;
    background: #111827;
    margin: auto;
}

/* GRID */

.wws-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

/* CARD */

.wws-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px 10px;
    border: 1px solid #eef2ff;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s ease;
    min-height:240px;
}

.wws-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* ICON */

.wws-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 26px;
    background: linear-gradient(135deg, #4f71ca, #264779);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size:20px;
}

/* CONTENT */

.wws-card h3 {
    font-size:17px;
    line-height: 1.5;
    margin-bottom:5px;
    color: #111827;
    font-weight: 800;
}

.wws-card p {
    font-size:12px;
    line-height: 2;
    color: #4b5563;
}

/* =========================================
                LAPTOP
========================================= */

@media(max-width:1200px) {

    .wws-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================================
                TABLET
========================================= */

@media(max-width:991px) {

    .wws-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wws-heading h2 {
        font-size: 42px;
    }

}

/* =========================================
                MOBILE
========================================= */

@media(max-width:768px) {

    .who-we-serve-section {
        padding: 10px 20px;
    }

    .wws-grid {
        grid-template-columns: 1fr;
    }

    .wws-heading h2 {
        font-size:22px;
    }

    .wws-card {
        min-height: auto;
        padding: 32px 22px;
    }

    .wws-card h3 {
        font-size: 19px;
    }

    .wws-card p {
        font-size: 14px;
        line-height: 1.9;
    }

}




/* =========================================
                WHY IAIR
========================================= */

.why-iair-section {
    width: 100%;
    padding: 10px 3%;
    background: linear-gradient(135deg, #4f71ca, #264779);
    position: relative;
    overflow: hidden;
}

/* BACKGROUND GLOW */

.why-iair-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle,
            rgba(59, 130, 246, 0.35),
            transparent 70%);
    pointer-events: none;
}

/* CONTAINER */

.why-iair-container {
    max-width: 100%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* HEADING */

.why-iair-heading {
    text-align: center;
    margin-bottom: 20px;
}

.why-iair-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom:8px;
}

.why-iair-heading h2 span {
    color: #ffffff;
}

.why-line {
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: #ffffff;
    margin: auto;
}

/* GRID */

.why-iair-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* ITEM */

.why-item {
    text-align: center;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.no-border {
    border-right: none;
}

/* ICON */

.why-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
    font-size: 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
}

/* CONTENT */

.why-item h3 {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom:2px;
    font-weight: 700;
}

.why-item p {
    font-size: 13px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.82);
}

/* =========================================
                LAPTOP
========================================= */

@media(max-width:1200px) {

    .why-iair-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .why-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 35px;
    }

}

/* =========================================
                TABLET
========================================= */

@media(max-width:991px) {

    .why-iair-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-iair-heading h2 {
        font-size: 42px;
    }

}

/* =========================================
                MOBILE
========================================= */

@media(max-width:768px) {

    .why-iair-section {
        padding: 10px 20px;
    }

    .why-iair-grid {
        grid-template-columns: 1fr;
    }

    .why-iair-heading h2 {
        font-size: 34px;
    }

    .why-item {
        padding: 0;
        padding-bottom:10px;
    }

    .why-item h3 {
        font-size: 20px;
    }

    .why-item p {
        font-size: 13px;
        line-height: 1.9;
    }

}

/* leadership-section */
/* =========================================
            OUR LEADERSHIP
========================================= */

.leadership-section {
    width: 100%;
    padding: 10px 3%;
    background: #ffffff;
}

.leadership-container {
    max-width:100%;
    margin: auto;
}

/* HEADING */

.leadership-heading {
    text-align: center;
    margin-bottom: 10px;
}

.leadership-heading h2 {
    font-size: 30px;
    font-weight: 800;
    color: #08143c;
    margin-bottom: 14px;
}

.leadership-heading h2 span {
    color:#385a9d;
}

.leadership-line {
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: #111827;
    margin: auto;
    margin-bottom: 2px;
}

.leadership-heading p {
    max-width: 850px;
    margin: auto;
    font-size: 14px;
    line-height: 1.9;
    color: #64748b;
}

/* GRID */

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */

.leader-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #edf2ff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */

.leader-image {
    padding: 18px;
    padding-bottom: 0;
    display:flex;
    justify-content:center;
}

.leader-image img {
    width:200px;
    height:200px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

/* CONTENT */

.leader-content {
        padding: 15px 25px 25px;
    text-align: center;
}

.leader-content h3,
.leader-content h4,
.leader-content p {
    text-align: center;
}

.leader-divider {
    margin: 10px auto 15px;
}

.leader-divider {
    width: 55px;
    height: 3px;
    border-radius: 20px;
    background: #3b82f6;
    margin-bottom: 0px;
}


.leader-content p {
    font-size: 12px;
    line-height: 2;
    color: #475569;
    margin-bottom: 2px;
}

/* LINK */

.leader-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f1f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.leader-link:hover {
    background: #2563eb;
    color: #fff;
}

/* =========================================
                LAPTOP
========================================= */

@media(max-width:1200px) {

    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================================
                MOBILE
========================================= */

@media(max-width:768px) {

    .leadership-section {
        padding: 10px 20px;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .leadership-heading h2 {
        font-size: 36px;
    }

    .leadership-heading p {
        font-size: 15px;
        line-height: 1.8;
    }

    .leader-content h3 {
        font-size: 17px;
    }

    .leader-content h4 {
        font-size: 16px;
    }

    .leader-content p {
        font-size: 14px;
        line-height: 1.9;
    }

}


/* our shared vision  */

/* =========================================
            OUR SHARED VISION
========================================= */

.shared-vision-section {
    width: 100%;
    padding: 10px 3%;
    background: #ffffff;
}

.shared-vision-container {
    max-width:100%;
    margin: auto;
    border: 1px solid #edf2ff;
    border-radius: 32px;
    padding: 10px;
    background:#03a9f40d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

/* HEADING */

.shared-vision-heading {
    text-align: center;
    margin-bottom:10px;
}

.shared-vision-heading h2 {
    font-size: 25px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.shared-vision-heading h2 span {
    color:#385a9d;
}

.shared-line {
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: #111827;
    margin: auto;
}

/* WRAPPER */

.shared-vision-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */

.shared-left {
    width: 36%;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-right: 40px;
    border-right: 1px solid #e5e7eb;
}

.shared-main-icon {
    min-width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 40px;
}

.shared-left-content p {
    font-size:14px;
    line-height: 2;
    color: #334155;
    font-weight: 500;
}

/* RIGHT */

.shared-right {
    width: 64%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* ITEM */

.shared-item {
    padding: 0 28px;
    border-right: 1px solid #e5e7eb;
}

.no-border-item {
    border-right: none;
}

/* ICON */

.shared-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom:5px;
}

.blue-icon {
    background: #2563eb;
}

.cyan-icon {
    background: #06b6d4;
}

.purple-icon {
    background: #7c3aed;
}

.green-icon {
    background: #65a30d;
}

/* CONTENT */

.shared-item h3 {
    font-size: 15px;
    color: #111827;
    margin-bottom: 1px;
    font-weight: 700;
}

.shared-item p {
    font-size: 12px;
    line-height: 1.5;
    color: #64748b;
}

/* =========================================
                TABLET
========================================= */

@media(max-width:1200px) {

    .shared-vision-wrapper {
        flex-direction: column;
    }

    .shared-left,
    .shared-right {
        width: 100%;
    }

    .shared-left {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 35px;
    }

    .shared-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .shared-item {
        border-right: none;
    }

}

/* =========================================
                MOBILE
========================================= */

@media(max-width:768px) {

    .shared-vision-section {
        padding:10px 20px;
    }

    .shared-vision-container {
        padding: 35px 25px;
        border-radius: 24px;
    }

    .shared-vision-heading h2 {
        font-size: 20px;
    }

    .shared-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shared-left-content p {
        font-size: 13px;
        line-height: 1.9;
    }

    .shared-right {
        grid-template-columns: 1fr;
    }

    .shared-item {
        text-align: center;
        padding: 0;
    }

    .shared-icon {
        margin-inline: auto;
    }

    .shared-item h3 {
        font-size: 14px;
    }

}

/* =========================================
        JOIN IAIR CTA SECTION
========================================= */
.join-iair-section {
    width: 100%;
    padding: 10px 3%;
    background: #fff;
}

.join-iair-container {
    background:#4365b3;
    border-radius: 30px;

    padding: 30px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border: 1px solid rgba(255, 255, 255, .08);
}

.join-left {
    flex: 1;
}

.join-left h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
}

.join-left p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .8);
    margin: 0;
    max-width: 700px;
}

.join-right {
    flex-shrink: 0;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 30px;

    background: #2563eb;
    color: #fff;

    text-decoration: none;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;

    transition: .3s;
}

.join-btn:hover {
    transform: translateY(-3px);
    background: #1d4ed8;
}

/* Tablet */

@media(max-width:991px) {

    .join-iair-container {
        flex-direction: column;
        text-align: center;
    }

    .join-left p {
        max-width: 100%;
    }
}

/* Mobile */

@media(max-width:768px) {

    .join-iair-container {
        padding: 25px 20px;
    }

    .join-left h2 {
        font-size: 24px;
    }

    .join-left p {
        font-size: 14px;
    }

    .join-btn {
        width: 100%;
        justify-content: center;
    }
}



/* =========================================
            ADVISORY BOARD
========================================= */

.advisory-board-section {
    width: 100%;
    padding: 10px 3%;
    background: #ffffff;
}

.advisory-container {
    max-width: 100%;
    margin: auto;
}

/* HEADING */

.advisory-heading {
    text-align: center;
    margin-bottom:15px;
}

.advisory-heading h2 {
    font-size: 25px;
    font-weight: 800;
    color: #08143c;
    margin-bottom: 22px;
}

.advisory-heading h2 span {
    color:#335bb2;
}

.advisory-line {
    width: 70px;
    height: 4px;
    background: #111827;
    border-radius: 20px;
    margin: auto;
}

/* GRID */

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 30px;
}

/* CARD */

.advisor-card {
    background:#f3f3f3;
    border-radius: 24px;
    padding: 10px 10px;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .06);

    transition: .35s ease;

    text-align: center;

    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(37, 99, 235, .12);

    border-color: #bfdbfe;

}

/* IMAGE */

.advisor-img {
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 22px;
    border-radius: 50%;
    overflow: hidden;
    background: #f8fafc;
    border: 5px solid #f1f5f9;
}

.advisor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */

.advisor-card h3 {
    font-size:16px;
    line-height: 1.5;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 800;
}

.advisor-card p {
    font-size:13px;
    color: #64748b;
    margin-bottom:8px;
    font-weight: 500;
}

/* LINKEDIN */

.advisor-card a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.advisor-card a:hover {
    background: #2563eb;
    color: #fff;
}

/* =========================================
                LAPTOP
========================================= */

@media(max-width:1200px) {

    .advisory-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================================
                TABLET
========================================= */

@media(max-width:991px) {

    .advisory-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advisory-heading h2 {
        font-size: 42px;
    }

}

/* =========================================
                MOBILE
========================================= */

@media(max-width:768px) {

    .advisory-board-section {
        padding: 70px 20px;
    }

    .advisory-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advisory-heading h2 {
        font-size: 34px;
    }

    .advisor-img {
        width: 130px;
        height: 130px;
    }

    .advisor-card h3 {
        font-size: 22px;
    }

    .advisor-card p {
        font-size: 15px;
    }

}





/* guide section  */

/* =========================================
        ADVISORY QUOTE SECTION
========================================= */

.advisory-quote-section {
    width: 100%;
    padding: 10px 3%;
    background: #ffffff;
}

.advisory-quote-box {
    max-width: 100%;
    margin: auto;
    background: linear-gradient(135deg, #f8fbff, #f4f7ff);
    border-radius: 34px;
    padding: 2px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid #edf2ff;
}

/* LEFT */

.quote-left {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    width: 70%;
}

/* QUOTE ICON */

.quote-icon {
    min-width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 34px;
}

/* CONTENT */

.quote-content h2 {
    font-size: 17px;
        line-height: 1.3;
        color: #08143c;
        margin-bottom: 5px;
        font-weight: 800;
}

.quote-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #475569;
    max-width: 850px;
}

/* RIGHT */

.quote-right {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.quote-users-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.7);
}

/* =========================================
                TABLET
========================================= */

@media(max-width:991px) {

    .advisory-quote-box {
        flex-direction: column;
        text-align: center;
        padding: 45px 35px;
    }

    .quote-left {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .quote-right {
        width: 100%;
        justify-content: center;
    }

    .quote-content h2 {
        font-size: 38px;
    }

    .quote-content p {
        font-size: 17px;
    }

}

/* =========================================
                MOBILE
========================================= */

@media(max-width:768px) {

    .advisory-quote-section {
        padding: 60px 20px;
    }

    .advisory-quote-box {
        border-radius: 24px;
        padding: 35px 22px;
    }

    .quote-content h2 {
        font-size: 28px;
    }

    .quote-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .quote-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .quote-users-icon {
        width: 110px;
        height: 110px;
        font-size: 48px;
    }

}



/* contact us page styling  */

.cnt9_section {
    width: 100%;
    padding: 20px 20px;
    background: #f4f8ff;
}

    /* max-width: 1300px; */
.cnt9_container {
        max-width:1200px;
        margin: auto;
        display: flex;
        gap: 40px;
        align-items: stretch;
        justify-content:center;
    }


/* LEFT SIDE */

.cnt9_left {
    width: 38%;
    background: linear-gradient(135deg, #0b1f5d, #123b9e);
    border-radius: 25px;
    padding: 15px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cnt9_left::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.cnt9_left::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
}

.cnt9_title {
    font-size:28px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.cnt9_text {
    font-size: 14px;
    line-height: 28px;
    color: #dce6ff;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.cnt9_info_box {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.cnt9_icon {
    min-width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.cnt9_info h3 {
    font-size:14px;
    margin-bottom: 6px;
}

.cnt9_info p {
    font-size: 14px;
    color: #dbe5ff;
    line-height: 26px;
}

/* RIGHT SIDE */

.cnt9_right {
    width: 45%;
    background: #fff;
    border-radius: 25px;
    padding: 15px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cnt9_form_title {
    font-size:30px;
    color: #0d1f52;
    margin-bottom: 10px;
    font-weight: 700;
}

.cnt9_form_text {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
}

.cnt9_form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:38px;
}

.cnt9_input_box {
    width: 100%;
}

.cnt9_input_box.full {
    grid-column: span 2;
}

.cnt9_input,
.cnt9_select,
.cnt9_textarea {
    width: 100%;
    border: 1px solid #d8e1f3;
    border-radius: 14px;
    padding: 17px 18px;
    font-size: 16px;
    outline: none;
    transition: .3s;
    background: #f9fbff;
}

.cnt9_input:focus,
.cnt9_select:focus,
.cnt9_textarea:focus {
    border-color: #2f80ff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47, 128, 255, 0.1);
}

.cnt9_textarea {
    resize: none;
    height: 160px;
}

.cnt9_btn {
    border: none;
    background: linear-gradient(135deg, #1677ff, #0d47c9);
    color: #fff;
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: .3s;
}

.cnt9_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(22, 119, 255, 0.25);
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .cnt9_container {
        flex-direction: column;
    }

    .cnt9_left,
    .cnt9_right {
        width: 100%;
    }

}

@media(max-width:768px) {

    .cnt9_section {
        padding:10px 15px;
    }

    .cnt9_left,
    .cnt9_right {
        padding: 10px 10px;
    }

    .cnt9_title,
    .cnt9_form_title {
        font-size: 32px;
    }

    .cnt9_form {
        grid-template-columns: 1fr;
    }

    .cnt9_input_box.full {
        grid-column: span 1;
    }

}

@media(max-width:480px) {

    .cnt9_title,
    .cnt9_form_title {
        font-size: 28px;
    }

    .cnt9_info_box {
        flex-direction: column;
    }

    .cnt9_icon {
        width: 58px;
    }

}




/* safal page code  */



.about-spark-section {
    width: 100%;
    padding:8px 40px;
    background: #fff;
    margin-top:20px;
}

/* CONTAINER */

/* .about-spark-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
} */

/* IMAGE */

/* .about-spark-image {
    flex: 1;
} */

/* .about-spark-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
} */

/* CONTENT */

.about-spark-content {
    flex: 1;
}

.about-spark-content h2 {
    font-size:23px;
    font-weight: 800;
    color: #081133;
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-spark-content h2 span {
    color: rgb(60 101 195);
}

.about-spark-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 24px;
    font-weight: 500;
}

/* FEATURES */

.spark-features {
    margin-top: 35px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.spark-feature-box {
    padding: 12px 20px;
    text-align: center;
    border-right: 1px solid #edf0f5;
    transition: .35s;
    background-color:#ff980012;
}

.spark-feature-box:last-child {
    border-right: none;
}

.spark-feature-box:hover {
    background: #f8fbff;
    transform: translateY(-5px);
}

.spark-feature-box i {
    font-size: 42px;
    color: #4f46e5;
    margin-bottom: 20px;
}

.spark-feature-box h4 {
    font-size: 13px;
    line-height: 1.6;
    color: #0f172a;
    font-weight: 700;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1200px) {

    .about-spark-container {
        flex-direction: column;
    }

    .about-spark-content {
        text-align: center;
    }

    .spark-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .about-spark-section {
        padding: 50px 20px;
    }

    .about-spark-content h2 {
        font-size: 23px;
    }

    .about-spark-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .spark-features {
        grid-template-columns: 1fr;
    }

    .spark-feature-box {
        border-right: none;
        border-bottom: 1px solid #edf0f5;
    }

    .spark-feature-box:last-child {
        border-bottom: none;
    }

    .spark-feature-box h4 {
        font-size: 18px;
    }
}



.about-spark-container {
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE SIDE SMALL */

.about-spark-image {
    flex: 0 0 35%;
    max-width: 35%;
}

/* TEXT SIDE LARGE */

.about-spark-content {
    flex: 0 0 61%;
    max-width: 61%;
}

/* IMAGE */

.about-spark-image img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* TEXT */

.about-spark-content h2 {
    font-size:23px;
    font-weight: 800;
    color: #081133;
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-spark-content h2 span {
    color: rgb(60 101 195);
}

.about-spark-content p {
    font-size: 13px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 24px;
    font-weight: 500;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1200px) {

    .about-spark-container {
        flex-direction: column;
    }

    .about-spark-image,
    .about-spark-content {
        max-width: 100%;
        flex: 100%;
    }

    .about-spark-content {
        text-align: center;
    }

    .spark-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .about-spark-section {
        padding: 40px 20px;
    }

    .about-spark-content h2 {
        font-size:23px;
    }

    .about-spark-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .spark-features {
        grid-template-columns: 1fr;
    }
}


/* Ai Program section styling  */

/* SECTION */

.program-bar-section {
    width: 100%;
    padding: 20px;
    background: #fff;
}

/* MAIN BAR */

.program-bar {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding:5px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:#2196f30d;
}

/* LEFT SIDE */

.program-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

/* COURSE */

.program-course,
.program-students {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ICONS */

.program-icon,
.student-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
background: linear-gradient(180deg,
            #27457a 0%,
            #3f63b4 25%,
            #5373c9 55%,
            #7a95da 100%);
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
}

.student-icon {
    background: transparent;
    color: rgb(57 98 190);
    border: 2px solid #ddd6fe;
}

/* TEXT */

.program-text span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 6px;
}

.program-text h3 {
    font-size:13px;
    color: #111827;
    font-weight: 800;
    line-height: 1.2;
}

/* DIVIDER */

.program-divider {
    width: 1px;
    height: 70px;
    background: #e5e7eb;
}

/* RIGHT SIDE */

.program-right {
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1px solid #ede9fe;
    border-radius: 14px;
    padding: 14px 18px;
}

/* FEATURES */

.program-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 18px;
    border-right: 1px solid #e5e7eb;
}

.program-feature:last-child {
    border-right: none;
    padding-right: 0;
}

/* FEATURE ICON */

.program-feature i {
    font-size: 24px;
    color: rgb(57 98 190);
}

/* FEATURE TEXT */

.program-feature span {
    font-size: 14px;
    line-height: 1.5;
    color: #111827;
    font-weight: 700;
}

/* NOTE */

.program-note {
    max-width: 120px;
    font-size: 12px;
    line-height: 1.6;
    color:#0e52d8;
    font-weight: 600;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1200px) {

    .program-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .program-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media(max-width:768px) {

    .program-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        width: 100%;
    }

    .program-divider {
        display: none;
    }

    .program-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .program-feature {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 16px;
    }

    .program-feature:last-child {
        border-bottom: none;
    }

    .program-text h3 {
        font-size: 24px;
    }
}

@media(max-width:576px) {

    .program-bar {
        padding: 18px;
    }

    .program-icon,
    .student-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .program-text h3 {
        font-size: 13px;
    }

    .program-feature span {
        font-size: 13px;
    }
}


/* safal courses */

.program-structure-section {
    width: 100%;
    padding:0px 20px;
    background: #fff;
}

.container {
    max-width:100%;
    margin: auto;
}

.section-title {
    /* text-align: center; */
    font-size: 30px;
    font-weight: 700;
    /* color: #18214d; */
    margin-bottom:15px;
    background: linear-gradient(90deg,
                #57D8FF 0%,
                #4CB6FF 30%,
                #5D8DFF 65%,
                #72E5B8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
}



.program-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.program-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 20px;
    border: 1px solid #e8e8e8;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card-header h3 {
    font-size:15px;
    font-weight: 700;
    margin-bottom:8px;
}

.card-header sup {
    font-size: 14px;
}

.features,
.topics {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* FEATURES - SAME RAHENGE */
.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    font-size: 12px;
    line-height: 1.5;
    color: #1d1d1d;
    margin-bottom: 8px;
}

/* TOPICS - CUSTOM STYLE */
.topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topics li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #1d1d1d;
    margin-bottom: 8px;
}

.topics li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2f57ab;
    font-weight: 700;
}

.program-card h4 {
        font-size: 12px;
        margin: 10px 0 10px;
        font-weight: 700;
}

.btn-group {
    margin-top: 25px;
}

.btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 48px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.enroll {
    color: #fff;
    margin-bottom: 12px;
}

.brochure {
    background: #fff;
}

/* COLORS */

.green h3,
.green h4 {
    color: #0f7b34;
}

.green .enroll {
    background: #0f7b34;
}

.green .brochure {
    border: 2px solid #0f7b34;
    color: #0f7b34;
}

/* PURPLE */

.purple h3,
.purple h4 {
    color: #7c3aed;
}

.purple .enroll {
    background: #7c3aed;
}

.purple .brochure {
    border: 2px solid #7c3aed;
    color: #7c3aed;
}

/* BLUE */

.blue h3,
.blue h4 {
    color: #2563eb;
}

.blue .enroll {
    background: #2563eb;
}

.blue .brochure {
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* ORANGE */

.orange h3,
.orange h4 {
    color: #f97316;
}

.orange .enroll {
    background: #f97316;
}

.orange .brochure {
    border: 2px solid #f97316;
    color: #f97316;
}

/* PINK */

.pink h3,
.pink h4 {
    color: #ec4899;
}

.pink .enroll {
    background: #ec4899;
}

.pink .brochure {
    border: 2px solid #ec4899;
    color: #ec4899;
}

/* CYAN */

.cyan h3,
.cyan h4 {
    color: #0891b2;
}

.cyan .enroll {
    background: #0891b2;
}

.cyan .brochure {
    border: 2px solid #0891b2;
    color: #0891b2;
}

/* SKY */

.sky h3,
.sky h4 {
    color: #0284c7;
}

.sky .enroll {
    background: #0284c7;
}

.sky .brochure {
    border: 2px solid #0284c7;
    color: #0284c7;
}

/* RESPONSIVE */

@media(max-width:1400px) {
    .program-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:992px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 28px;
    }
}

@media(max-width:576px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        padding: 22px 18px;
    }

    .card-header h3 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .features li,
    .topics li {
        font-size: 14px;
    }
}




/* DOWNLOAD BROCHOURE  */

/* SECTION */


/* =========================
    PROGRAM BENEFITS
========================= */

.program-benefits-section {
    width: 100%;
    padding:15px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.program-benefits-container {
    max-width: 100%;
        margin: auto;
        border: 1px solid #e7e9f1;
        border-radius: 18px;
        background: #f443360f;
        padding: 8px 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* TITLE */

.benefits-title {
    margin-bottom: 30px;
}

.benefits-title h2 {
    font-size:18px;
    color: #151d4b;
    font-weight: 700;
    line-height: 1.2;
}

/* WRAPPER */

.benefits-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* ITEM */

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

/* ICON */

.benefit-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border: 2px solid #d9d6f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: rgb(57 98 190);
}

/* CONTENT */

.benefit-content h4 {
    font-size: 13px;
    color: #18214d;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.benefit-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #5d6485;
    font-weight: 500;
}

/* =========================
        RESPONSIVE
========================= */

/* LARGE LAPTOP */

@media(max-width:1400px) {

    .benefits-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* TABLET */

@media(max-width:992px) {

    .program-benefits-container {
        padding: 25px 20px;
    }

    .benefits-title h2 {
        font-size: 34px;
    }

    .benefits-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .benefit-content h4 {
        font-size: 17px;
    }

    .benefit-content p {
        font-size: 14px;
    }
}

/* MOBILE */

@media(max-width:576px) {

    .program-benefits-section {
        padding: 20px 15px;
    }

    .program-benefits-container {
        border-radius: 14px;
        padding: 22px 16px;
    }

    .benefits-title {
        margin-bottom: 25px;
    }

    .benefits-title h2 {
        font-size: 28px;
        text-align: center;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .benefit-icon i {
        font-size: 20px;
    }

    .benefit-content h4 {
        font-size: 16px;
    }

    .benefit-content p {
        font-size: 13px;
        line-height: 1.6;
    }
}









/* about -safal */
/* =========================
   ABOUT IAIR SAFAL SECTION
========================= */

.iair-safal-section {
    width: 100%;
    background: #fff;
    padding: 8px 40px;
    font-family: 'Poppins', sans-serif;
}

.iair-safal-container {
    max-width:100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid #f0f0f0;
    padding: 5px 20px;
    border-radius: 12px;
    background-color:#f0ffff66;
}

/* LEFT SIDE */

.iair-left {
    width: 32%;
    padding-right: 30px;
    border-right: 1px solid #e6e6e6;
    /* background-color: #bed4fa42; */
}

.iair-left h2 {
    font-size:25px;
    font-weight: 700;
    color: #0a1b57;
    margin-bottom: 18px;
    line-height: 1.2;
}

.iair-left p {
    font-size: 13px;
    line-height: 1.9;
    color: #4a4a4a;
    font-weight: 400;
    text-align:justify;
}

/* RIGHT SIDE */

.iair-right {
    width: 68%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background-color:#607d8b17;
}

.iair-feature {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.iair-feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 10px;
    width: 1px;
    height: 120px;
    background: #e8e8e8;
}

.iair-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 10px;
    margin-top:10px;
    border-radius: 50%;
    background: #f4f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.iair-icon i {
    font-size: 22px;
    color: #1d4ed8;
}

.iair-feature h4 {
    font-size: 13px;
    line-height: 1.5;
    color: #0a1b57;
    font-weight: 600;
}

/* =========================
        RESPONSIVE
========================= */

/* Laptop */

@media(max-width:1200px) {

    .iair-safal-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .iair-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
        padding-right: 0;
        padding-bottom: 30px;
    }

    .iair-right {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .iair-feature:nth-child(3)::after {
        display: none;
    }
}

/* Tablet */

@media(max-width:768px) {

    .iair-safal-section {
        padding: 40px 20px;
    }

    .iair-left h2 {
        font-size: 30px;
    }

    .iair-left p {
        font-size: 15px;
    }

    .iair-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .iair-feature::after {
        display: none;
    }

    .iair-icon {
        width: 75px;
        height: 75px;
    }

    .iair-icon i {
        font-size: 30px;
    }

    .iair-feature h4 {
        font-size: 16px;
    }
}

/* Mobile */

@media(max-width:480px) {

    .iair-right {
        grid-template-columns: 1fr;
    }

    .iair-left h2 {
        font-size: 26px;
    }

    .iair-left p {
        font-size: 14px;
        line-height: 1.8;
    }

    .iair-feature {
        padding-bottom: 25px;
        border-bottom: 1px solid #ececec;
    }

    .iair-feature:last-child {
        border-bottom: none;
    }
}


/* CERTIFICATION PROGRAM STYLING  */

/* =========================
   CERTIFICATION PROGRAMS
========================= */

.certification-programs {
    width: 100%;
    padding:20px 40px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.programs-container {
    max-width:100%;
    margin: auto;
}

/* TITLE */

.section-title {
    /* text-align: center; */
    margin-bottom:10px;
}

.section-title h2 {
    font-size:22px;
    font-weight: 700;
    color: #0d1440;
    margin-bottom: 12px;
}

/* .section-title span {
    width: 90px;
    height: 4px;
    background: #1d4ed8;
    display: inline-block;
    border-radius: 20px;
} */

/* GRID */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */

.program-card {
   background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 20px;
    padding: 26px;
    transition: 0.3s ease;
    background-color: #ffc1070d;

}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* TOP */

.program-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ICON */

.program-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon img {
    width: 60px;
}

.program-icon i {
    font-size: 23px;
}

/* BACKGROUND COLORS */

.blue-bg {
    background: #edf4ff;
}

.green-bg {
    background: #eef9ec;
}

.purple-bg {
    background: #f4eefe;
}

.purple-bg i {
    color: #7c3aed;
}

/* CONTENT */

.program-content {
    flex: 1;
}

.program-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.blue-badge {
    background: #edf4ff;
    color: #2563eb;
}

.green-badge {
    background: #eef9ec;
    color: #2e7d32;
}

.purple-badge {
    background: #f4eefe;
    color: #7c3aed;
}

.program-content h3 {
    font-size:15px;
    line-height: 1.25;
    color: #111827;
    margin-bottom:5px;
    font-weight: 700;
}

.program-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #4b5563;
    FONT-WEIGHT: 500;
}

/* FEATURES */

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap:7px;
    margin-top: 6px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.program-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #374151;
    font-weight: 500;
}

.program-features i {
    font-size: 15px;
}

/* BUTTON */

.enroll-btn {
    width: 100%;
        margin-top: 16px;
        height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        color: #fff;
        font-size: 17px;
        font-weight: 500;
        transition: 0.3s ease;
}

.enroll-btn:hover {
    transform: translateY(-2px);
}

.blue-btn {
    background: linear-gradient(90deg, #2563eb, #0f52d6);
}

.green-btn {
    background: linear-gradient(90deg, #1b7d25, #0d6b18);
}

.purple-btn {
    background: linear-gradient(90deg, #6d28d9, #5b21b6);
}

/* =========================
       RESPONSIVE
========================= */

/* LARGE TABLET */

@media(max-width:1200px) {

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-content h3 {
        font-size: 28px;
    }
}

/* TABLET */

@media(max-width:768px) {

    .certification-programs {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-top {
        flex-direction: column;
    }

    .program-icon {
        width: 85px;
        height: 85px;
    }

    .program-content h3 {
        font-size: 26px;
    }

    .program-content p {
        font-size: 15px;
    }

    .program-features {
        gap: 14px;
    }

    .program-features span {
        font-size: 14px;
    }
}

/* MOBILE */

@media(max-width:480px) {

    .section-title h2 {
        font-size: 28px;
    }

    .program-card {
        padding: 20px;
        border-radius: 16px;
    }

    .program-content h3 {
        font-size: 22px;
    }

    .program-badge {
        font-size: 12px;
        padding: 7px 14px;
    }

    .enroll-btn {
        height: 52px;
        font-size: 15px;
    }

    .program-features {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* TOP FOOTER SAFAL  */

/* =========================
    LEARNING FEATURES STRIP
========================= */

.learning-features-section {
    width: 100%;
    padding:6px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.learning-features-container {
    max-width:96%;
    margin: auto;
    background: #f9fbff;
    border: 1px solid #e4e8f1;
    border-radius: 16px;
    padding: 20px 10px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

/* FEATURE ITEM */

.learning-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
    position: relative;
    min-height: 70px;
}

/* BORDER */

.learning-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55px;
    background: #dfe4ee;
}

/* ICON */

.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 25px;
    color: #243f8f;
}

/* CONTENT */

.feature-content h4 {
    font-size: 14px;
    line-height: 1.3;
    color: #15214d;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 12px;
    line-height: 1.4;
    color: #4f5d84;
    font-weight: 500;
}

/* =========================
        RESPONSIVE
========================= */

/* LARGE LAPTOP */

@media(max-width:1400px) {

    .learning-features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 0;
    }

    .learning-feature-item:nth-child(3)::after {
        display: none;
    }
}

/* TABLET */

@media(max-width:992px) {

    .learning-features-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 15px;
    }

    .learning-feature-item::after {
        display: none;
    }

    .learning-feature-item {
        border-bottom: 1px solid #e3e7f0;
        padding: 20px;
    }

    .learning-feature-item:last-child {
        border-bottom: none;
    }

    .feature-content h4 {
        font-size: 20px;
    }

    .feature-content p {
        font-size: 16px;
    }
}

/* MOBILE */

@media(max-width:576px) {

    .learning-features-section {
        padding: 15px;
    }

    .learning-features-container {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .learning-feature-item {
        padding: 18px 12px;
        gap: 15px;
        min-height: auto;
    }

    .feature-icon i {
        font-size: 34px;
    }

    .feature-content h4 {
        font-size: 17px;
    }

    .feature-content p {
        font-size: 14px;
    }
}




/* POPUP CSS  */

/* BUTTON */

.open-register-popup {
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    /* margin: 20px; */
}

/* POPUP */

.register-popup {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.register-popup.active {
    display: flex;
}

/* OVERLAY */

.register-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
}

/* BOX */

.register-box {
    position: relative;
    width: 100%;
    max-width:760px;
    background: #fff;
    border-radius: 24px;
    padding:15px 20px;
    z-index: 2;
    overflow-y: auto;
    max-height: 95vh;
    animation: popupAnim .35s ease;
}

/* ANIMATION */

@keyframes popupAnim {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CLOSE */

.register-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f2f5ff;
    color: #253b80;
    font-size: 18px;
    cursor: pointer;
}

/* TOP */

.register-top {
    text-align: center;
    margin-bottom: 35px;
}

.register-top h1 {
    font-size: 64px;
    color: #162a63;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

.register-top h2 {
    font-size:20px;
    color: #15214d;
    font-weight: 700;
    margin-bottom: 10px;
}

.register-top p {
    color: #6b7280;
    font-size: 11px;
}

/* FORM */

.register-form {
    width: 100%;
}

/* ROW */

.register-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom:15px;
}

/* GROUP */

.register-group {
    width: 100%;
}

.register-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.register-group label span {
    color: #ef4444;
}

/* INPUT BOX */

.input-box {
    width: 100%;
    height: 39px;
    border: 1px solid #dce2f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #fff;
    transition: 0.3s;
}

.input-box:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.input-box i {
    color: #7b849f;
    font-size: 16px;
    margin-right: 12px;
}

/* INPUT */

.input-box input,
.input-box select {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 13px;
    color: #111827;
}

/* OTP */

.otp-wrapper {
    display: flex;
    gap: 14px;
}

.otp-wrapper .input-box {
    flex: 1;
}

.otp-btn {
    width: 150px;
    border: none;
    border-radius: 12px;
    background: #edf4ff;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.otp-btn:hover {
    background: #2563eb;
    color: #fff;
}

/* FULL */

.full-width {
    margin-bottom: 22px;
}

/* COUPON */

.coupon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.coupon-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 600;
}

.coupon-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.coupon-right input {
    width: 100%;
    max-width: 260px;
    height: 40px;
    border: 1px solid #dce2f0;
    border-radius: 10px;
    padding: 0 16px;
    outline: none;
}

.coupon-right button {
    width: 110px;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #edf4ff;
    color: #2563eb;
    font-weight: 600;
    cursor: pointer;
}

/* REGISTER BUTTON */

.register-btn {
    width: 100%;
    height:45px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}

.register-btn:hover {
    transform: translateY(-2px);
}

/* SECURE */

.secure-text {
    margin-top: 18px;
    text-align: center;
    color: #6b7280;
    font-size: 12px;
}

.secure-text i {
    margin-right: 6px;
}

/* =========================
        RESPONSIVE
========================= */

/* TABLET */

@media(max-width:768px) {

    .register-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .register-top h1 {
        font-size: 48px;
    }

    .register-top h2 {
        font-size: 30px;
    }

    .register-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .otp-wrapper {
        flex-direction: column;
    }

    .otp-btn {
        width: 100%;
        height: 52px;
    }

    .coupon-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon-right {
        width: 100%;
        flex-direction: column;
    }

    .coupon-right input {
        max-width: 100%;
    }

    .coupon-right button {
        width: 100%;
    }
}

/* MOBILE */

@media(max-width:480px) {

    .register-popup {
        padding: 10px;
    }

    .register-box {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .register-close {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .register-top {
        margin-bottom: 28px;
    }

    .register-top h1 {
        font-size: 40px;
    }

    .register-top h2 {
        font-size: 24px;
    }

    .register-top p {
        font-size: 14px;
    }

    .register-group label {
        font-size: 14px;
    }

    .input-box {
        height: 52px;
        padding: 0 14px;
    }

    .input-box input,
    .input-box select {
        font-size: 14px;
    }

    .register-btn {
        height: 54px;
        font-size: 16px;
    }

    .secure-text {
        font-size: 12px;
        line-height: 1.5;
    }
}



/* whatsapp icons  */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        right: 15px;
        bottom: 15px;
        font-size: 30px;
    }
}



/* home page cousres name haldling  */
.initiative-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-item {
    display: flex;
    flex-direction: column;
}

.course-heading {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 15px;
}

@media(max-width:991px) {
    .initiative-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .initiative-cards {
        grid-template-columns: 1fr;
    }

    .course-heading {
        font-size: 16px;
    }
}

.card-header {
    padding: 0;
    margin-bottom: 18px;
    background: none;
}

.card-header h3 {
display: inline-flex;
    align-items: center;
    gap: 0px;
    margin: 0;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    background-color: rgb(2 147 211);
    /* background: linear-gradient(180deg, #27457a 0%, #3f63b4 25%, #5373c9 55%, #7a95da 100%); */
    border-left: 5px solid green;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}


.card-header h3::before {
    content: "";
    font-size: 18px;
}

.card-header sup {
    font-size: 12px;
}




.features {
    list-style: none;
    /* padding: 20px; */
    margin: 0;
}

.features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 500;
}

.features li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 2px;
}




/* registration form  */

.registration-section {
    padding:5px 20px;
    background: #f5f8ff;
}

.register-container {
    max-width:50%;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: 10px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
}

.register-top {
    text-align: center;
    margin-bottom: 30px;
}

.register-top h2 {
    color: #0f4c81;
    font-size:20px;
    margin-bottom: 8px;
}

.register-top p {
    color: #64748b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
    font-size:14px;
}

.form-group span {
    color: red;
}

.input-box {
    display: flex;
    align-items: center;
    height:45px;
    border: 1px solid #d7deea;
    border-radius: 14px;
    padding: 0 18px;
    background: #fff;
    transition: .3s;
}

.input-box:hover {
    border-color: #1e88e5;
}

.input-box:focus-within {
    border-color: #1e88e5;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, .10);
}

.input-box i {
    color: #7c86a5;
    margin-right: 12px;
}

.input-box input,
.input-box select {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 15px;
}

.full {
    margin-bottom: 20px;
}

.otp-wrap {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 14px;
}

.otp-btn {
    border: none;
    border-radius: 14px;
    background: #e8efff;
    color: #2563eb;
    font-weight: 700;
    cursor: pointer;
}

.coupon-box {
    margin-top: 20px;
    border: 1px solid #d7deea;
    border-radius: 18px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.coupon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #475569;
}

.coupon-right {
    display: flex;
    gap: 12px;
}

.coupon-right input {
    width: 260px;
    height: 48px;
    border: 1px solid #d7deea;
    border-radius: 12px;
    padding: 0 15px;
}

.coupon-right button {
    width: 110px;
    border: none;
    border-radius: 12px;
    background: #e8efff;
    color: #2563eb;
    font-weight: 700;
}

.register-btn {
    width: 30%;
    margin-top: 25px;
    height:50px;
    border: none;
    border-radius: 16px;

    background: linear-gradient(90deg,
            #2563eb,
            #4f46e5,
            #9333ea);

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.secure-text {
    margin-top: 16px;
    text-align: center;
    color: #64748b;
    font-size: 12px;
}

@media(max-width:768px) {

    .register-container {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .otp-wrap {
        grid-template-columns: 1fr;
    }

    .coupon-box {
        flex-direction: column;
        align-items: stretch;
    }

    .coupon-right {
        flex-direction: column;
    }

    .coupon-right input {
        width: 100%;
    }

    .coupon-right button {
        width: 100%;
        height: 48px;
    }

    .register-top h2 {
        font-size: 28px;
    }
}





/* article page css */

.article-section {
    padding:20px 3%;
    background: #f4f8ff;
}

.article-grid {
    max-width:100%;
    margin: auto;

    display: grid;
    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.article-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;
}

.article-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .12);

}

.article-image {
    height: 240px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.article-card:hover img {
    transform: scale(1.08);
}

.article-content {
    padding: 25px;
}

.article-category {

    display: inline-block;

    padding: 8px 14px;

    background: #e8f2ff;

    color: #2563eb;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 15px;
}

.article-content h3 {

    color: #0f4c81;

    font-size:15px;

    line-height: 1.4;

    margin-bottom: 15px;

    font-weight: 700;
}

.article-content p {

    color: #64748b;

    line-height: 1.8;

    margin-bottom: 25px;
    font-size:13px;
}

.article-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 10px;

    background:
        linear-gradient(135deg,
            #0f4c81,
            #2563eb);

    color: #fff;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
    font-size:12px;
}

.article-btn:hover {
    transform: translateX(5px);
}








