/* =========================================
   PREMIUM EDTECH HERO SECTION
========================================= */

.edtech-hero-section {
    position: relative;
    padding: 80px 7%;
    overflow: hidden;
    isolation: isolate;

    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef4ff 35%,
        #f4f0ff 70%,
        #ffffff 100%
    );
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.edtech-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(99, 102, 241, 0.14),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(14, 165, 233, 0.14),
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(168, 85, 247, 0.08),
            transparent 45%
        );

    animation: edtechGlow 10s ease-in-out infinite alternate;
}

@keyframes edtechGlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

/* =========================================
   GRID OVERLAY
========================================= */

.edtech-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);

    background-size: 55px 55px;

    opacity: 0.35;
}

/* =========================================
   FLOATING ORBS
========================================= */

.edtech-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 180px;
    height: 180px;

    background: rgba(99, 102, 241, 0.22);

    top: 8%;
    left: 4%;
}

.orb-2 {
    width: 130px;
    height: 130px;

    background: rgba(14, 165, 233, 0.22);

    bottom: 10%;
    right: 6%;

    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;

    background: rgba(168, 85, 247, 0.18);

    top: 48%;
    right: 18%;

    animation-delay: 4s;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-24px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   FLOATING ICONS
========================================= */

.edtech-floating-icon {
    position: absolute;
    font-size: 48px;
    opacity: 0.08;
    z-index: 1;
    animation: floatIcon 8s ease-in-out infinite;
    pointer-events: none;
}

.icon-book {
    top: 14%;
    right: 12%;
}

.icon-laptop {
    bottom: 16%;
    left: 10%;
    animation-delay: 2s;
}

.icon-brain {
    top: 55%;
    right: 8%;
    animation-delay: 4s;
}

.icon-graduation {
    top: 22%;
    left: 8%;
    animation-delay: 1s;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(6deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* =========================================
   WRAPPER
========================================= */

.edtech-hero-wrapper {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 100%;

    margin: auto;
}

/* =========================================
   CONTENT
========================================= */

.edtech-hero-content {
    width: 100%;
    max-width: 100%;
}

/* TAG */
.edtech-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 100px;

    background: rgba(99, 102, 241, 0.1);

    color: #4338ca;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    margin-bottom: 24px;

    border: 1px solid rgba(99, 102, 241, 0.14);

    backdrop-filter: blur(12px);
}
/* TITLE */
.edtech-hero-content h1 {
    font-size: 48px;
    line-height: 1.05;

    color: #0f172a;

    font-weight: 600;

    letter-spacing: -2px;

    margin-bottom: 28px;
}

/* gradient highlight */
.edtech-hero-content h1 span {
    background: linear-gradient(90deg, #4f46e5, #0ea5e9, #8b5cf6);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.edtech-hero-content p {
    font-size: 18px;
    line-height: 1.95;

    color: #475569;

    margin-bottom: 26px;

    max-width: 850px;
}

/* =========================================
   HIGHLIGHT BOX
========================================= */

.edtech-hero-highlight {
    position: relative;

    display: flex;
    gap: 18px;

    padding: 28px;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.72),
        rgba(255, 255, 255, 0.55)
    );

    border: 1px solid rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(20px);

    box-shadow: 0 14px 40px rgba(99, 102, 241, 0.08);

    margin-top: 20px;
}

.edtech-highlight-line {
    width: 5px;
    border-radius: 20px;

    background: linear-gradient(to bottom, #4f46e5, #0ea5e9, #8b5cf6);
}

.edtech-highlight-content {
    font-size: 16px;
    line-height: 1.9;
    color: #334155;
}

/* =========================================
   STATS
========================================= */

.edtech-hero-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin-top: 42px;
}

.edtech-stat-card {
    padding: 24px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.65);

    border: 1px solid rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);

    transition: all 0.4s ease;

    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.06);
}

.edtech-stat-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.12);
}

.edtech-stat-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
}

.edtech-stat-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
    .edtech-hero-content h1 {
        font-size: 48px;
        line-height: 1.12;
    }

    .edtech-hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .edtech-hero-section {
        padding: 90px 20px;
    }

    .edtech-hero-content h1 {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: -1px;
    }

    .edtech-hero-content p,
    .edtech-highlight-content {
        font-size: 15px;
        line-height: 1.85;
    }

    .edtech-hero-highlight {
        padding: 22px;
    }

    .edtech-floating-icon {
        font-size: 34px;
    }
}
/* Revolutionizing Education */
/* =========================================
   EDTECH REVOLUTION SECTION V2
========================================= */

.edtech-revolution-section-v2 {
    position: relative;
    padding: 80px 5%;
    overflow: hidden;
    isolation: isolate;

    background: linear-gradient(135deg, #071a2b 0%, #0b2438 40%, #102d44 100%);
}

/* =========================================
   BACKGROUND GLOW
========================================= */

.edtech-revolution-v2-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 25%,
            rgba(0, 221, 235, 0.14),
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(0, 255, 170, 0.1),
            transparent 45%
        );

    animation: v2Glow 10s ease-in-out infinite alternate;
}

@keyframes v2Glow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

