.ita-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: url("../images/Herobg.png") center center / cover no-repeat;
}

.ita-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    pointer-events: none;
    z-index: 1;
}

.ita-hero::after {
    content: "";
    position: absolute;
    right: 78px;
    bottom: 0;
    width: 265px;
    height: 112px;
    background-image: radial-gradient(#0046BF 1.2px, transparent 1.2px);
    background-size: 12px 12px;
    opacity: .75;
    z-index: 2;
}

.ita-hero-circle {
    position: absolute;
    top: -178px;
    right: -12px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}

.ita-hero-corner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 128px;
    height: 196px;
    background: #0046BF;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 3;
}

.ita-slider {
    position: relative;
    z-index: 4;
    display: flex;
    width: 100%;
    transition: transform .65s ease;
    will-change: transform;
}

.ita-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.ita-hero-wrap {
    width: min(100%, 1330px);
    min-height: 650px;
    margin: 0 auto;
    padding: 58px 20px 92px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    align-items: center;
    gap: 20px;
}

.ita-content {
    max-width: 820px;
    padding-left: 0;
}

.ita-tag {
    position: relative;
    display: inline-block;
    margin-bottom: 23px;
    color: #5C575B;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.ita-tag::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 222px;
    max-width: 100%;
    height: 2px;
    background: #F38A12;
}

.ita-content h1 {
    margin: 0 0 32px;
    color: #AA1D01;
    font-size: clamp(40px, 4.15vw, 40px);
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: 0;
}

.ita-content h1 span,
.ita-content h1 strong {
    display: block;
    font: inherit;
}

.ita-content h1 strong {
    color: #0046BF;
}

.ita-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.ita-buttons a {
    min-width: 199px;
    min-height: 45px;
    padding: 12px 24px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, .88);
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.ita-btn-primary {
    background: #0046BF;
    box-shadow: inset 0 16px 32px -4px rgba(12, 12, 13, .1);
}

.ita-btn-secondary {
    background: #F38A12;
}

.ita-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 70, 191, .16);
}

.ita-btn-primary:hover {
    background: #003DA6;
}

.ita-btn-secondary:hover {
    background: #DD7907;
}

.ita-content p {
    max-width: 790px;
    margin: 0 0 44px;
    color: #5C575B;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.ita-stats {
    display: flex;
    align-items: flex-start;
    gap: 46px;
    flex-wrap: wrap;
}

.ita-stat h3 {
    margin: 0 0 4px;
    color: #5C575B;
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
}

.ita-stat span {
    color: #FF6E06;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.ita-image {
    position: relative;
    justify-self: end;
    width: min(100%, 500px);
    margin-top: 12px;
    z-index: 2;
}

.ita-image::before,
.ita-image::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

/* 
.ita-image::before {
    inset: 0 14px 0 80px;
    background: #F38A12;
    z-index: -2;
} */

/* .ita-image::after {
    right: -18px;
    bottom: -18px;
    width: 74%;
    height: 80%;
    border-right: 3px solid #F38A12;
    border-bottom: 3px solid #F38A12;
    z-index: -1;
} */

.ita-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.ita-dots {
    position: absolute;
    left: calc(50% - 565px);
    bottom: 84px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ita-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #D9D9D9;
    cursor: pointer;
    transition: width .25s ease, background-color .25s ease;
}

.ita-dots button.is-active {
    width: 36px;
}

@media (max-width: 1360px) {
    .ita-hero-wrap {
        width: 100%;
        padding-left: 7.8vw;
        padding-right: 7.8vw;
    }

    .ita-dots {
        left: 7.8vw;
    }
}

@media (max-width: 1100px) {
    .ita-hero-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(350px, 420px);
        gap: 24px;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .ita-dots {
        left: 5vw;
    }

    .ita-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .ita-hero {
        min-height: auto;
        background-position: center top;
    }

    .ita-hero-wrap {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 58px 6vw 118px;
        text-align: center;
        gap: 34px;
    }

    .ita-content {
        max-width: 760px;
        margin: 0 auto;
        order: 2;
    }

    .ita-image {
        justify-self: center;
        width: min(100%, 470px);
        margin-top: 0;
        order: 1;
    }

    .ita-buttons,
    .ita-stats {
        justify-content: center;
    }

    .ita-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ita-tag::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ita-dots {
        left: 50%;
        bottom: 68px;
        transform: translateX(-50%);
    }

    .ita-hero-circle {
        width: 390px;
        height: 390px;
        top: -170px;
        right: -130px;
    }

    .ita-hero-corner,
    .ita-hero::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .ita-hero-wrap {
        padding: 42px 20px 110px;
    }

    .ita-tag {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .ita-content h1 {
        margin-bottom: 24px;
        font-size: 32px;
        line-height: 1.3;
    }

    .ita-content p {
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.7;
        text-align: justify;
    }

    .ita-feature-card p {
        color: #d7d7d7;
        font-size: 15px;
        line-height: 24px;
        text-align: justify;
    }

    .ita-buttons {
        gap: 12px;
    }

    .ita-buttons a {
        width: 100%;
        min-width: 0;
    }

    .ita-stats {
        gap: 24px;
    }

    .ita-stat {
        min-width: 88px;
    }

    .ita-stat h3 {
        font-size: 24px;
    }

    .ita-image {
        width: min(100%, 390px);
    }

    .ita-image::before {
        inset: 0 10px 0 52px;
    }
}

@media (max-width: 420px) {
    .ita-content h1 {
        font-size: 17px;
    }

    .ita-stats {
        gap: 18px;
    }

    .ita-stat span {
        font-size: 13px;
    }
}

.ita-program-showcase {
    background: #EEF8FF;
    padding: 0 20px 72px;
}

.ita-info-banner {
    max-width: 1180px;
    width: 100%;
    margin: -56px auto 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(21, 42, 68, .18);
    border: 1px solid rgba(16, 82, 120, .08);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 99;
}

.ita-info-top {
    display: flex;
    align-items: center;
    background: #FFF1DF;
    padding: 18px 36px;
    gap: 28px;
    min-height: 108px;
}

.ita-info-logo img {
    width: 132px;
    height: auto;
    display: block;
}

.ita-info-divider {
    width: 1px;
    height: 108px;
    background-color: #ffffff;
    opacity: .9;
    border-radius: 0;
}

.ita-info-text-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ita-info-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.ita-info-slide {
    min-width: 100%;
    box-sizing: border-box;
    color: #105278;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    padding-right: 18px;
}

.ita-info-slide p {
    margin: 0;
}

.ita-info-controls {
    display: flex;
    gap: 22px;
    align-items: center;
}

.ita-info-controls button {
    background: none;
    border: none;
    color: #F08F12;
    font-size: 15px;
    cursor: pointer;
    opacity: .75;
    transition: opacity 0.3s;
    padding: 5px;
}

.ita-info-controls button:hover {
    opacity: 1;
}

.ita-info-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px 42px;
    background: #ffffff;
    flex-wrap: wrap;
    gap: 0;
    min-height: 72px;
}

