:root {
    --bg-dark-1: #191e1e;
    --bg-dark-2: #000808;
    --bg-dark-3: #1d2121;
    --bg-card: #151921;
    --primary-teal: rgb(255,116,37);
    --primary-gradient: linear-gradient(100deg, rgb(255,116,37), rgb(222, 100, 29));
    --text-muted: #6b7c98;
    --border-color: #1E293B;
}

.mern-stack-hero-section {
    background-color: #080c18;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #f8fafc;
    background-size: 50px 50px,
        50px 50px,
        cover;
    background-position: center;
    background-repeat: repeat, repeat, no-repeat;
    padding: 160px 40px 60px;
}


.section-style {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.badge-header {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 116, 37, 0.1);
    color: var(--primary-teal);
    border-radius: 25px;
    padding: 7px 24px;
    border: 1px solid rgb(125, 56, 15);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.badge-header svg {
    display: inline-block;
    transform-origin: center; /* rotate around its center */
    animation: rotate-icon 2s ease-in-out infinite;
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(30deg);
    }
    100% {
        transform: rotate(0deg);
    }
}



.mern-stack-hero-section h1 {
    font-size: clamp(30px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.mern-stack-hero-section p {
    color: #8490a3;
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.counter-row {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.counter-box {
    background: #090e1d;
    border: 1px solid rgb(42, 19, 5);
    border-radius: 14px;
    padding: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    align-items: flex-start;
}

.counter-box .small {
    color: #6b7c98;
}

.counter-box i {
    font-size: 22px;
    font-weight: 700;
}


.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.section-heading {
    font-size: clamp(24px, 4vw, 34px);
    color: #fff;
    font-weight: 600;

}

.section-para {
    font-size: clamp(14px, 2vw, 18px);
    color: #8490a3;
    font-weight: 300;
}

.card-para {
    font-size: clamp(13px, 2vw, 15px);
    color: #8490a3;
    font-weight: 300;
}

.section-style h5 {
    font-size: clamp(17px, 2vw, 20px);
    color: #fff;
    font-weight: 600;

}

.text-teal {
    color: var(--primary-teal) !important;
}

.bg-teal-subtle {
    background-color: rgba(45, 212, 191, 0.1);
    color: var(--primary-teal);
}

/* ================= COMMON ================= */
.custom-btn-style {
    height: 53px;
    padding: 0 30px;
    font-size:clamp(13px, 1.5vw, 16px);
    font-weight: 600;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* ================= PRIMARY BUTTON ================= */
.btn-primary-teal {
    background: linear-gradient(135deg, rgb(255,116,37), rgb(233, 107, 34));
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 116, 37, 0.35);
}

.btn-primary-teal:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 116, 37, 0.45);
}



/* 👉 Arrow icon animation */
.btn-primary-teal i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary-teal i {
    animation: arrowMove 0.9s ease-in-out infinite alternate;
}

@keyframes arrowMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(8px);
    }
}

/* ================= OUTLINE BUTTON ================= */
.btn-outline-custom {
    background: rgba(255, 116, 37, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 116, 37, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline-custom:hover {
    background: rgba(255, 116, 37, 0.2);
    border-color: rgb(255,116,37);
}

/* 👉 Play icon zoom animation */
.btn-outline-custom i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-outline-custom i {
    animation: playPulse 1.4s ease-in-out infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1);
    }
}