/* =========================================
   GRID
========================================= */

.edtech-revolution-v2-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 60px 60px;

    opacity: 0.25;
}

/* =========================================
   FLOATING ORBS
========================================= */

.edtech-revolution-v2-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(30px);

    opacity: 0.7;

    animation: floatV2 9s ease-in-out infinite;
}

.orb-a {
    width: 180px;
    height: 180px;

    background: rgba(0, 221, 235, 0.25);

    top: 12%;
    left: 6%;
}

.orb-b {
    width: 140px;
    height: 140px;

    background: rgba(0, 255, 170, 0.18);

    bottom: 10%;
    right: 8%;

    animation-delay: 2s;
}

@keyframes floatV2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-24px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================================
   ROTATING RING
========================================= */

.edtech-revolution-v2-ring {
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    border: 1px solid rgba(0, 221, 235, 0.15);

    top: -160px;
    right: -140px;

    animation: rotateV2 18s linear infinite;
}

@keyframes rotateV2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   WRAPPER
========================================= */

.edtech-revolution-v2-wrapper {
    position: relative;
    z-index: 2;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 60px;

    align-items: center;
}

/* =========================================
   CONTENT
========================================= */

.edtech-revolution-v2-content {
    position: relative;
    z-index: 2;
}

/* =========================================
   TAG
========================================= */

.edtech-revolution-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 100px;

    background: rgba(0, 221, 235, 0.1);

    border: 1px solid rgba(0, 221, 235, 0.18);

    color: #00ddeb;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    margin-bottom: 22px;

    backdrop-filter: blur(10px);
}

.edtech-revolution-v2-tag::before {
    content: "🚀";
}

/* =========================================
   HEADING
========================================= */

.edtech-revolution-v2-content h2 {
    font-size: 48px;

    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: #e6f7ff;

    margin-bottom: 24px;
}

/* =========================================
   PARAGRAPH
========================================= */

.edtech-revolution-v2-content p {
    font-size: 16px;

    line-height: 1.95;

    color: rgba(230, 247, 255, 0.78);

    margin-bottom: 20px;
}

/* =========================================
   FEATURE LIST
========================================= */

.edtech-revolution-v2-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 28px;
}

.edtech-revolution-v2-item {
    position: relative;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(0, 221, 235, 0.14);

    padding: 14px 16px 14px 42px;

    border-radius: 16px;

    font-size: 14px;

    color: #d6faff;

    transition: 0.35s ease;

    overflow: hidden;

    backdrop-filter: blur(10px);
}

.edtech-revolution-v2-item::before {
    content: "✓";

    position: absolute;

    left: 16px;
    top: 14px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: linear-gradient(135deg, #00ddeb, #00ffa3);

    color: #071a2b;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 700;
}

.edtech-revolution-v2-item:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 255, 170, 0.35);

    box-shadow: 0 10px 24px rgba(0, 221, 235, 0.1);
}

/* =========================================
   FOOTER
========================================= */

.edtech-revolution-v2-footer {
    margin-top: 26px;

    padding-top: 20px;

    border-top: 1px solid rgba(0, 221, 235, 0.18);

    font-size: 15px;

    color: rgba(214, 250, 255, 0.85);

    line-height: 1.9;
}

/* =========================================
   IMAGE CARD
========================================= */

.edtech-v2-image-card {
    position: relative;

    border-radius: 30px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(0, 221, 235, 0.16);

    backdrop-filter: blur(14px);

    padding: 18px;

    transform: perspective(1000px) rotateY(-6deg);

    transition: 0.45s ease;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.edtech-v2-image-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);

    pointer-events: none;

    z-index: 1;
}

.edtech-v2-image-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);

    box-shadow: 0 30px 60px rgba(0, 221, 235, 0.18);
}

.edtech-v2-image-card img {
    width: 100%;

    display: block;

    border-radius: 22px;

    object-fit: cover;

    position: relative;

    z-index: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
    .edtech-revolution-v2-wrapper {
        grid-template-columns: 1fr;
    }

    .edtech-revolution-v2-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .edtech-revolution-section-v2 {
        padding: 80px 20px;
    }

    .edtech-revolution-v2-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .edtech-revolution-v2-content p,
    .edtech-revolution-v2-footer {
        font-size: 15px;
    }

    .edtech-revolution-v2-list {
        grid-template-columns: 1fr;
    }

    .edtech-v2-image-card {
        transform: none;
    }

    .edtech-v2-image-card:hover {
        transform: translateY(-6px);
    }
}
/* Our EdTech Development Solutions*/
.edtech-solutions-section {
    position: relative;
    padding: 80px 5%;
    background: linear-gradient(135deg, #feeafa, #ffffff);
    overflow: hidden;
    isolation: isolate;
}

/* Background Glow */
.edtech-solutions-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(78, 168, 222, 0.18),
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(78, 168, 222, 0.12),
            transparent 45%
        );
    animation: solGlow 10s ease-in-out infinite alternate;
}

@keyframes solGlow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