.ita-info-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    padding: 0 38px;
    border-right: 1px solid #B9B9B9;
}

.ita-info-feature:last-child {
    border-right: 0;
}

.ita-feature-icon {
    padding: 0;
    background: rgba(240, 143, 18, 0.10);
    border-radius: 4px;
    color: #F08F12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: 22px;
    height: 18px;
    box-sizing: border-box;
}

.ita-info-feature h3 {
    margin: 0;
    color: #F08F12;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

/* --- Info Banner Responsive Adjustments --- */
@media (max-width: 1024px) {
    .ita-info-top {
        padding: 20px;
        gap: 20px;
    }

    .ita-info-bottom {
        padding: 26px 22px;
        justify-content: center;
    }

    .ita-info-feature {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .ita-program-showcase {
        padding: 0 15px 58px;
    }

    .ita-info-banner {
        width: 100%;
        margin: -40px auto 0;
    }

    .ita-info-top {
        flex-direction: column;
        text-align: center;
    }

    .ita-info-divider {
        width: 80%;
        height: 2px;
    }

    .ita-info-text-slider {
        margin: 15px 0;
    }

    .ita-info-slide {
        padding: 0;
        font-size: 14px;
        text-align: justify;
    }

    .ita-info-feature {
        width: 100%;
        justify-content: center;
        padding: 0;
        border-right: 0;
    }

    .ita-info-bottom {
        flex-direction: column;
        padding: 26px 20px;
        gap: 18px;
    }

    .ita-info-feature h3 {
        margin: 0;
        color: #F08F12;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.2;
    }
}

.ita-collab {
    width: 100%;
    margin: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 66px 20px 0;
    overflow: hidden;
    text-align: center;
}

.ita-collab-container {
    max-width: 1096px;
    margin: 0 auto;
}

.ita-collab h2 {
    color: #0046BF;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 auto 48px auto;
}

.ita-collab-slider {
    width: min(100%, 850px);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.ita-collab-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.ita-collab-track:hover {
    animation-play-state: paused;
}

.ita-collab-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ita-collab-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Collab Section Responsive Adjustments --- */
@media (max-width: 768px) {
    .ita-collab {
        padding: 52px 0 0;
    }

    .ita-collab h2 {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .ita-collab-track {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .ita-collab h2 {
        font-size: 17px;
    }
}





/* ===========================
ABOUT SECTION
=========================== */

.ita-about {
    position: relative;
    overflow: hidden;
    background: #030131;
    padding: 90px 0;
}

.ita-about-container {
    width: 90%;
    max-width: 1290px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Glow */

.ita-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
}

.ita-glow-1 {
    width: 600px;
    height: 600px;
    background: #00D4FF;
    left: -180px;
    top: -100px;
}

.ita-glow-2 {
    width: 500px;
    height: 500px;
    background: #2563EB;
    right: -150px;
    bottom: -120px;
}

/* Left */

.ita-about-content {
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.ita-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(255, 153, 0, .1);
    border: 1px solid rgba(255, 153, 0, .2);

    color: #FF9900;
    font-size: 14px;
}

.ita-about-content h2 {
    margin: 24px 0;
    color: #FF9900;

    font-size: 31px;
    line-height: 1.3;
    font-weight: 700;
}

.ita-about-content p {
    color: #fff;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 18px;
}

.ita-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;

    padding: 12px 24px;

    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;

    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.ita-read-btn:hover {
    background: #FF9900;
    border-color: #FF9900;
}

/* ===========================
CARDS GRID
=========================== */

.ita-feature-grid {
    flex: 1;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    position: relative;
    z-index: 2;
}

.ita-feature-card {
    padding: 24px;

    border-radius: 14px;

    background:
        conic-gradient(from 180deg,
            #00033A 200deg,
            #502D00 360deg);

    border: 1px solid rgba(255, 255, 255, .35);

    backdrop-filter: blur(8px);

    transition: .35s;
}

.ita-feature-card:hover {
    transform: translateY(-8px);
}

.ita-feature-card i {
    font-size: 30px;
    color: #FFD54F;
    margin-bottom: 15px;
}

.ita-feature-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ita-feature-card p {
    color: #d7d7d7;
    font-size: 15px;
    line-height: 24px;
}

/* Different icon colors */

.ita-feature-card:nth-child(2) i {
    color: #B4C5FF;
}

.ita-feature-card:nth-child(3) i {
    color: #7ED321;
}

.ita-feature-card:nth-child(4) i {
    color: #FFB4AB;
}

/* ===========================
TABLET
=========================== */

@media(max-width:991px) {

    .ita-about-container {
        flex-direction: column;
        gap: 50px;
    }

    .ita-about-content {
        max-width: 100%;
        text-align: center;
    }

}

/* ===========================
MOBILE
=========================== */

@media(max-width:576px) {

    .ita-about {
        padding: 70px 0;
    }

    .ita-about-content h2 {
        font-size: 18px;
    }

    .ita-about-content p {
        font-size: 13px;
        line-height: 26px;
        text-align: justify;
    }

    .ita-feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ita-feature-card {
        padding: 20px;
    }

    .ita-feature-card h3 {
        font-size: 20px;
    }

}






/* ==========================
SECTION
========================== */

.ita-who-section {
    padding: 70px 0;
    background: linear-gradient(312deg,
            #FFEBD2 0%,
            #FFFBF5 100%);
    overflow: hidden;
}

.ita-who-container {
    width: 90%;
    max-width: 1272px;
    margin: auto;

    display: flex;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}

/* ==========================
LEFT CARD
========================== */

.ita-who-card {
    width: 370px;
    flex: 0 0 370px;
    min-height: 520px;

    background:
        linear-gradient(rgba(255, 255, 255, .78),
            rgba(255, 255, 255, .78)),
        url("../images/who we are.png");

    background-size: cover;
    background-position: center;

    border-radius: 0;

    padding: 24px 40px 28px;

    box-shadow: none;
}

.ita-small-title {
    display: block;

    color: #0046BF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.ita-line {
    width: 80px;
    height: 3px;
    background: #FF9900;
    margin: 8px 0 18px;
}

.ita-who-card p {
    color: #5C575B;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

/* ==========================
RIGHT SIDE
========================== */

.ita-vision-wrap {
    flex: 1;

    display: flex;
    gap: 0;
    min-width: 0;
}

.ita-expand-card {
    flex: 1 1 0;
    min-height: 520px;

    border-radius: 0;

    position: relative;
    overflow: hidden;

    transition: flex .55s ease, filter .35s ease;

    cursor: pointer;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(.85);
}

/* Hover Effect */

.ita-vision-wrap:hover .ita-expand-card {
    flex: .78 1 0;
}

.ita-vision-wrap .ita-expand-card:hover {
    flex: 1.55 1 0;
    filter: saturate(1.08);
}

/* Background Images */

.mission {
    background-image:
        url("../images/our mission.png");
}

.vision {
    background-image:
        url("../images/Our Vision.png");
}

.help {
    background-image:
        url("../images/Student Help.png");
}

/* Dark Overlay */

.ita-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .60) 0%,
            rgba(0, 0, 0, .48) 47%,
            rgba(0, 0, 0, .32) 100%);
    transition: background .35s ease;
}

.mission .ita-card-overlay {
    background: linear-gradient(180deg, rgba(0, 48, 126, .82) 0%, rgba(0, 54, 140, .58) 48%, rgba(1, 18, 40, .56) 100%);
}

.vision .ita-card-overlay {
    background: linear-gradient(180deg, rgba(232, 133, 11, .78) 0%, rgba(234, 151, 33, .52) 48%, rgba(30, 20, 8, .50) 100%);
}

.help .ita-card-overlay {
    background: linear-gradient(180deg, rgba(154, 27, 10, .82) 0%, rgba(168, 42, 20, .58) 48%, rgba(40, 10, 8, .58) 100%);
}

.ita-vision-wrap:hover .ita-expand-card:not(:hover) .ita-card-overlay {
    background: rgba(0, 0, 0, .62);
}

.ita-vision-wrap .ita-expand-card:hover .ita-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .20) 44%, rgba(0, 0, 0, .34) 100%);
}

/* Content */

.ita-card-content {
    position: absolute;

    left: 24px;
    top: 24px;
    right: 24px;

    z-index: 2;
    opacity: .58;
    transition: opacity .35s ease, transform .35s ease;
}

.ita-expand-card:hover .ita-card-content {
    opacity: 1;
    transform: translateY(-2px);
}

.ita-card-content h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.ita-card-line {
    width: 150px;
    height: 4px;
    margin: 14px 0 22px;
}

.orange {
    background: #FF9900;
}

.blue {
    background: #0046BF;
}

.ita-card-content p {
    color: rgba(255, 255, 255, .95);

    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
}

/* ==========================
TABLET
========================== */

@media(max-width:991px) {

    .ita-who-container {
        flex-direction: column;
        min-height: 0;
    }

    .ita-who-card {
        width: 100%;
        flex: 0 0 auto;
        min-height: auto;
    }

    .ita-vision-wrap:hover .ita-expand-card,
    .ita-vision-wrap .ita-expand-card:hover {
        flex: 1 1 auto;
    }

}

/* ==========================
MOBILE
========================== */

@media(max-width:767px) {

    .ita-who-section {
        padding: 50px 0;
    }

    .ita-vision-wrap {
        flex-direction: column;
        gap: 16px;
    }

    .ita-expand-card {
        width: 100%;
        min-height: 300px;
        flex: 1 1 auto;
    }

    .ita-card-content h3 {
        font-size: 24px;
    }

    .ita-card-content p {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }

    .ita-who-card {
        padding: 24px;
    }

    .ita-who-card p {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }

}





/* =========================
   TRAINING COURSES SECTION
========================= */

.tp-course-section {
    padding: 90px 0;
    background: #EEF8FF;
    overflow: hidden;
}

.tp-course-container {
    max-width: 1296px;
    margin: auto;
    padding: 0 20px;
}

/* Heading */

.tp-course-head {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.tp-course-head span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #0046BF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tp-course-head p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #5C575B;
    margin-bottom: 12px;
}

.tp-course-head h3 {
    font-size: 22px;
    font-weight: 600;
    color: #FF9900;
    line-height: 1.4;
}

/* Grid */

.tp-course-grid {
    display: grid;
    grid-template-columns: repeat(5, 240px);
    justify-content: center;
    gap: 16px;
}

/* Card */

.tp-course-card {
    width: 240px;
    height: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 70, 191, .08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transition: .45s ease;
}

.tp-course-card:hover {
    transform: translateY(-10px);
    border-color: #689cf669;
    box-shadow: 0 20px 35px rgba(0, 70, 191, .18);
}

/* Hover Overlay */

.tp-course-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 70, 191, .05),
            rgba(255, 153, 0, .08));
    opacity: 0;
    transition: .4s;
}