.section-tag {
    color: var(--primary-teal);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

/* ================= CARD BASE ================= */
.custom-card {
    background: linear-gradient(180deg, #0f1629, #0b1020);
    border: 1px solid rgba(148, 163, 184, 0.15); /* ALWAYS 1px */
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

/* Lift only — NO border width change */
.custom-card:hover {
    box-shadow: 0 0 0 0.021rem rgba(255, 116, 37, 01.0);
    transform: translateY(-5px) scale(1.04);
}

/* ================= ICON ================= */
.card-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;

    transition: transform 0.4s ease;
}

.custom-card:hover .card-icon-box {
    transform: scale(1.15);
}

/* ================= TAGS ================= */
.tag-pill {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    margin-right: 6px;

    transition: transform 0.3s ease;
}

.custom-card:hover .tag-pill {
    transform: translateY(-2px);
}

/* ================= FOOTER ================= */
.card-footer-line {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #161c28;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.card-link {
    text-decoration: none;
}

.card-link i {
    transition: transform 0.35s ease;
}

.custom-card:hover .card-link i {
    transform: translateX(6px);
}

/* ================= TOP LIGHT BASE (NO COLOR) ================= */
.custom-card::before {
    content: "";
    position: absolute;
    top: -45%;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 120%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

/* ================= COLOR VARIANTS ================= */

/* ---------- GREEN (MongoDB / Node) ---------- */
.icon-green {
    color: #27a83c;
    background: rgba(39, 168, 60, 0.15);
}



.card-green::before {
    background: radial-gradient(
        ellipse at top center,
        rgba(39, 168, 60, 0.35),
        rgba(39, 168, 60, 0.15),
        transparent 70%
    );
}

.card-green:hover::before {
    opacity: 1;
}

/* ---------- BLUE (React) ---------- */
.icon-blue {
    color: #57d3f9;
    background: rgba(87, 211, 249, 0.15);
}


.card-blue::before {
    background: radial-gradient(
        ellipse at top center,
        rgba(87, 211, 249, 0.35),
        rgba(87, 211, 249, 0.15),
        transparent 70%
    );
}

.card-blue:hover::before {
    opacity: 1;
}

/* ---------- WHITE (Express) ---------- */
.icon-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.card-light::before {
    background: radial-gradient(
        ellipse at top center,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.15),
        transparent 70%
    );
}

.card-light:hover::before {
    opacity: 1;
}



.feature-section{
    background:#09121b;
}

.feature-section .feature-custom-card {
    color: #fff;
    background-color: #0c0f1e;
    border: 1px solid #141b2e;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    transition:
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}
.feature-section .feature-custom-card:hover {
    color: rgba(255, 116, 37, 01.0) !important;
    box-shadow: 0 0 0 0.021rem rgba(255, 116, 37, 01.0);
    transform: translateY(-4px) scale(1.04);
}

.feature-custom-card-1:hover{
    background-color: rgb(16,28,37);
}
.feature-custom-card-2:hover{
    background-color: rgb(23,21,36);;
}
.feature-custom-card-3:hover{
    background-color: rgb(26,22,27);;
}
.feature-custom-card-4:hover{
    background-color: rgb(15,19,29);;
}
.feature-custom-card-5:hover{
    background-color: rgb(25,25,27);;
}
.feature-custom-card-6:hover{
    background-color: rgb(18,23,37);;
}
.feature-custom-card-7:hover{
    background-color: rgb(14,25,33);;
}
.feature-custom-card-8:hover{
    background-color: rgb(22,24,40);;
}


.feature-section .feature-custom-card i{
   font-size: 20px;
   font-weight: 600;
   color:#fff;
}

.card-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.card-icon-box i {
    font-size: 20px;
    font-weight: 600;
}

.tag-pill {
    background: #1E293B;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #E2E8F0;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.code-window {
    background: rgb(12, 19, 36);
    border: 1px solid #141d30;
    border-radius: 12px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    text-align: left;
    position: relative;
    max-width: 700px;
    margin: 2rem auto;
    box-shadow: 0px 0px 15px rgba(255, 116, 37, 0.30);

    /* 🔥 Smooth bounce curve */
    transition:
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

.code-window:hover {
    transform: scale(1.05) !important;
}


.window-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #EF4444;
}

.dot-yellow {
    background: #F59E0B;
}

.dot-green {
    background: #10B981;
}

.code-content {
    color: #A5B4FC;
    font-size: 0.9rem;
    line-height: 1.6;
}

.c-kw {
    color: #C084FC;
}

.c-fn {
    color: #60A5FA;
}

.c-str {
    color: #34D399;
}

/* String */
.c-cm {
    color: #4B5563;
}
 /* ================= SCROLL INDICATOR WRAPPER ================= */
 .scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatY 3s ease-in-out infinite;
}

/* ================= MOUSE BODY ================= */
.mouse {
    width: 23px;
    height: 40px;
    border: 2px solid rgba(255, 116, 37, 0.30);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

/* ================= SCROLL DOT ================= */
.scroll-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 116, 37, 01.0); /* primary teal */
    border-radius: 50%;
    animation: scrollDot 1.5s ease-in-out infinite;
}