/* Wave Layer */
.edtech-solutions-wave {
    position: absolute;
    bottom: -120px;
    left: -10%;
    width: 120%;
    height: 240px;
    background: linear-gradient(
        90deg,
        rgba(78, 168, 222, 0.18),
        rgba(78, 168, 222, 0.08)
    );
    border-radius: 50%;
    animation: waveMove 10s ease-in-out infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-2%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Orbs */
.edtech-solutions-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    animation: floatOrb 9s ease-in-out infinite;
}

.orb-1 {
    width: 160px;
    height: 160px;
    background: rgba(78, 168, 222, 0.25);
    top: 10%;
    left: 5%;
}

.orb-2 {
    width: 120px;
    height: 120px;
    background: rgba(78, 168, 222, 0.18);
    bottom: 10%;
    right: 6%;
    animation-delay: 2s;
}

.orb-3 {
    width: 90px;
    height: 90px;
    background: rgba(78, 168, 222, 0.15);
    top: 45%;
    right: 18%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-22px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Wrapper */
.edtech-solutions-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.edtech-solutions-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(78, 168, 222, 0.12);
    color: #4ea8de;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.edtech-solutions-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a2b3c;
    margin-bottom: 12px;
}

.edtech-solutions-header p {
    font-size: 15px;
    color: #4b647a;
    line-height: 1.9;
    max-width: 750px;
}

/* Grid */
.edtech-solutions-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Card */
.edtech-solution-card {
    position: relative;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(78, 168, 222, 0.18);
    backdrop-filter: blur(12px);
    transition: 0.35s ease;
    overflow: hidden;
}

.edtech-solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(78, 168, 222, 0.12),
        transparent
    );
    left: -100%;
    transition: 0.6s ease;
}

.edtech-solution-card:hover::before {
    left: 100%;
}

.edtech-solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(78, 168, 222, 0.35);
}

/* Icon */
.edtech-solution-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(78, 168, 222, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #4ea8de;
    font-size: 16px;
}

/* Text */
.edtech-solution-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a2b3c;
    margin-bottom: 10px;
    line-height: 1.5;
}

.edtech-solution-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #5a7184;
}

/* Responsive */
@media (max-width: 1024px) {
    .edtech-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .edtech-solutions-section {
        padding: 80px 20px;
    }

    .edtech-solutions-header h2 {
        font-size: 30px;
    }

    .edtech-solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* features */
.edtech-features-v3 {
    position: relative;
    padding: 80px 5%;
    background: linear-gradient(135deg, #fff1e6, #eddcd2);
}

/* Wrapper */
.edtech-features-v3-wrapper {
    max-width: 1000px;
    margin: auto;
}

/* Header */
.edtech-features-v3-tag {
    display: inline-block;
    padding: 6px 12px;
    border-left: 3px solid #c97c5d;
    color: #c97c5d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.edtech-features-v3-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #2f2a26;
    margin-bottom: 10px;
}

.edtech-features-v3-header p {
    font-size: 15px;
    color: #5f4b43;
    line-height: 1.8;
}

/* FLOW */
.edtech-features-v3-flow {
    margin-top: 40px;
    position: relative;
    padding-left: 40px;
}

/* vertical line */
.edtech-features-v3-flow::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(#c97c5d, #eddcd2);
    opacity: 0.6;
}

/* STEP */
.edtech-v3-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

/* DOT */
.v3-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c97c5d;
    margin-top: 3px;
    box-shadow: 0 0 0 4px rgba(201, 124, 93, 0.18);
}

/* CONTENT (NO TICK, CLEAN TEXT) */
.v3-content {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(201, 124, 93, 0.18);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    color: #3a2f2a;
    transition: 0.3s ease;
    width: 100%;
}

.v3-content:hover {
    transform: translateX(8px);
    border-color: rgba(201, 124, 93, 0.4);
}

/* FOOTER */
.edtech-features-v3-footer {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 124, 93, 0.25);
    font-size: 14px;
    color: #5f4b43;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .edtech-features-v3-header h2 {
        font-size: 28px;
    }

    .edtech-features-v3-flow {
        padding-left: 25px;
    }
}

/* Education Technology */
.edtech-ai-section {
    position: relative;
    padding: 80px 5%;
    background: #070812;
    overflow: hidden;
    color: #fff;
}

/* 🌈 Animated Gradient Background */
.ai-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #070812, #1a0b2e, #062b3a, #2a0b25);
    background-size: 300% 300%;
    animation: gradientFlow 12s ease infinite;
    opacity: 0.9;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 🔵 Floating Orbs */
.ai-orbs::before,
.ai-orbs::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(90px);
    animation: floatMove 10s ease-in-out infinite alternate;
    z-index: 0;
}

.ai-orbs::before {
    background: #8b5cf6;
    top: 10%;
    left: 5%;
}

.ai-orbs::after {
    background: #22d3ee;
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes floatMove {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(-50px) translateX(40px);
    }
}

/* ⚡ Scan Line */
.ai-scan {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6bcb, transparent);
    top: 0;
    animation: scanMove 5s linear infinite;
    opacity: 0.35;
    z-index: 0;
}

@keyframes scanMove {
    0% {
        transform: translateY(-200px);
    }
    100% {
        transform: translateY(900px);
    }
}