.tp-course-card:hover::after {
    opacity: 1;
}

/* Image */

.tp-course-card img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.tp-course-card:hover img {
    transform: scale(1.08);
}

/* Badge */

.tp-course-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    background: #FF9900;
    color: #fff;

    height: 32px;
    width: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0 0 8px 0;

    font-size: 14px;
    font-weight: 600;
}

/* Content */
.pta-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 20px auto 0;
}

.pta-title-wrap h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0046BF;
    margin: 0;
    line-height: 1.3;
}

.pta-title-line {
    width: 100%;
    height: 2px;
    background: #F38A12;
    margin-top: 8px;
    border-radius: 10px;
}

.tp-course-content {
    padding: 16px 14px;
    position: relative;
    z-index: 2;
}

.tp-course-content h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #AA1D01;
    margin-bottom: 8px;
}

.tp-course-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tp-course-content ul li {
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
    color: #5C575B;
    margin-bottom: 4px;
    position: relative;
    padding-left: 16px;
}

.tp-course-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF9900;
    position: absolute;
    left: 0;
    top: 9px;
}

/* Bottom Text */

.tp-course-note {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    color: #FF9900;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

/* =========================
        TABLET
========================= */

@media (max-width:1280px) {

    .tp-course-grid {
        grid-template-columns: repeat(4, 240px);
    }

}

@media (max-width:1024px) {

    .tp-course-grid {
        grid-template-columns: repeat(3, 240px);
    }

}

/* =========================
         MOBILE
========================= */

@media (max-width:768px) {

    .tp-course-section {
        padding: 60px 0;
    }

    .tp-course-container {
        padding: 0 14px;
    }

    .tp-course-head {
        margin-bottom: 30px;
    }

    .tp-course-head span {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .tp-course-head p {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }

    .tp-course-head h3 {
        font-size: 18px;
        margin-top: 10px;
    }

    .tp-course-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tp-course-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: auto;
    }

    .tp-course-card img {
        width: 100%;
        height: 190px;
    }

    .tp-course-content {
        padding: 16px;
    }

    .tp-course-content h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .tp-course-content ul li {
        font-size: 14px;
        line-height: 22px;
    }

    .tp-course-note {
        margin-top: 30px;
        font-size: 14px;
        line-height: 26px;
        padding: 0 10px;
    }

}




.ita-internship-section {
    position: relative;
    overflow: hidden;
    background: #FFECD4;
    min-height: 940px;
}

.ita-internship-container {
    width: min(100% - 40px, 1290px);
    margin: 0 auto;
}





.ita-internship-hero {
    min-height: 436px;
    background: url("../images/internship  1.png") center 42% / cover no-repeat;
}

.ita-internship-intro {
    width: min(100%, 584px);
    padding-top: 25px;
}

.ita-internship-intro h2 {
    margin: 0 0 24px;
    font-size: clamp(54px, 5.62vw, 86px);
    font-weight: 800;
    line-height: 1.16;
}

.ita-internship-intro h2 span,
.ita-internship-intro h2 strong {
    display: block;
    font: inherit;
}

.ita-internship-intro h2 span {
    color: #fff;
}

.ita-internship-intro h2 strong {
    color: #FF9900;
}

.ita-internship-intro p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.62;
    letter-spacing: .14px;
}