/* ================= DOT ANIMATION ================= */
@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================= FLOATING EFFECT ================= */
@keyframes floatY {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 6px);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

/* ================= TIMELINE BASE ================= */
.timeline {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(255, 116, 37, 0.20);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    z-index: 9999;
}

/* ================= ITEM ================= */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

/* ================= LEFT ================= */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* Badge inner alignment */
.timeline-item.left .d-flex {
    justify-content: flex-end;
}

.timeline-item.left .badge {
    text-align: right;
}

/* ================= RIGHT ================= */
.timeline-item.right {
    left: 50%;
}

/* Badge inner alignment */
.timeline-item.right .d-flex {
    justify-content: flex-start;
}

.timeline-item.right .badge {
    text-align: left;
}

/* ================= DOT FIX ================= */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-teal);
    top: 25px;
    border-radius: 50%;
    z-index:0;
}

.timeline-item.left::after {
    right: -6px;
}

.timeline-item.right::after {
    left: -6px;
}

/* ================= CONTENT ================= */
.timeline-content {
    color: #fff;
    padding: 20px;
    background-color: #0a101f;
    border: 1px solid #141d30;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth animation */
}

.timeline-content:hover {
    color:rgba(255, 116, 37, 1.0) !important;
    box-shadow: 0 0 0 0.021rem rgba(255, 116, 37, 1.0);
    transform: scale(1.05); /* slightly zoom in */
   
}


.timeline-content .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding:7px;
    background-color: rgba(255, 116, 37, 0.20);
    border-radius: 7px;
    flex-shrink: 0;
}
.timeline .timeline-content h6{
    font-size: clamp(14px 1.5vh 16px);
    color: #6b7c98;

}

.timeline-content .icon-box i{
    color: rgba(255, 116, 37, 01.0);
    font-size: 18px;
    font-weight: 800 !important;
}
    .timeline-content .badge{
        color:rgba(255, 116, 37, 01.0);
    }
    .timeline-content .card-para i{
        color:rgba(255, 116, 37, 01.0);
    }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

    .mern-stack-hero-section {
        padding: 130px 0px 50px;
    }
    .custom-btn-style {
        height: 45px;
        padding: 0 15px;
        font-size: clamp(13px, 1.6vw, 16px);
        border-radius: 10px;
    }
 

    .timeline::after {
        left: 1px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 20px;
        padding-right: 0px;
        text-align: left;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }

    .timeline-item::after {
        left: -5px;
        right: auto;
    }
    
    
    .timeline-item.right::after {
        left: -5px;
    }

  
}

.inverted-comma-icon{
    position: absolute;
    z-index: 2;
    top:7px !important;
    right:5px !important;                          
}
.inverted-comma-icon img{
    width: 50px;
    height: 40px;                        
}

/* ================= CTA BOX ================= */
.cta-box {
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(180deg, #020617 0%, #030712 100%);

    border-radius: 20px;
    border: 1px solid #141d30;

    box-shadow: 0px 0px 15px rgba(255, 116, 37, 0.38);
}

/* ================= TOP TEAL GLOW ================= */
.cta-box::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 80%;

    background:
        radial-gradient(circle,
            rgba(255, 116, 37, 0.30),
            rgba(120, 55, 18, 0.15),
            transparent 70%);

    filter: blur(70px);
    z-index: 0;
}

/* ================= CONTENT LAYER ================= */
.cta-content {
    position: relative;
    z-index: 2;
}
/* ================= FEATURE LIST ================= */
.feature-list span {
    color: #6b7c98;
}