/* =========================
   LAYOUT
========================= */

.edtech-ai-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TAG */
.edtech-ai-tag {
    padding: 8px 14px;
    border: 1px solid #22d3ee;
    color: #22d3ee;
    font-size: 11px;
    letter-spacing: 1px;
    display: inline-block;
}

/* HEADING */
.edtech-ai-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin: 12px 0;
    background: linear-gradient(90deg, #22d3ee, #8b5cf6, #ff6bcb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.edtech-ai-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* POINTS */
.edtech-ai-point {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
    font-size: 13px;
}

.edtech-ai-point:hover {
    transform: translateX(8px);
    border-color: #22d3ee;
}

/* FOOTER */
.edtech-ai-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* =========================
   AI CORE VISUAL
========================= */

.ai-core {
    width: 280px;
    height: 280px;
    margin: auto;
    position: relative;
}

/* RINGS */
.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: rotate 10s linear infinite;
}

.r1 {
    border-color: #22d3ee55;
}
.r2 {
    transform: scale(0.75);
    animation-duration: 7s;
    border-color: #8b5cf655;
}
.r3 {
    transform: scale(0.5);
    animation-duration: 4s;
    border-color: #ff6bcb55;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* CENTER */
.ai-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #22d3ee;
    text-align: center;
}

.ai-center i {
    font-size: 34px;
    margin-bottom: 8px;
}

/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

@media (max-width: 768px) {
    .edtech-ai-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* move visual below content */
    .edtech-ai-content {
        order: 1;
    }

    .edtech-ai-visual {
        order: 2;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    /* resize AI core */
    .ai-core {
        width: 200px;
        height: 200px;
    }

    .edtech-ai-content h2 {
        font-size: 28px;
    }
}

/* EdTech Solutions */
.edtech-vibrant-wrap {
    padding: 80px 20px;
    background: radial-gradient(circle at top, #f0f7ff, #f7f9fc);
    font-family: Arial, sans-serif;
}

.edtech-vibrant-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    height: 650px;
}

/* ================= CENTER ================= */

.edtech-vibrant-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    text-align: center;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #8da9c4, #eef4ed);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.edtech-vibrant-center h2 {
    margin: 0;
    font-size: 18px;
    color: #1f2a44;
}

/* ================= NODE BASE ================= */

.edtech-vibrant-node {
    position: absolute;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* ICON */
.edtech-vibrant-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* CARD */
.edtech-vibrant-card {
    width: 240px;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid transparent;
    transition: 0.3s ease;
}

.edtech-vibrant-card h3 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #1f2a44;
}

.edtech-vibrant-card p {
    margin: 0;
    font-size: 12px;
    color: #555;
}

/* Hover */
.edtech-vibrant-card:hover {
    transform: translateY(-6px);
}

/* ================= COLOR THEMES ================= */

.edtech-v1 .edtech-vibrant-icon {
    background: #ff6b6b;
}
.edtech-v1 .edtech-vibrant-card {
    border-color: #ff6b6b;
}

.edtech-v2 .edtech-vibrant-icon {
    background: #4dabf7;
}
.edtech-v2 .edtech-vibrant-card {
    border-color: #4dabf7;
}

.edtech-v3 .edtech-vibrant-icon {
    background: #51cf66;
}
.edtech-v3 .edtech-vibrant-card {
    border-color: #51cf66;
}

.edtech-v4 .edtech-vibrant-icon {
    background: #f59f00;
}
.edtech-v4 .edtech-vibrant-card {
    border-color: #f59f00;
}

.edtech-v5 .edtech-vibrant-icon {
    background: #845ef7;
}
.edtech-v5 .edtech-vibrant-card {
    border-color: #845ef7;
}

/* ================= POSITIONING ================= */

.edtech-v1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.edtech-v2 {
    top: 25%;
    right: -10px;
}
.edtech-v3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.edtech-v4 {
    top: 25%;
    left: -10px;
}
.edtech-v5 {
    top: 55%;
    right: -10px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .edtech-vibrant-container {
        height: auto;
        padding: 20px 0;
    }

    /* Center stays clean */
    .edtech-vibrant-center {
        position: relative;
        transform: none;
        width: 100%;
        margin-bottom: 20px;
    }

    /* IMPORTANT FIX:
     Convert radial layout into vertical flow
     but KEEP design style same */
    .edtech-vibrant-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;

        margin-bottom: 16px;

        /* keep same look but aligned */
        flex-direction: row;
        align-items: flex-start;
    }

    /* Prevent overflow issues */
    .edtech-vibrant-card {
        width: 100%;
    }

    /* Optional: improve spacing on mobile */
    .edtech-vibrant-icon {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .edtech-vibrant-center {
        position: relative;
        transform: none !important;
        top: auto !important;
        left: auto !important;

        width: 100%;
        max-width: 100%;

        margin: 0 auto 20px auto;

        padding: 18px 16px;

        border-radius: 14px;

        text-align: center;

        box-sizing: border-box;
    }

    .edtech-vibrant-center h2 {
        font-size: 16px;
        line-height: 1.4;
        word-break: break-word;
    }
}