.ita-internship-body {
    position: relative;
    padding: 0 0 46px;
}

.ita-internship-strip {
    position: absolute;
    top: -38px;
    right: 0;
    width: min(100%, 850px);
    min-height: 100px;
    padding: 19px 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    background: rgba(0, 70, 191, .87);
    border: 2px solid #7AABFF;
    border-radius: 12px;
    overflow: hidden;
}

.ita-strip-item {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #F5F5F5;
    border-right: 2px solid rgba(255, 255, 255, .88);
}

.ita-strip-item:last-child {
    border-right: 0;
}

.ita-strip-item i {
    font-size: 26px;
    line-height: 1;
}

.ita-strip-item span {
    color: #F5F5F5;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.15;
}

.ita-internship-body h3 {
    width: min(100%, 318px);
    margin: 0;
    padding-top: 12px;
    color: #0046BF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.ita-internship-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 254px));
    justify-content: space-between;
    gap: 5px;
    margin-top: 70px;
}

.ita-internship-card {
    height: 224px;
    padding: 21px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #EEF8FF;
    border-radius: 12px;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.ita-internship-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #FF9900;
    border-radius: 50%;
    font-size: 32px;
}

.ita-internship-card h4 {
    margin: 0 0 8px;
    color: #AA1D01;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.ita-internship-card p {
    margin: 0;
    color: #5C575B;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: .14px;
}

.ita-internship-card>span {
    width: 86px;
    height: 2px;
    margin-top: auto;
    background: #FF9900;
}

.ita-internship-note {
    margin: 62px 0 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.ita-internship-note span {
    color: #FF9900;
}

.ita-internship-note strong {
    color: #0046BF;
    font: inherit;
}

.internship-title-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.internship-title-wrap h3 {
    margin: 0;
    color: #0046BF;
    font-size: 21px;
    font-weight: 600;
    line-height: 30px;
}

.internship-title-line {
    width: 100%;
    height: 2px;
    background: #F38A12;
    margin-top: 10px;
    border-radius: 10px;
}

@media (max-width:768px) {

    .internship-title-wrap h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .internship-title-line {
        height: 2px;
        margin-top: 8px;
    }

}

@media (max-width: 1200px) {
    .ita-internship-section {
        min-height: auto;
    }

    .ita-internship-strip {
        position: relative;
        top: auto;
        right: auto;
        margin: -38px auto 0;
    }

    .ita-internship-body h3 {
        padding-top: 44px;
    }

    .ita-internship-cards {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .ita-internship-hero {
        min-height: 390px;
    }

    .ita-internship-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 22px;
    }

    .ita-strip-item:nth-child(2) {
        border-right: 0;
    }

    .ita-strip-item:nth-child(-n + 2) {
        border-bottom: 2px solid rgba(255, 255, 255, .72);
        padding-bottom: 16px;
    }

    .ita-strip-item:nth-child(n + 3) {
        padding-top: 16px;
    }

    .ita-internship-cards {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .ita-internship-note {
        font-size: 21px;
    }
}

@media (max-width: 640px) {
    .ita-internship-container {
        width: calc(100% - 32px);
    }

    .ita-internship-hero {
        min-height: 430px;
    }

    .ita-internship-intro {
        padding-top: 40px;
    }

    .ita-internship-intro h2 {
        font-size: 44px;
        line-height: 1.12;
    }

    .ita-internship-intro p {
        font-size: 15px;
        text-align: justify;
    }

    .ita-internship-strip {
        grid-template-columns: 1fr;
        margin-top: -46px;
    }

    .ita-strip-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .65);
        padding: 14px 0;
    }

    .ita-strip-item:nth-child(-n + 2),
    .ita-strip-item:nth-child(n + 3) {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .ita-strip-item:last-child {
        border-bottom: 0;
    }

    .ita-internship-body h3 {
        width: 100%;
        padding-top: 36px;
        font-size: 22px;
    }

    .ita-internship-cards {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .ita-internship-card {
        height: auto;
        min-height: 224px;
    }

    .ita-internship-note {
        margin-top: 38px;
        font-size: 17px;
        text-align: justify;
    }
}












.career-support-section {
    padding: 80px 0;

    position: relative;
}

.career-support-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:rgba(0,0,0,.55); */
}

.career-support-container {
    max-width: 1290px;
    margin: auto;
    padding: 30px 30px;
    position: relative;
    z-index: 2;
    background: url("../images/carearbg.png") center center / cover no-repeat;
    border-radius: 12px;
}

.career-support-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
}