.feature-list i {
    color: rgba(255, 116, 37, 1.0);
    font-weight: bolder;
}



/* Responsive Timeline Fix */
@media screen and (max-width: 768px) {
   

    .navbar-nav {
        background: var(--bg-card);
        padding: 1rem;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        margin-top: 10px;
    }
}

.curriculum-modal-style{
    background: linear-gradient(180deg, #0f1629, #0b1020);
    border: 1px solid rgba(255, 116, 37, 0.25);
    box-shadow: 0px 0px 15px rgba(255, 116, 37, 0.30);
    border-radius: 16px;
    padding: 2px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(5px); 
}




.end-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
}

.end-bullet li {
    position: relative;
    padding-right: 14px;
    text-align: right;
}

.end-bullet li::after {
    content: "•";
    font-size:3px;
    position: absolute;
    right: 0;
    top: 3px;
    font-size: 18px;
    line-height: 1;
}



 /* __________________________________________________________________
 ______________________________________________________________________ */

/* ---------------------  Ai ML page css ------------------------ */
/* ____________________________________________________________________ */

.aiml-page {
    --aiml-blue: #2563EB;
    --aiml-blue-light: #EFF6FF;
    --aiml-blue-border: #BFDBFE;
    --aiml-text-dark: #1145c1;
    --aiml-text-mid: #475569;
    --aiml-text-light: #94A3B8;
    --aiml-bg-soft: #F8FAFC;
    --aiml-border: #E2E8F0;
    --aiml-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    --aiml-shadow-blue: 0 6px 24px rgba(37, 99, 235, 0.18);
    --aiml-r: 12px;
    color: var(--aiml-text-dark);
    background: #fff;
}



.aiml-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--aiml-blue);
    background: var(--aiml-blue-light);
    border: 1px solid var(--aiml-blue-border);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 1rem;
}

.aiml-heading {
    font-size: clamp(24px, 3.8vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--aiml-text-dark);
}

.aiml-subtext {
    font-size: clamp(13px, 1.6vw, 16px);
    color: var(--aiml-text-mid);
    font-weight: 300;
    line-height: 1.75;
}

.aiml-grad {
    background: linear-gradient(135deg, #2874fc, #4f8cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aiml-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.aiml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.aiml-btn-primary {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #fff;
    box-shadow: var(--aiml-shadow-blue);
}

.aiml-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.30);
}

.aiml-btn-primary i {
    animation: aiml-arrow 1s ease-in-out infinite alternate;
}

@keyframes aiml-arrow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(5px);
    }
}

.aiml-btn-outline {
    background: #fff;
    color: var(--aiml-text-dark);
    border: 1.5px solid var(--aiml-border);
    box-shadow: var(--aiml-shadow);
}

.aiml-btn-outline:hover {
    color: var(--aiml-blue);
    border-color: var(--aiml-blue);
    transform: translateY(-2px);
}

.aiml-btn-outline i {
    animation: aiml-phone 1.4s ease-in-out infinite;
}

@keyframes aiml-phone {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.aiml-hero {
    position: relative;
    background: #fff;
    padding: 150px 0 80px;
    overflow: hidden;
}

.aiml-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(133, 170, 249, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 164, 248, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    z-index: 0;
}

.aiml-hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.aiml-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aiml-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #059669;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 100px;
    padding: 4px 12px;
    margin-left: 8px;
}

.aiml-live-dot {
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
    animation: aiml-pulse 1.5s ease-in-out infinite;
}

@keyframes aiml-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.5);
    }
}

.aiml-hero-title {
    font-size: clamp(28px, 5.2vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--aiml-text-dark);
    margin-bottom: 1.2rem;
}

.aiml-hero-desc {
    font-size: clamp(14px, 1.7vw, 16px);
    color: var(--aiml-text-mid);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 460px;
}

.aiml-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.aiml-stats {
    display: flex;
}

.aiml-stat {
    padding: 0 24px;
    border-right: 1px solid var(--aiml-border);
}