/* Benefits */
.edben-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
    font-family: "Inter", sans-serif;
}

/* CONTAINER */
.edben-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* BACKGROUND SHAPES */
.edben-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
}

.edben-shape-1 {
    width: 350px;
    height: 350px;
    background: #8da9c4;
    top: -100px;
    left: -100px;
}

.edben-shape-2 {
    width: 300px;
    height: 300px;
    background: #b8d8be;
    right: -100px;
    bottom: -100px;
}

/* LEFT SIDE */
.edben-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(141, 169, 196, 0.12);
    color: #355070;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.edben-tag i {
    color: #4d7cff;
}

.edben-left h2 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 600;
    color: #1d2b53;
    margin-bottom: 24px;
}

.edben-left h2 span {
    background: linear-gradient(90deg, #4d7cff, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edben-description {
    font-size: 17px;
    line-height: 1.8;
    color: #5f6b85;
    max-width: 520px;
    margin-bottom: 30px;
}

.edben-bottom-text {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    max-width: 520px;
}

.edben-bottom-text p {
    margin: 0;
    color: #44506b;
    line-height: 1.7;
}

/* RIGHT SIDE */
.edben-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* CARD */
.edben-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.45s ease;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.edben-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 0.4s ease;
}

.edben-card:hover {
    transform: translateY(-10px);
}

.edben-card:hover::before {
    opacity: 1;
}

/* ICON */
.edben-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* CONTENT */
.edben-content {
    position: relative;
    z-index: 2;
}

.edben-content h3 {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
    color: #1d2b53;
    font-weight: 400;
}

/* CARD COLORS */
.edben-card1 .edben-icon {
    background: linear-gradient(135deg, #4d7cff, #6ea8fe);
}

.edben-card2 .edben-icon {
    background: linear-gradient(135deg, #00b894, #4dd4ac);
}

.edben-card3 .edben-icon {
    background: linear-gradient(135deg, #ff7675, #ff9f9f);
}

.edben-card4 .edben-icon {
    background: linear-gradient(135deg, #845ef7, #a78bfa);
}

.edben-card5 .edben-icon {
    background: linear-gradient(135deg, #f59f00, #ffc078);
}

.edben-card6 .edben-icon {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

/* HOVER GLOW */
.edben-card1::before {
    background: linear-gradient(135deg, rgba(77, 124, 255, 0.08), transparent);
}

.edben-card2::before {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.08), transparent);
}

.edben-card3::before {
    background: linear-gradient(135deg, rgba(255, 118, 117, 0.08), transparent);
}

.edben-card4::before {
    background: linear-gradient(135deg, rgba(132, 94, 247, 0.08), transparent);
}

.edben-card5::before {
    background: linear-gradient(135deg, rgba(245, 159, 0, 0.08), transparent);
}

.edben-card6::before {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.08), transparent);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .edben-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .edben-left {
        text-align: center;
    }

    .edben-description,
    .edben-bottom-text {
        max-width: 100%;
    }

    .edben-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .edben-section {
        padding: 70px 16px;
    }

    .edben-left h2 {
        font-size: 36px;
    }

    .edben-right {
        grid-template-columns: 1fr;
    }

    .edben-card {
        padding: 22px;
    }

    .edben-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .edben-left h2 {
        font-size: 30px;
    }

    .edben-description {
        font-size: 15px;
    }

    .edben-tag {
        font-size: 13px;
    }
}

/* Why Choose */
.digiature-edtech-difference-section {
    position: relative;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* CONTAINER */
.digiature-edtech-difference-container {
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* ORBS */
.digiature-edtech-difference-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.digiature-edtech-difference-orb1 {
    width: 320px;
    height: 320px;
    background: #183362;
    top: -80px;
    left: -80px;
}

.digiature-edtech-difference-orb2 {
    width: 280px;
    height: 280px;
    background: #183362;
    right: -80px;
    bottom: -80px;
}

/* HEADING */
.digiature-edtech-difference-heading {
    text-align: center;
    max-width: 850px;
    margin: auto auto 90px;
}

.digiature-edtech-difference-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(24, 51, 98, 0.08);
    color: #183362;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.digiature-edtech-difference-heading h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #183362;
    margin-bottom: 24px;
    font-weight: 600;
}

.digiature-edtech-difference-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #5f6b85;
}

/* TIMELINE */
.digiature-edtech-difference-timeline {
    position: relative;
}

.digiature-edtech-difference-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #183362, rgba(24, 51, 98, 0.1));
    transform: translateX(-50%);
    border-radius: 20px;
}

/* ITEMS */
.digiature-edtech-difference-item {
    width: 50%;
    position: relative;
    margin-bottom: 45px;
}

.digiature-edtech-difference-left {
    padding-right: 70px;
}

.digiature-edtech-difference-right {
    margin-left: auto;
    padding-left: 70px;
}

/* CARD */
.digiature-edtech-difference-card {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(24, 51, 98, 0.08);
    transition: 0.45s ease;
    overflow: hidden;
}

.digiature-edtech-difference-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 51, 98, 0.05), transparent);
    opacity: 0;
    transition: 0.4s ease;
}