/* LEFT */

.career-support-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.career-line {
    width: 370px;
    max-width: 100%;
    height: 2px;
    background: #FF9900;
    margin-bottom: 24px;
}

.career-top-text,
.career-bottom-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.career-top-text {
    margin-bottom: 30px;
}

.career-bottom-text {
    margin-top: 30px;
}

.career-services-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.career-badge {
    display: inline-block;
    background: #0046BF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
}

.career-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.career-services-grid ul {
    margin: 0;
    padding-left: 18px;
}

.career-services-grid li {
    color: #5C575B;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

/* FORM */

.career-form-card {
    background: #EEF8FF;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .20);
    transition: .4s;
}

.career-form-card:hover {
    transform: translateY(-8px);
}

.career-form-card h3 {
    color: #FF9900;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 28px;
}

.career-form-group {
    margin-bottom: 18px;
}

.career-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #5C575B;
    font-size: 14px;
    font-weight: 600;
}

.career-form-group input {
    width: 100%;
    height: 52px;
    border: 1px solid #CED4DA;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 15px;
    outline: none;
}

.career-form-group input:focus {
    border-color: #0046BF;
}

.career-submit-btn {
    width: 100%;
    height: 54px;
    border: none;
    background: #FF9900;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: .4s;
}

.career-submit-btn:hover {
    background: #0046BF;
    transform: translateY(-2px);
}

/* Tablet */

@media(max-width:1024px) {

    .career-support-wrapper {
        grid-template-columns: 1fr;
    }

    .career-form-card {
        max-width: 550px;
        width: 100%;
    }

}

/* Mobile */

@media(max-width:768px) {

    .career-support-section {
        padding: 60px 0;
    }

    .career-support-content h2 {
        font-size: 21px;
    }

    .career-line {
        width: 220px;
    }

    .career-top-text,
    .career-bottom-text {
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }

    .career-services-box {
        padding: 18px;
    }

    .career-services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .career-services-grid li {
        font-size: 14px;
        line-height: 26px;
    }

    .career-form-card {
        padding: 22px;
    }

    .career-form-card h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .career-form-group input {
        height: 48px;
    }

    .career-submit-btn {
        height: 50px;
        font-size: 15px;
    }
}










/* ===========================
   FUTURE CTA SECTION
=========================== */

.future-cta-sec {
    position: relative;
    padding: 30px 0;
    overflow: hidden;

    background: url("../images/join-bg.png") center center/cover no-repeat;
}

.future-cta-overlay {
    position: absolute;
    inset: 0;
    /* background:rgba(0,0,0,.55); */
    /* backdrop-filter:blur(2px); */
}

.future-cta-container {
    max-width: 1290px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.future-cta-content {
    max-width: 900px;
    margin-left: auto;
}

.future-cta-content h2 {
    color: #FF9900;
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}

.future-cta-line {
    width: 320px;
    height: 3px;
    background: #FF9900;
    border-radius: 50px;
    margin-bottom: 25px;
}

.future-cta-box {
    background: #AA1D01;
    padding: 28px 30px;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    transition: .4s ease;
}

.future-cta-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.future-cta-box p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    margin: 0;
}

.future-cta-content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    margin-top: 24px;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px) {

    .future-cta-sec {
        padding: 70px 0;
    }

    .future-cta-content {
        max-width: 100%;
        margin: 0;
    }

    .future-cta-content h2 {
        font-size: 34px;
    }

    .future-cta-line {
        width: 250px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px) {

    .future-cta-sec {
        padding: 55px 0;
    }

    .future-cta-container {
        padding: 0 15px;
    }

    .future-cta-content {
        text-align: center;
    }

    .future-cta-content h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .future-cta-line {
        width: 180px;
        margin: 0 auto 20px;
    }

    .future-cta-box {
        padding: 22px 18px;
    }

    .future-cta-box p {
        font-size: 14px;
        line-height: 25px;
        text-align: justify;
    }

    .future-cta-content h3 {
        font-size: 17px;
        line-height: 28px;
        margin-top: 20px;
    }
}











/* ==========================
   FUTURE START SECTION
========================== */

.future-start-sec {
    padding: 40px 0;
}

.future-start-wrap {
    max-width: 1290px;
    margin: auto;
    min-height: 405px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 40px 52px;
    background: url("../images/future-student.png") center center/cover no-repeat;

}

/* Glow Effects */

.future-start-wrap::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -220px;
    top: -230px;
    background: #00D4FF;
    opacity: .15;
    border-radius: 50%;
    filter: blur(80px);
}

.future-start-wrap::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    bottom: -180px;
    background: #2563EB;
    opacity: .15;
    border-radius: 50%;
    filter: blur(80px);
}

/* Left Content */

.future-start-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.future-start-content h2 {
    margin: 0;
    color: #EEF8FF;
    font-size: 31px;
    font-weight: 800;
    line-height: 42px;
}

.future-start-content h2 span {
    display: block;
    color: #FF9900;
}

.future-start-line {
    width: 374px;
    height: 3px;
    background: #FF9900;
    border-radius: 50px;
    margin: 14px 0 14px;
}

.future-start-content p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 18px;
}

.future-start-content p:last-child {
    margin-bottom: 0;
}

/* Right Image */