.aiml-stat:first-child {
    padding-left: 0;
}

.aiml-stat:last-child {
    border-right: none;
}

.aiml-stat strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #1a44a0, #497def);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aiml-stat span {
    font-size: 0.75rem;
    color: var(--aiml-text-light);
    margin-top: 3px;
    display: block;
}

.aiml-model-card {
    background: #fff;
    border: 1px solid var(--aiml-border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--aiml-shadow);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.aiml-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #0891B2, #7C3AED);
}

.aiml-mc-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
}

.aiml-mc-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.aiml-mc-row {
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.aiml-mc-model {
    font-size: 12px;
    font-weight: 600;
    color: var(--aiml-blue);
}

.aiml-mc-acc {
    font-size: 12px;
    color: #059669;
    font-weight: 600;
}

.aiml-mc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.aiml-mc-metric {
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: 8px;
    padding: 10px 12px;
}

.aiml-mc-metric-label {
    font-size: 10px;
    color: var(--aiml-text-light);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.aiml-mc-metric-val {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2px;
}

.aiml-mc-chart {
    height: 52px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-bottom: 14px;
}

.aiml-mc-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #05204e, #2874fc);
    opacity: 0.95;
    animation: aiml-bar-grow 0.8s ease-out forwards;
    transform-origin: bottom;
}

@keyframes aiml-bar-grow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.aiml-mc-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.aiml-mc-tag {
    font-size: 10px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 100px;
    border: 1px solid var(--aiml-border);
    color: var(--aiml-text-mid);
    background: #fff;
}

.aiml-float {
    position: absolute;
    background: #fff;
    border: 1px solid var(--aiml-border);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: var(--aiml-shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 2;
}

.aiml-float-1 {
    top: -12px;
    left: -24px;
    animation: aiml-float 4s ease-in-out infinite;
}

.aiml-float-2 {
    bottom: 10px;
    right: -20px;
    animation: aiml-float 4s ease-in-out 2s infinite;
}

@keyframes aiml-float {

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

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

.aiml-float-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.aiml-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: aiml-bob 3s ease-in-out infinite;
}

@keyframes aiml-bob {

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

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

.aiml-scroll-mouse {
    width: 20px;
    height: 33px;
    border: 2px solid #CBD5E1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.aiml-scroll-dot {
    width: 4px;
    height: 5px;
    background: var(--aiml-blue);
    border-radius: 2px;
    animation: aiml-scroll-anim 1.5s ease-in-out infinite;
}

@keyframes aiml-scroll-anim {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}
.aiml-curriculum {
    padding: 80px 0;
    background: var(--aiml-bg-soft);
}

.aiml-curr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.aiml-curr-card {
    background: #fff;
    border: 1px solid var(--aiml-border);
    border-radius: var(--aiml-r);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aiml-curr-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.aiml-curr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--aiml-shadow);
}

.aiml-curr-card:hover::after {
    transform: scaleX(1);
}

.aiml-curr-c1::after {
    background: linear-gradient(90deg, #F59E0B, #EF4444);
}

.aiml-curr-c2::after {
    background: linear-gradient(90deg, #2563EB, #0891B2);
}

.aiml-curr-c3::after {
    background: linear-gradient(90deg, #7C3AED, #EC4899);
}

.aiml-curr-c4::after {
    background: linear-gradient(90deg, #059669, #0891B2);
}

.aiml-curr-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 4px;
}

.aiml-curr-i1 {
    background: #FEF3C7;
    color: #D97706;
}

.aiml-curr-i2 {
    background: #EFF6FF;
    color: #2563EB;
}

.aiml-curr-i3 {
    background: #F5F3FF;
    color: #7C3AED;
}

.aiml-curr-i4 {
    background: #ECFDF5;
    color: #059669;
}
.aiml-curr-i5 {
    background: #cfdff5;
    color: #717d8e;
}

.aiml-curr-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--aiml-text-dark);
}

.aiml-curr-card p {
    font-size: 0.8rem;
    color: var(--aiml-text-mid);
    line-height: 1.55;
}

.aiml-curr-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.aiml-curr-pill {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: 100px;
    color: var(--aiml-text-mid);
}

.aiml-curr-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--aiml-border);
    margin-top: 4px;
    font-size: 12px;
    color: var(--aiml-text-light);
}

.aiml-curr-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--aiml-blue);
    cursor: pointer;
    transition: gap 0.2s ease;
}