.digiature-edtech-difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(24, 51, 98, 0.14);
}

.digiature-edtech-difference-card:hover::before {
    opacity: 1;
}

/* DOT */
.digiature-edtech-difference-item::after {
    content: "";
    position: absolute;
    top: 40px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #183362;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 6px rgba(24, 51, 98, 0.12);
    z-index: 4;
}

.digiature-edtech-difference-left::after {
    right: -11px;
}

.digiature-edtech-difference-right::after {
    left: -11px;
}

/* ICON */
.digiature-edtech-difference-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #183362, #29529a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 24px;
    transition: 0.4s ease;
}

.digiature-edtech-difference-card:hover .digiature-edtech-difference-icon {
    transform: rotate(-8deg) scale(1.05);
}

/* CONTENT */
.digiature-edtech-difference-content h3 {
    margin: 0;
    color: #183362;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
}

/* FOOTER */
.digiature-edtech-difference-footer {
    margin-top: 80px;
}

.digiature-edtech-difference-footer-box {
    max-width: 900px;
    margin: auto;
    background: linear-gradient(135deg, #183362, #24457d);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(24, 51, 98, 0.16);
}

.digiature-edtech-difference-footer-box i {
    font-size: 40px;
    margin-bottom: 20px;
}

.digiature-edtech-difference-footer-box p {
    margin: 0;
    line-height: 1.8;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .digiature-edtech-difference-heading h2 {
        font-size: 42px;
    }

    .digiature-edtech-difference-line {
        left: 20px;
    }

    .digiature-edtech-difference-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .digiature-edtech-difference-right {
        padding-left: 70px;
    }

    .digiature-edtech-difference-left::after,
    .digiature-edtech-difference-right::after {
        left: 9px;
    }
}

@media (max-width: 768px) {
    .digiature-edtech-difference-section {
        padding: 80px 16px;
    }

    .digiature-edtech-difference-heading {
        margin-bottom: 60px;
    }

    .digiature-edtech-difference-heading h2 {
        font-size: 34px;
    }

    .digiature-edtech-difference-heading p {
        font-size: 15px;
    }

    .digiature-edtech-difference-card {
        padding: 24px;
    }

    .digiature-edtech-difference-content h3 {
        font-size: 17px;
    }

    .digiature-edtech-difference-footer-box {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .digiature-edtech-difference-heading h2 {
        font-size: 28px;
    }

    .digiature-edtech-difference-subtitle {
        font-size: 12px;
    }

    .digiature-edtech-difference-footer-box p {
        font-size: 15px;
    }
}

/* Future */
.future-learning-orbit-section {
    position: relative;
    padding: 80px 20px 70px;
    background: linear-gradient(180deg, #e1e5f2 0%, #f7f8fc 100%);
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* GLOWS */
.future-learning-orbit-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.future-learning-orbit-glow1 {
    width: 340px;
    height: 340px;
    background: #9381ff;
    top: -120px;
    left: -120px;
}

.future-learning-orbit-glow2 {
    width: 280px;
    height: 280px;
    background: #9381ff;
    bottom: -80px;
    right: -80px;
}

/* CONTAINER */
.future-learning-orbit-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.future-learning-orbit-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 60px;
    background: rgba(147, 129, 255, 0.12);
    color: #6b5cff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
}

.future-learning-orbit-content h2 {
    font-size: 64px;
    line-height: 1.05;
    color: #1f1b4d;
    margin-bottom: 26px;
    font-weight: 600;
}

.future-learning-orbit-content h2 span {
    color: #9381ff;
}

.future-learning-orbit-content > p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f5b7d;
    max-width: 520px;
}

/* BOTTOM TEXT */
.future-learning-orbit-bottom-text {
    margin-top: 55px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.future-learning-orbit-line {
    width: 5px;
    min-width: 5px;
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(to bottom, #9381ff, transparent);
}

.future-learning-orbit-bottom-text p {
    margin: 0;
    line-height: 1.9;
    color: #49456a;
    font-size: 16px;
}

/* ORBIT SYSTEM */
.future-learning-orbit-system {
    position: relative;
    width: 100%;
    height: 760px;
}

/* CORE */
.future-learning-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

.future-learning-orbit-core-inner {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9381ff, #6d5dfc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 58px;
    box-shadow:
        0 0 0 18px rgba(147, 129, 255, 0.08),
        0 0 0 36px rgba(147, 129, 255, 0.05);
    animation: orbitPulse 4s infinite ease-in-out;
}

.future-learning-orbit-core span {
    display: block;
    margin-top: 26px;
    font-size: 18px;
    font-weight: 700;
    color: #1f1b4d;
}

/* ITEMS */
.future-learning-orbit-item {
    position: absolute;
    width: 240px;
    text-align: center;
}

.future-learning-orbit-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 18px;
    color: #9381ff;
    font-size: 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.future-learning-orbit-item:hover .future-learning-orbit-icon {
    transform: scale(1.12) rotate(-8deg);
    background: #9381ff;
    color: #ffffff;
}

.future-learning-orbit-item h3 {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2752;
    margin: 0;
    font-weight: 700;
}

/* POSITIONING */
.future-learning-orbit-item1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.future-learning-orbit-item2 {
    top: 22%;
    right: 0;
}

.future-learning-orbit-item3 {
    bottom: 16%;
    right: 6%;
}

.future-learning-orbit-item4 {
    bottom: 16%;
    left: 6%;
}

.future-learning-orbit-item5 {
    top: 22%;
    left: 0;
}

/* ORBIT RINGS */
.future-learning-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(147, 129, 255, 0.22);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.future-learning-orbit-ring1 {
    width: 520px;
    height: 520px;
    animation: rotateOrbit 30s linear infinite;
}

.future-learning-orbit-ring2 {
    width: 700px;
    height: 700px;
    animation: rotateOrbitReverse 40s linear infinite;
}

/* ANIMATIONS */
@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateOrbitReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes orbitPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .future-learning-orbit-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .future-learning-orbit-content {
        text-align: center;
    }

    .future-learning-orbit-content > p {
        margin: auto;
    }

    .future-learning-orbit-bottom-text {
        justify-content: center;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .future-learning-orbit-section {
        padding: 100px 16px 80px;
    }

    .future-learning-orbit-content h2 {
        font-size: 40px;
    }

    .future-learning-orbit-system {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .future-learning-orbit-core,
    .future-learning-orbit-item {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

    .future-learning-orbit-core {
        margin-bottom: 40px;
    }

    .future-learning-orbit-core-inner {
        width: 140px;
        height: 140px;
        font-size: 42px;
        margin: auto;
    }

    .future-learning-orbit-ring {
        display: none;
    }

    .future-learning-orbit-bottom-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .future-learning-orbit-content h2 {
        font-size: 32px;
    }

    .future-learning-orbit-content > p {
        font-size: 15px;
    }

    .future-learning-orbit-item h3 {
        font-size: 15px;
    }

    .future-learning-orbit-bottom-text {
        flex-direction: column;
    }

    .future-learning-orbit-line {
        width: 100%;
        height: 4px;
    }
}

/* CTA */
/* SECTION */
.digiature-edtech-cta-launch-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: radial-gradient(
        circle at top left,
        #1b1f45 0%,
        #11152f 55%,
        #0a0d1f 100%
    );
    font-family: "Inter", sans-serif;
}

/* REMOVE FLOATING BADGES */
.digiature-edtech-cta-launch-badge {
    display: none;
}

/* CONTAINER */
.digiature-edtech-cta-launch-container {
    max-width: 1500px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* MAIN BOX */
.digiature-edtech-cta-launch-content {
    position: relative;
    max-width: 1380px; /* increased width */
    margin: auto;
    text-align: center;
    padding: 70px 80px; /* reduced height */
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* LIGHT EFFECT */
.digiature-edtech-cta-launch-content::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent);
    top: -120px;
    right: -120px;
}

/* TAG */
.digiature-edtech-cta-launch-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.08);
    color: #c8d0ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 26px;
}

.digiature-edtech-cta-launch-tag i {
    color: #8f7cff;
}

/* HEADING */
.digiature-edtech-cta-launch-content h2 {
    font-size: 42px;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 22px;
    font-weight: 600;
}

.digiature-edtech-cta-launch-content h2 span {
    background: linear-gradient(90deg, #8f7cff, #5de0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.digiature-edtech-cta-launch-content p {
    max-width: 980px;
    margin: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.9;
}

/* BUTTONS */
.digiature-edtech-cta-launch-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* BUTTON */
.digiature-edtech-cta-launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s ease;
}

/* PRIMARY */
.digiature-edtech-cta-launch-btn-primary {
    background: linear-gradient(135deg, #8f7cff, #6b57ff);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(111, 89, 255, 0.35);
}

.digiature-edtech-cta-launch-btn-primary:hover {
    transform: translateY(-6px);
}

/* SECONDARY */
.digiature-edtech-cta-launch-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.digiature-edtech-cta-launch-btn-secondary:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
}

/* BOTTOM */
.digiature-edtech-cta-launch-bottom {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.digiature-edtech-cta-launch-bottom-line {
    width: 140px;
    height: 2px;
    background: linear-gradient(to right, transparent, #8f7cff, transparent);
    margin-bottom: 18px;
}

.digiature-edtech-cta-launch-bottom p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .digiature-edtech-cta-launch-content {
        padding: 60px 35px;
    }

    .digiature-edtech-cta-launch-content h2 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .digiature-edtech-cta-launch-section {
        padding: 90px 16px;
    }

    .digiature-edtech-cta-launch-content {
        padding: 50px 22px;
        border-radius: 28px;
    }

    .digiature-edtech-cta-launch-content h2 {
        font-size: 38px;
    }

    .digiature-edtech-cta-launch-content p {
        font-size: 16px;
    }

    .digiature-edtech-cta-launch-buttons {
        flex-direction: column;
        align-items: center;
    }

    .digiature-edtech-cta-launch-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .digiature-edtech-cta-launch-content h2 {
        font-size: 30px;
    }

    .digiature-edtech-cta-launch-content p {
        font-size: 15px;
    }
}

/* FAQ */
/* SECTION */
.digiature-edtech-faq-wave-section {
    position: relative;
    padding: 80px 20px 80px;
    background: linear-gradient(180deg, #f8faff 0%, #eef5ff 100%);
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

/* TOP WAVE */
.digiature-edtech-faq-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.digiature-edtech-faq-wave-top svg {
    width: 100%;
    height: 120px;
}

.digiature-edtech-faq-wave-top path {
    fill: #dce8ff;
}

/* CONTAINER */
.digiature-edtech-faq-wave-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

/* LEFT */
.digiature-edtech-faq-wave-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 60px;
    background: rgba(34, 0, 124, 0.08);
    color: #22007c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
}

.digiature-edtech-faq-wave-left h2 {
    font-size: 64px;
    line-height: 1.05;
    color: #22007c;
    margin-bottom: 28px;
    font-weight: 600;
}

.digiature-edtech-faq-wave-left h2 span {
    color: #4b31b4;
}

.digiature-edtech-faq-wave-left > p {
    color: #4d5a7a;
    font-size: 17px;
    line-height: 1.9;
    max-width: 520px;
}

/* Help section image */
.digiature-edtech-faq-wave-help-image {
    margin-top: 50px;
}

.digiature-edtech-faq-wave-help-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}


/* SIDE INFO */
.digiature-edtech-faq-wave-info {
    margin-top: 50px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(34, 0, 124, 0.08);
    padding: 28px;
    border-radius: 26px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(34, 0, 124, 0.05);
    transition: 0.4s ease;
}

.digiature-edtech-faq-wave-info:hover {
    transform: translateY(-6px);
}

.digiature-edtech-faq-wave-info-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #22007c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.digiature-edtech-faq-wave-info h4 {
    margin: 0 0 10px;
    color: #22007c;
    font-size: 20px;
}

.digiature-edtech-faq-wave-info p {
    margin: 0;
    color: #586683;
    line-height: 1.8;
}

/* RIGHT FAQ */
.digiature-edtech-faq-wave-right {
    position: relative;
}

/* FAQ ITEM */
.digiature-edtech-faq-wave-item {
    position: relative;
    margin-bottom: 22px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(34, 0, 124, 0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
    box-shadow: 0 14px 40px rgba(34, 0, 124, 0.04);
}

.digiature-edtech-faq-wave-item:hover {
    transform: translateX(8px);
}

/* ACTIVE ITEM */
.digiature-edtech-faq-wave-item.active {
    background: #ffffff;
    border-color: rgba(34, 0, 124, 0.16);
    box-shadow: 0 22px 55px rgba(34, 0, 124, 0.08);
}

/* QUESTION */
.digiature-edtech-faq-wave-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

/* QUESTION TEXT */
.digiature-edtech-faq-wave-question span {
    color: #22007c;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
}

/* PLUS MINUS ICON */
.digiature-edtech-faq-wave-question i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(34, 0, 124, 0.08);
    color: #22007c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s ease;
}

/* ICON HOVER */
.digiature-edtech-faq-wave-question i:hover {
    background: #22007c;
    color: #ffffff;
    transform: scale(1.08);
}

/* ANSWER */
.digiature-edtech-faq-wave-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.45s ease,
        padding 0.3s ease;
    padding: 0 30px;
}

/* ACTIVE ANSWER */
.digiature-edtech-faq-wave-item.active .digiature-edtech-faq-wave-answer {
    padding: 0 30px 28px;
}

/* ANSWER TEXT */
.digiature-edtech-faq-wave-answer p {
    margin: 0;
    color: #5f6b85;
    line-height: 1.9;
    font-size: 15px;
}

/* ACTIVE ICON ROTATION */
.digiature-edtech-faq-wave-item.active .digiature-edtech-faq-wave-question i {
    transform: rotate(45deg);
    background: #22007c;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .digiature-edtech-faq-wave-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .digiature-edtech-faq-wave-left {
        text-align: center;
    }

    .digiature-edtech-faq-wave-left > p {
        margin: auto;
    }

    .digiature-edtech-faq-wave-info {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .digiature-edtech-faq-wave-section {
        padding: 90px 16px 100px;
    }

    .digiature-edtech-faq-wave-left h2 {
        font-size: 40px;
    }

    .digiature-edtech-faq-wave-question {
        padding: 24px 22px;
        gap: 16px;
    }

    .digiature-edtech-faq-wave-answer {
        padding: 0 22px;
    }

    .digiature-edtech-faq-wave-item.active .digiature-edtech-faq-wave-answer {
        padding: 0 22px 24px;
    }

    .digiature-edtech-faq-wave-question span {
        font-size: 16px;
    }

    .digiature-edtech-faq-wave-info {
        flex-direction: column;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .digiature-edtech-faq-wave-left h2 {
        font-size: 32px;
    }

    .digiature-edtech-faq-wave-left > p {
        font-size: 15px;
    }

    .digiature-edtech-faq-wave-question span {
        font-size: 15px;
    }

    .digiature-edtech-faq-wave-answer p {
        font-size: 14px;
    }

    .digiature-edtech-faq-wave-question i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 14px;
    }
}