.future-start-image {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.future-start-image img {
    width: 480px;
    max-width: 100%;
    display: block;
    transition: .4s ease;
}

.future-start-wrap:hover .future-start-image img {
    transform: translateY(-10px) scale(1.03);
}

/* ==========================
   TABLET
========================== */

@media(max-width:1100px) {

    .future-start-wrap {
        padding: 40px;
        gap: 30px;
    }

    .future-start-content h2 {
        font-size: 34px;
        line-height: 46px;
    }

    .future-start-image img {
        width: 360px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .future-start-sec {
        padding: 50px 15px;
    }

    .future-start-wrap {
        flex-direction: column-reverse;
        text-align: center;
        padding: 35px 20px;
        min-height: auto;
    }

    .future-start-content {
        max-width: 100%;
    }

    .future-start-content h2 {
        font-size: 22px;
        line-height: 36px;
    }

    .future-start-line {
        width: 180px;
        margin: 18px auto 22px;
    }

    .future-start-content p {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 14px;
        text-align: justify;
    }

    .future-start-image img {
        width: 260px;
        margin-bottom: 25px;
    }
}











/* ==========================
   JOIN FUTURE SECTION
========================== */

.career-join-sec {
    padding: 30px 0;
    background: #FFECD4;
}

.career-join-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    gap: 64px;
}

/* Image */

.career-join-img {
    flex: 0 0 405px;
}

.career-join-img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 14px;
    display: block;

    transition: .4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.career-join-img:hover img {
    transform: translateY(-8px) scale(1.03);
}

/* Content */

.career-join-content {
    flex: 1;
}

.career-join-heading h2 {
    color: #0046BF;
    font-size: 23px;
    font-weight: 800;
    line-height: 34px;
    margin: 0;
}

.career-join-heading span {
    width: 220px;
    height: 3px;
    background: #F38A12;
    display: block;
    margin-top: 12px;
    border-radius: 20px;
}

.career-join-points {
    margin-top: 24px;
}

.career-join-points p {
    margin: 0 0 12px;
    color: #5C575B;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

/* Buttons */

.career-join-btns {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.career-btn-primary,
.career-btn-secondary {
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
}

.career-btn-primary {
    background: #0046BF;
    color: #fff;

    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow: 0 10px 25px rgba(0, 70, 191, .25);
}

.career-btn-primary:hover {
    transform: translateY(-4px);
    background: #00379A;
}

.career-btn-secondary {
    background: #F38A12;
    color: #fff;
}

.career-btn-secondary:hover {
    transform: translateY(-4px);
    background: #dd7b0b;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px) {

    .career-join-container {
        gap: 40px;
    }

    .career-join-img {
        flex: 0 0 320px;
    }

    .career-join-img img {
        height: 230px;
    }

    .career-join-heading h2 {
        font-size: 24px;
    }

    .career-join-points p {
        font-size: 16px;
        line-height: 28px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .career-join-sec {
        padding: 60px 0;
    }

    .career-join-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .career-join-img {
        width: 100%;
        flex: auto;
    }

    .career-join-img img {
        width: 100%;
        height: 240px;
    }

    .career-join-heading span {
        margin: 12px auto 0;
        width: 160px;
    }

    .career-join-heading h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .career-join-points p {
        font-size: 13px;
        line-height: 26px;
        text-align: left;
    }

    .career-join-btns {
        justify-content: center;
    }

    .career-btn-primary,
    .career-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}







/*=============================
CAREER MOTIVATION SECTION
=============================*/

.career-motivation-sec {
    padding: 50px 0;
    background: #fff;
}

.career-motivation-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.career-motivation-content {
    flex: 1;
    max-width: 620px;
}

.career-motivation-head h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0046BF;
    line-height: 1.25;
    margin-bottom: 14px;
}

.career-line {
    width: 240px;
    height: 3px;
    background: #F38A12;
    display: block;
    border-radius: 50px;
    margin-bottom: 24px;
}

.career-motivation-head p {
    font-size: 16px;
    font-weight: 400;
    color: #5C575B;
    line-height: 26px;
    margin: 0;
}

.career-highlight-box {
    margin-top: 30px;
    background: #AA1D01;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    padding: 9px 25px;
    border-radius: 2px;
    display: inline-block;
}

.career-check-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.career-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 400;
    color: #5C575B;
}

.career-check-item i {
    color: #4CAF50;
    font-size: 24px;
    flex-shrink: 0;
}

.career-motivation-image {
    flex: 0 0 450px;
    text-align: center;
}

.career-motivation-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    transition: .4s ease;
    animation: careerFloat 4s ease-in-out infinite;
}

.career-motivation-image:hover img {
    transform: scale(1.04);
}

/* Floating Effect */

@keyframes careerFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/*=============================
TABLET
=============================*/

@media(max-width:1024px) {

    .career-motivation-container {
        gap: 40px;
    }

    .career-motivation-head h2 {
        font-size: 34px;
    }

    .career-motivation-image {
        flex: 0 0 360px;
    }

}

/*=============================
MOBILE
=============================*/

@media(max-width:768px) {

    .career-motivation-sec {
        padding: 60px 0;
    }

    .career-motivation-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 35px;
    }

    .career-motivation-content {
        max-width: 100%;
    }

    .career-motivation-head h2 {
        font-size: 28px;
        line-height: 1.35;
    }

    .career-line {
        margin: 0 auto 22px;
        width: 180px;
    }

    .career-motivation-head p {
        font-size: 15px;
        line-height: 28px;
        text-align: justify;
    }

    .career-highlight-box {
        width: 100%;
        font-size: 16px;
        line-height: 28px;
        padding: 14px 16px;
    }

    .career-check-item {
        text-align: left;
        align-items: flex-start;
        font-size: 15px;
        line-height: 24px;
    }

    .career-check-item i {
        font-size: 20px;
        margin-top: 2px;
    }

    .career-motivation-image {
        flex: auto;
    }

    .career-motivation-image img {
        max-width: 320px;
    }
}










.journey-start-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background: url("../images/journey-bg.png") center center/cover no-repeat;
}

.journey-overlay {
    position: absolute;
    inset: 0;
    /* background:rgba(3, 1, 49, 0.929); */
}

.journey-container {
    max-width: 1390px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 215px;
    align-items: start;
}

.journey-box {
    position: relative;
}

.journey-heading {
    margin-bottom: 28px;
}

.journey-heading h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 54px;
    margin-bottom: 14px;
    font-family: 'Lato', sans-serif;
}

.journey-left h2 {
    color: #729DF5;
}

.journey-right h2 {
    color: #FF9900;
}

.journey-heading span {
    display: block;
    width: 288px;
    height: 2px;
    background: #FF9900;
}

.journey-box p {
    color: #EEF8FF;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 22px;
    letter-spacing: .14px;
}

.journey-right p {
    color: #FFECD4;
}