.aiml-curr-card:hover .aiml-curr-link {
    gap: 7px;
}

.aiml-features {
    padding: 80px 0;
    background: #fff;
}

.aiml-feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}

.aiml-feat-card {
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: var(--aiml-r);
    padding: 22px 20px;
    transition: all 0.25s ease;
}

.aiml-feat-card:hover {
    background: #fff;
    border-color: var(--aiml-blue-border);
    box-shadow: var(--aiml-shadow);
    transform: translateY(-3px);
}

.aiml-feat-card:hover .aiml-feat-title {
    color: var(--aiml-blue);
}

.aiml-feat-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 12px;
    color: #fff;
}

.aiml-feat-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--aiml-text-dark);
    margin-bottom: 6px;
    transition: color 0.25s;
}

.aiml-feat-desc {
    font-size: 0.8rem;
    color: var(--aiml-text-mid);
    line-height: 1.6;
}

.aiml-timeline-section {
    padding: 80px 0;
    background: var(--aiml-bg-soft);
}

.aiml-tl-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.aiml-tl-step {
    display: flex;
    gap: 20px;
}

.aiml-tl-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 42px;
}

.aiml-tl-step:not(:last-child) .aiml-tl-left::after {
    content: '';
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    bottom: 0;
    background: var(--aiml-border);
}

.aiml-tl-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--aiml-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--aiml-blue);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.aiml-tl-step:hover .aiml-tl-num {
    background: var(--aiml-blue);
    color: #fff;
    border-color: var(--aiml-blue);
    box-shadow: var(--aiml-shadow-blue);
}

.aiml-tl-body {
    background: #fff;
    border: 1px solid var(--aiml-border);
    border-radius: var(--aiml-r);
    padding: 20px 22px;
    margin-bottom: 16px;
    flex: 1;
    transition: all 0.3s ease;
}

.aiml-tl-step:hover .aiml-tl-body {
    border-color: var(--aiml-blue-border);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.07);
}

.aiml-tl-month {
    display: inline-flex;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--aiml-blue);
    background: var(--aiml-blue-light);
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 8px;
}

.aiml-tl-body h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--aiml-text-dark);
    margin-bottom: 4px;
}

.aiml-tl-focus {
    font-size: 0.78rem;
    color: var(--aiml-text-mid);
    margin-bottom: 10px;
}

.aiml-tl-points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.aiml-tl-points li {
    font-size: 0.8rem;
    color: var(--aiml-text-mid);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.aiml-tl-points li::before {
    content: '→';
    color: var(--aiml-blue);
    flex-shrink: 0;
}

.aiml-tl-project {
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.78rem;
    color: var(--aiml-text-mid);
    margin-bottom: 10px;
}

.aiml-tl-project b {
    color: var(--aiml-text-dark);
}

.aiml-tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.aiml-tl-tag {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: 100px;
    color: var(--aiml-text-mid);
}

.aiml-testimonials {
    padding: 80px 0;
    background: #fff;
}

.aiml-testi-card {
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: var(--aiml-r);
    padding: 26px;
    margin: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.aiml-testi-card:hover {
    border-color: var(--aiml-blue-border);
    box-shadow: var(--aiml-shadow);
}

.aiml-testi-quote {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 56px;
    color: var(--aiml-blue);
    opacity: 0.07;
    line-height: 1;
}

.aiml-testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.aiml-testi-stars i {
    font-size: 12px;
    color: #F59E0B;
}

.aiml-testi-text {
    font-size: 0.85rem;
    color: var(--aiml-text-mid);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.aiml-testi-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aiml-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--aiml-border);
    flex-shrink: 0;
    background-color: #EFF6FF;
}

.aiml-testi-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--aiml-text-dark);
}