.journey-right h4 {
    color: #FFECD4;
    font-size: 14px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 10px;
}

/* Card Effect */

.journey-box {
    padding: 35px;
    border-radius: 18px;
    /* backdrop-filter:blur(12px);
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08); */
    transition: .4s ease;
}

.journey-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 153, 0, .35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

/* Tablet */

@media(max-width:991px) {

    .journey-start-section {
        padding: 80px 0;
    }

    .journey-grid {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    .journey-heading h2 {
        font-size: 34px;
        line-height: 46px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .journey-start-section {
        padding: 60px 0;
    }

    .journey-container {
        padding: 0 15px;
    }

    .journey-box {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .journey-heading {
        margin-bottom: 20px;
    }

    .journey-heading h2 {
        font-size: 23px;
        line-height: 38px;
        margin-bottom: 10px;
    }

    .journey-heading span {
        width: 180px;
    }

    .journey-box p {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 16px;
        text-align: justify;
    }

    .journey-right h4 {
        font-size: 17px;
        line-height: 30px;
    }

    .journey-overlay {

        background: rgba(3, 1, 49, 0.929);
    }
}








.tech2026-sec {
    padding: 80px 0;
    background: #fff;
}

.tech2026-container {
    max-width: 1290px;
    margin: auto;
    padding: 0 20px;
}

.tech2026-head {
    text-align: center;
    margin-bottom: 35px;
}

.tech2026-head h2 {
    color: #0046BF;
    font-size: 22px;
    font-weight: 800;
    line-height: 25px;
    margin-bottom: 12px;
}

.tech2026-head span {
    width: 380px;
    height: 2px;
    background: #F38A12;
    display: block;
    margin: auto;
}

/* TAGS */

.tech2026-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 30px;
    margin-bottom: 45px;
}

.tech-tag {
    color: #5C575B;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}

.tech-tag:hover {
    color: #0046BF;
    transform: translateY(-2px);
}

/* SLIDER */

.tech-slider-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.tech-slider-wrap::-webkit-scrollbar {
    height: 8px;
}

.tech-slider-wrap::-webkit-scrollbar-thumb {
    background: #F38A12;
    border-radius: 20px;
}

.tech-card-row {
    display: flex;
    gap: 18px;
    width: max-content;
}

/* CARD */

.tech-card-box {
    width: 310px;
    height: 443px;
    background: #EEF8FF;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 153, 0, .15);
    position: relative;
    transition: .4s ease;
}

.tech-card-box:hover {
    transform: translateY(-10px);
    /* box-shadow:0 25px 40px rgba(0,70,191,.18); */
}

.tech-card-box:hover .tech-bottom-line {
    width: 100%;
}

.tech-card-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.tech-card-content {
    padding: 8px;
}

.tech-card-content h3 {
    color: #0046BF;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    line-height: 30px;
    margin-bottom: 6px;
}

.tech-list-wrap {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.tech-list-wrap ul {
    margin: 0;
    padding-left: 18px;
}

.tech-list-wrap li {
    color: #5C575B;
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
}

.tech-bottom-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #F38A12;
}

.tech-slider-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;

    /* Firefox */
    scrollbar-width: none;
}

/* Chrome, Edge, Safari */
.tech-slider-wrap::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* TABLET */

@media(max-width:991px) {

    .tech2026-head h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .tech-tag {
        font-size: 18px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .tech2026-sec {
        padding: 60px 0;
    }

    .tech2026-head h2 {
        font-size: 17px;
        line-height: 38px;
    }

    .tech2026-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        /* gap: 16px 30px; */
        margin-bottom: 45px;
        align-items: center;
    }

    .tech2026-head span {
        width: 220px;
    }

    .tech2026-tags {
        gap: 10px;
    }

    .tech-tag {
        font-size: 14px;
        padding: 4px 0;
    }

    .tech-card-box {
        width: 280px;
        height: 420px;
    }

    .tech-card-box img {
        height: 190px;
    }

    .tech-card-content h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .tech-list-wrap li {
        font-size: 14px;
        line-height: 24px;
    }
}










/* ===========================
   MOBILE DEVELOPMENT SECTION
=========================== */

.mobdev-section {
    position: relative;
    padding: 90px 20px;

    background-image:

        url("../images/mobileapp.jpg");

    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;

    overflow: hidden;
}

.mobdev-container {
    max-width: 1290px;
    margin: auto;
}

/* Heading */

.mobdev-heading {
    max-width: 650px;
    margin-bottom: 45px;
}

.mobdev-heading h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    font-family: 'Lato', sans-serif;
    color: #EEF8FF;
}

.mobdev-heading h2 span {
    display: block;
    color: #FF9900;
}

.mobdev-line {
    width: 220px;
    height: 4px;
    background: #FF9900;
    border-radius: 50px;
    margin-top: 16px;
}

/* Cards */

.mobdev-cards {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.mobdev-card {
    flex: 1;
    min-height: 135px;

    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;

    overflow: hidden;
    transition: .35s;
}

.mobdev-card-large {
    flex: 1.4;
}

.mobdev-card:hover {
    transform: translateY(-6px);
    border-color: #FF9900;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.mobdev-card-head {
    background: #AA1D01;
    color: #fff;

    padding: 14px 18px;

    font-size: 18px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.mobdev-card-body {
    padding: 20px 18px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    justify-content: flex-start;
}

.mobdev-card-body span {
    padding: 9px 15px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);

    color: #729DF5;

    font-size: 15px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

/* Tablet */

@media(max-width:992px) {

    .mobdev-section {
        background-size: cover;
        padding: 80px 20px;
    }

    .mobdev-heading {
        text-align: center;
        margin: auto auto 35px;
    }

    .mobdev-line {
        margin: 16px auto 0;
    }

    .mobdev-heading h2 {
        font-size: 42px;
    }

    .mobdev-cards {
        flex-direction: column;
    }

    .mobdev-card-large {
        flex: 1;
    }

}

/* Mobile */

@media(max-width:576px) {

    .mobdev-section {
        padding: 60px 15px;
    }

    .mobdev-heading h2 {
        font-size: 23px;
    }

    .mobdev-line {
        width: 160px;
    }

    .mobdev-card {
        width: 100%;
    }

    .mobdev-card-head {
        font-size: 16px;
        text-align: center;
        padding: 12px;
    }

    .mobdev-card-body {
        padding: 15px;
        justify-content: center;
    }

    .mobdev-card-body span {
        font-size: 13px;
        padding: 7px 12px;
    }

}










.ai-tech-hub-sec {
    padding: 80px 0;
    background: #fff;
}

.ai-tech-hub-wrap {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ai-tech-card {
    background: #EEF8FF;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 153, 0, .12);

    transition: .35s ease;
}

.ai-tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 70, 191, .12);
}

.ai-tech-img {
    height: 230px;
    overflow: hidden;
}

.ai-tech-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.ai-tech-card:hover img {
    transform: scale(1.08);
}

.ai-tech-body {
    padding: 18px 18px 25px;
}

.ai-tech-body h3 {
    color: #0046BF;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-bottom: 18px;
    min-height: 60px;
}

.ai-tech-list-wrap {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.ai-tech-list-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ai-tech-list-wrap li {
    color: #5C575B;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    position: relative;
    padding-left: 18px;
}

.ai-tech-list-wrap li::before {
    content: "•";
    color: #5C575B;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}

.ai-tech-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #FF9900;
}

@media(max-width:1200px) {

    .ai-tech-hub-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .ai-tech-hub-sec {
        padding: 60px 0;
    }

    .ai-tech-hub-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ai-tech-card {
        max-width: 420px;
        margin: auto;
        width: 100%;
    }

    .ai-tech-img {
        height: 220px;
    }

    .ai-tech-body h3 {
        font-size: 18px;
        line-height: 28px;
        min-height: auto;
    }

    .ai-tech-list-wrap {
        gap: 18px;
    }

    .ai-tech-list-wrap li {
        font-size: 15px;
        line-height: 26px;
    }

}










.ai-tools-showcase {
    padding: 40px 20px;
    background: #fff;
    font-family: 'Lato', sans-serif;
}

.ai-tools-container {
    max-width: 1300px;
    margin: auto;
}

/* Heading */

.ai-tools-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.ai-tools-heading h2 {
    font-size: 36px;
    color: #AA1D01;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}

.ai-tools-heading span {
    width: 180px;
    height: 4px;
    background: #FF9900;
    display: block;
    margin: auto;
    border-radius: 20px;
}

.ai-tools-heading p {
    margin-top: 24px;
    color: #5C575B;
    line-height: 30px;
    font-size: 17px;
}

/* Grid */

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */

.ai-tool-card {
    background: #EEF8FF;
    border-radius: 16px;
    overflow: hidden;
    transition: .35s;
    position: relative;
    border: 1px solid rgba(255, 153, 0, .15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.ai-tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

.ai-tool-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #FF9900;
}

.ai-tool-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.ai-tool-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    z-index: 1;
}

.ai-tool-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.ai-tool-card:hover img {
    transform: scale(1.08);
}

.ai-tool-content {
    padding: 24px;
}

.ai-tool-content h3 {
    color: #0046BF;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0px;
    line-height: 1.3;
    min-height: 62px;
}

.ai-tool-list-wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.ai-tool-list-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-tool-list-wrap li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: #5C575B;
    font-size: 15px;
    line-height: 22px;
}

.ai-tool-list-wrap li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #FF9900;
    font-size: 22px;
    line-height: 20px;
}

/* Tablet */

@media(max-width:1200px) {

    .ai-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:900px) {

    .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-tools-heading h2 {
        font-size: 30px;
    }

}

/* Mobile */

@media(max-width:600px) {

    .ai-tools-showcase {
        padding: 20px 15px;
    }

    .ai-tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ai-tool-content {
        padding: 20px;
    }

    .ai-tool-content h3 {
        font-size: 17px;
        min-height: auto;
    }

    .ai-tool-list-wrap {
        gap: 18px;
    }

    .ai-tools-heading h2 {
        font-size: 16px;
    }

    .ai-tools-heading p {
        font-size: 15px;
        line-height: 28px;
        text-align: justify;
    }

    .ai-tool-img {
        height: 220px;
    }

}
















.ai-productivity-banner {
    position: relative;
    min-height: 400px;
    padding: 40px 20px;
    background: url("../images/ai-productivity-bg.png") center center no-repeat;
    background-size: cover;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.ai-productivity-overlay {
    position: absolute;
    inset: 0;
    /* background:linear-gradient(
        90deg,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    ); */
}

.ai-productivity-banner::after {
    content: "";
    width: 500px;
    height: 500px;
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: #2563EB;
    opacity: .15;
    border-radius: 50%;
    filter: blur(100px);
}

.ai-productivity-container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.ai-productivity-content {
    max-width: 720px;
}

.ai-productivity-content h2 {
    color: #EEF8FF;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.ai-productivity-content h2 span {
    display: block;
    color: #FF9900;
}

.ai-productivity-line {
    width: 280px;
    height: 4px;
    background: #FF9900;
    border-radius: 20px;
    margin: 20px 0 35px;
}

.ai-tools-box {
    background: #fff;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.ai-tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-tool-item img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.ai-tool-item span {
    color: #0046BF;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

.ai-productivity-buttons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.ai-btn-primary {
    background: #0046BF;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: .3s;
}

.ai-btn-primary:hover {
    transform: translateY(-3px);
}

.ai-btn-secondary {
    background: #F38A12;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.ai-btn-secondary:hover {
    transform: translateY(-3px);
}

/* Tablet */

@media(max-width:992px) {

    .ai-productivity-content h2 {
        font-size: 38px;
    }

    .ai-tools-box {
        gap: 20px;
    }

    .ai-tool-item span {
        font-size: 18px;
    }

}

/* Mobile */

@media(max-width:768px) {

    .ai-productivity-banner {
        padding: 60px 15px;
        min-height: auto;
    }

    .ai-productivity-content {
        max-width: 100%;
    }

    .ai-productivity-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .ai-productivity-line {
        width: 180px;
        margin: 15px 0 25px;
    }

    .ai-tools-box {
        flex-direction: column;
        gap: 15px;
        padding: 18px;
    }

    .ai-tool-item span {
        font-size: 18px;
    }

    .ai-productivity-buttons {
        flex-direction: column;
    }

    .ai-btn-primary,
    .ai-btn-secondary {
        width: 100%;
        justify-content: center;
    }

}