.aiml-testi-role {
    font-size: 0.72rem;
    color: var(--aiml-text-light);
}
.aiml-cta-section {
    padding: 80px 0;
    background: var(--aiml-bg-soft);
}

.aiml-cta-box {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 60%, #0C1A3A 100%);
    border-radius: 20px;
    padding: clamp(36px, 5vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.aiml-cta-box::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 70%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.30), rgba(8, 145, 178, 0.12), transparent 65%);
    filter: blur(50px);
}

.aiml-cta-inner {
    position: relative;
    z-index: 1;
}

.aiml-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #93C5FD;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 1.4rem;
}

.aiml-cta-title {
    font-size: clamp(24px, 3.8vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.aiml-cta-grad {
    background: linear-gradient(135deg, #60A5FA, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aiml-cta-desc {
    font-size: clamp(13px, 1.5vw, 15px);
    color: #94A3B8;
    margin-bottom: 1.8rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.aiml-cta-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    margin-bottom: 2rem;
}

.aiml-cta-check {
    font-size: 0.8rem;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.aiml-cta-check i {
    color: #34D399;
}

.aiml-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.aiml-btn-white {
    background: #fff;
    color: var(--aiml-blue);
    font-weight: 600;
}

.aiml-btn-white:hover {
    color: var(--aiml-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.2);
}

.aiml-btn-ghost-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.aiml-btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.aiml-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aiml-modal-overlay.aiml-active {
    display: flex;
}

.aiml-modal-box {
    background: #fff;
    border: 1px solid var(--aiml-border);
    border-radius: 18px;
    padding: 32px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
    animation: aiml-modal-in 0.28s ease;
}

@keyframes aiml-modal-in {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.aiml-modal-topbar {
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #0891B2);
    border-radius: 2px;
    margin-bottom: 22px;
}

.aiml-modal-close {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--aiml-border);
    border-radius: 50%;
    background: var(--aiml-bg-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--aiml-text-mid);
    transition: all 0.2s ease;
}

.aiml-modal-close:hover {
    border-color: #EF4444;
    color: #EF4444;
}

.aiml-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aiml-text-dark);
    margin-bottom: 6px;
}

.aiml-modal-desc {
    font-size: 0.83rem;
    color: var(--aiml-text-mid);
    margin-bottom: 20px;
    line-height: 1.6;
}

.aiml-modal-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.aiml-modal-group-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--aiml-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.aiml-modal-list {
    list-style: none;
    padding: 0;
}

.aiml-modal-list li {
    font-size: 0.82rem;
    color: var(--aiml-text-mid);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.aiml-modal-list li::before {
    content: '✦';
    color: var(--aiml-blue);
    font-size: 9px;
    margin-top: 4px;
    flex-shrink: 0;
}

.aiml-modal-proj-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--aiml-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.aiml-modal-projs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.aiml-modal-proj-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    background: var(--aiml-bg-soft);
    border: 1px solid var(--aiml-border);
    border-radius: 100px;
    color: var(--aiml-text-mid);
}

.aiml-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--aiml-border);
}

@media (max-width: 992px) {
    .aiml-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aiml-model-card-wrap {
        display: none;
    }
}

@media (max-width: 768px) {
    .aiml-hero {
        padding: 120px 0 60px;
    }

    .aiml-modal-cols {
        grid-template-columns: 1fr;
    }

    .aiml-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .aiml-curr-grid {
        grid-template-columns: 1fr 1fr;
    }

    .aiml-feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .aiml-stat {
        padding: 0 14px;
    }
}

@media (max-width: 480px) {
    .aiml-curr-grid {
        grid-template-columns: 1fr;
    }

    .aiml-feat-grid {
        grid-template-columns: 1fr;
    }

    .aiml-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .aiml-stat {
        border-right: none;
        padding-left: 0;
    }
}
#line2::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0; }
}