
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 8%;
    background: rgba(0, 0, 8, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.logo-text h3 {
    color: #fff7ff;
    font-size: 22px;
    margin-bottom: 2px;
    font-weight: 700;
}

.logo-text span {
    color: #b9b9c9;
    font-size: 13px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar a {
    position: relative;
    color: #d9d9e8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    border-radius: 20px;
    background: #8b5cf6;
    transition: 0.3s ease;
}

.navbar a:hover {
    color: #fff;
}

.navbar a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.theme-toggle,
.menu-btn {
    width: 48px;
    height: 48px;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff7ff;
    font-size: 20px;
    transition: 0.3s ease;
}

.theme-toggle:hover,
.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-btn {
    padding: 14px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
}

@media (max-width: 991px) {

    .header {
        padding: 16px 6%;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0b0b14;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 6%;
        gap: 22px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-btn {
        display: none;
    }
}

@media (max-width: 600px) {

    .logo-text span {
        display: none;
    }

    .logo-text h3 {
        font-size: 19px;
    }

    .theme-toggle,
    .menu-btn {
        width: 44px;
        height: 44px;
    }
}














.hero {
    position: relative;
    overflow: hidden;
    padding: 140px 8% 100px;
    background: #000008;
    color: #fff7ff;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 320px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    font-size: 14px;
    color: #cfcfe7;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-content p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: #c4c4d4;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    box-shadow: 0 10px 35px rgba(124, 58, 237, 0.35);
}

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

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff7ff;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.stat-box {
    min-width: 120px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.stat-box h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.stat-box span {
    color: #b7b7c9;
    font-size: 15px;
}

.hero-visual {
    flex: 1;
    min-width: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-card {
    width: 100%;
    max-width: 560px;
    background: #0d0d16;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.card-top {
    display: flex;
    gap: 10px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
}

.card-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
}

.card-top span:nth-child(1) {
    background: #ff5f57;
}

.card-top span:nth-child(2) {
    background: #febb2e;
}

.card-top span:nth-child(3) {
    background: #28c840;
}

.code-card pre {
    margin: 0;
    padding: 30px;
    overflow-x: auto;
}

.code-card code {
    font-family: "Courier New", monospace;
    color: #d4d4f7;
    line-height: 1.8;
    font-size: 15px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff7ff;
    font-size: 15px;
    animation: float 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 20px;
    color: #9f67ff;
}

.card-one {
    top: 8%;
    left: -20px;
}

.card-two {
    bottom: 15%;
    right: -10px;
}

.card-three {
    bottom: -20px;
    left: 18%;
}

@keyframes float {

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

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

@media (max-width: 991px) {

    .hero {
        padding: 120px 6% 80px;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-inline: auto;
    }

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

    .card-one {
        left: 0;
    }

    .card-two {
        right: 0;
    }

    .card-three {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 2.7rem;
    }

    .hero-content p {
        font-size: 16px;
    }

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

    .hero-stats {
        gap: 14px;
    }

    .stat-box {
        flex: 1;
    }

    .floating-card {
        position: static;
        margin-top: 15px;
    }

    .hero-visual {
        flex-direction: column;
        gap: 15px;
    }
}















.learning-tracks {
    padding: 110px 8%;
    background: #05050d;
    color: #fff7ff;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #b99cff;
    font-size: 14px;
    margin-bottom: 22px;
}

.section-title h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 22px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-title p {
    color: #bfbfd0;
    font-size: 17px;
    line-height: 1.8;
}

.tracks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.track-card {
    position: relative;
    padding: 35px;
    border-radius: 28px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: 0.4s ease;
}

.track-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(139, 92, 246, 0.18),
            transparent 50%);
    opacity: 0;
    transition: 0.4s ease;
}

.track-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.25);
}

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

.track-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 30px;
    margin-bottom: 28px;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.3);
}

.track-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.track-card p {
    color: #bfbfd0;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 15px;
}

.track-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.track-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d7d7e7;
    font-size: 14px;
}

.track-meta i {
    color: #9f67ff;
}

.track-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.track-btn i {
    transition: 0.3s ease;
}

.track-btn:hover i {
    transform: translateX(5px) translateY(-3px);
}

@media (max-width: 991px) {

    .learning-tracks {
        padding: 90px 6%;
    }

    .tracks-container {
        gap: 22px;
    }
}

@media (max-width: 600px) {

    .track-card {
        padding: 28px;
        border-radius: 24px;
    }

    .track-card h3 {
        font-size: 22px;
    }

    .track-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
    }

    .section-title {
        margin-bottom: 55px;
    }
}















.why-haprolearn {
    padding: 120px 8%;
    background: #000008;
    color: #fff7ff;
    overflow: hidden;
}

.why-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
}

.why-content {
    flex: 1;
    min-width: 320px;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #b99cff;
    font-size: 14px;
    margin-bottom: 24px;
}

.why-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.why-content>p {
    color: #bebed0;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 45px;
    max-width: 650px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(139, 92, 246, 0.25);
}

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    font-size: 28px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3);
}

.feature-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-text p {
    color: #bebed0;
    line-height: 1.8;
    font-size: 15px;
}

.why-visual {
    flex: 1;
    min-width: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    width: 100%;
    max-width: 520px;
    padding: 35px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 15px #22c55e;
}

.card-header p {
    font-size: 17px;
    font-weight: 600;
}

.progress-box {
    margin-bottom: 28px;
}

.progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #d9d9ea;
    font-size: 15px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.progress-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.fill-one {
    width: 85%;
}

.fill-two {
    width: 70%;
}

.fill-three {
    width: 92%;
}

.mini-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    animation: floatCard 5s ease-in-out infinite;
}

.mini-card i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 24px;
}

.mini-card h5 {
    font-size: 17px;
    margin-bottom: 5px;
}

.mini-card span {
    color: #bebed0;
    font-size: 14px;
}

.mini-one {
    top: 10%;
    left: -20px;
}

.mini-two {
    bottom: 8%;
    right: -10px;
}

@keyframes floatCard {

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

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

@media (max-width: 991px) {

    .why-haprolearn {
        padding: 90px 6%;
    }

    .why-container {
        flex-direction: column;
    }

    .why-content {
        text-align: center;
    }

    .why-content>p {
        margin-inline: auto;
    }

    .feature-item {
        text-align: left;
    }

    .mini-one {
        left: 0;
    }

    .mini-two {
        right: 0;
    }
}

@media (max-width: 600px) {

    .feature-item {
        flex-direction: column;
    }

    .glass-card {
        padding: 28px;
        border-radius: 26px;
    }

    .mini-card {
        position: static;
        margin-top: 18px;
    }

    .why-visual {
        flex-direction: column;
        gap: 18px;
    }

    .feature-text h4 {
        font-size: 20px;
    }
}





















.featured-courses {
    padding: 120px 8%;
    background: #05050d;
    color: #fff7ff;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.course-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.course-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

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

.course-level {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(12px);
}

.beginner {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.intermediate {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.advanced {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.course-content {
    padding: 32px;
}

.course-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.course-top span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cfcfe0;
    font-size: 14px;
}

.course-top i {
    color: #9f67ff;
}

.course-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    line-height: 1.3;
}

.course-content p {
    color: #bebed0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 32px;
}

.course-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.course-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-author h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.course-author span {
    color: #b9b9cb;
    font-size: 13px;
}

.course-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.3);
}

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

@media (max-width: 991px) {

    .featured-courses {
        padding: 90px 6%;
    }

    .courses-container {
        gap: 24px;
    }
}

@media (max-width: 600px) {

    .course-content {
        padding: 26px;
    }

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

    .course-image {
        height: 220px;
    }

    .course-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-btn {
        width: 100%;
    }
}
















.learning-roadmap {
    padding: 120px 8%;
    background: #000008;
    color: #fff7ff;
    overflow: hidden;
}

.roadmap-wrapper {
    position: relative;
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roadmap-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
            #7c3aed,
            rgba(124, 58, 237, 0.1));
    border-radius: 20px;
}

.roadmap-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-left: 110px;
}

.roadmap-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.35);
    z-index: 2;
}

.roadmap-content {
    width: 100%;
    padding: 35px;
    border-radius: 30px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
}

.roadmap-card:hover .roadmap-content {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, 0.25);
}

.roadmap-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.beginner {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.intermediate {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.project {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.advanced {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.roadmap-content h3 {
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.roadmap-content p {
    color: #bebed0;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 28px;
}

.roadmap-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.roadmap-skills span {
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #d7d7e8;
    font-size: 14px;
}

@media (max-width: 991px) {

    .learning-roadmap {
        padding: 90px 6%;
    }

    .roadmap-card {
        padding-left: 95px;
    }

    .roadmap-number {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }
}

@media (max-width: 700px) {

    .roadmap-line {
        left: 28px;
    }

    .roadmap-card {
        padding-left: 75px;
    }

    .roadmap-number {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 18px;
    }

    .roadmap-content {
        padding: 28px;
        border-radius: 24px;
    }

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

    .roadmap-skills span {
        font-size: 13px;
        padding: 10px 14px;
    }
}

@media (max-width: 500px) {

    .roadmap-card:hover .roadmap-content {
        transform: none;
    }

    .roadmap-content p {
        font-size: 14px;
    }
}
















.live-projects {
    padding: 120px 8%;
    background: #05050d;
    color: #fff7ff;
    overflow: hidden;
}

.projects-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.featured-project {
    position: relative;
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.featured-project::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(139, 92, 246, 0.2),
            transparent 50%);
    pointer-events: none;
}

.project-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.project-status span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.live {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.live span {
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
}

.project-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.project-icons i {
    font-size: 24px;
    color: #cfcfe0;
}

.featured-project h3 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.featured-project p {
    color: #bebed0;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 34px;
}

.project-progress {
    margin-bottom: 34px;
}

.progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 14px;
    color: #d7d7e8;
}

.progress-bar {
    width: 100%;
    height: 14px;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.dashboard-fill {
    width: 78%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cfcfe0;
    font-size: 14px;
}

.project-meta i {
    color: #9f67ff;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.3);
}

.project-btn:hover {
    transform: translateY(-4px);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mini-project-card {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
}

.mini-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.22);
}

.mini-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mini-top i {
    font-size: 24px;
    color: #b99cff;
}

.mini-badge {
    padding: 9px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.ui {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

.backend {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
}

.ai {
    background: rgba(168, 85, 247, 0.15);
    color: #d8b4fe;
}

.community {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.mini-project-card h4 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.mini-project-card p {
    color: #bebed0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.mini-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.mini-bottom span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d7d7e8;
    font-size: 13px;
}

.mini-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.mini-bottom a:hover {
    color: #b99cff;
}

@media (max-width: 1100px) {

    .projects-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .live-projects {
        padding: 90px 6%;
    }
}

@media (max-width: 700px) {

    .project-grid {
        grid-template-columns: 1fr;
    }

    .featured-project {
        padding: 30px;
    }

    .featured-project h3 {
        font-size: 30px;
    }

    .mini-project-card h4 {
        font-size: 22px;
    }
}

@media (max-width: 500px) {

    .featured-project,
    .mini-project-card {
        border-radius: 24px;
    }

    .project-btn {
        width: 100%;
        justify-content: center;
    }
}











.projects-extra-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 35px;
}

.extra-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
}

.extra-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.25);
}

.extra-info-card i {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.3);
}

.extra-info-card h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.extra-info-card span {
    color: #bebed0;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 900px) {

    .projects-extra-info {
        grid-template-columns: 1fr;
    }
}










.platform-stats {
    padding: 120px 8%;
    background: #000008;
    color: #fff7ff;
    overflow: hidden;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats-intro {
    max-width: 550px;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #b99cff;
    font-size: 14px;
    margin-bottom: 24px;
}

.stats-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.stats-intro p {
    color: #bebed0;
    line-height: 1.9;
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stats-card {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
    overflow: hidden;
}

.stats-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(139, 92, 246, 0.18),
            transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.22);
}

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

.stats-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 30px;
    margin-bottom: 28px;
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.32);
}

.stats-card h3 {
    font-size: 52px;
    margin-bottom: 14px;
    line-height: 1;
    font-weight: 800;
}

.stats-card h3::after {
    content: "+";
    color: #9f67ff;
}

.stats-card p {
    color: #cfcfe0;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 1100px) {

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

    .stats-intro {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 991px) {

    .platform-stats {
        padding: 90px 6%;
    }
}

@media (max-width: 700px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        padding: 28px;
        border-radius: 24px;
    }

    .stats-card h3 {
        font-size: 42px;
    }

    .stats-icon {
        width: 66px;
        height: 66px;
        border-radius: 20px;
        font-size: 26px;
    }
}
















.inside-platform {
    padding: 120px 8%;
    background: #05050d;
    color: #fff7ff;
    overflow: hidden;
}

.platform-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.preview-window {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.window-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.window-dots {
    display: flex;
    gap: 10px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) {
    background: #ff5f57;
}

.window-dots span:nth-child(2) {
    background: #febb2e;
}

.window-dots span:nth-child(3) {
    background: #28c840;
}

.window-top p {
    color: #d7d7e8;
    font-size: 14px;
}

.workspace-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 30px;
}

.workspace-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
}

.workspace-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.22);
}

.large-card {
    grid-column: span 2;
}

.workspace-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.3);
}

.workspace-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
}

.workspace-card p {
    color: #bebed0;
    line-height: 1.8;
    font-size: 14px;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
}

.feature-box:hover {
    transform: translateX(8px);
    border-color: rgba(139, 92, 246, 0.22);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.3);
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-box p {
    color: #bebed0;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 1100px) {

    .platform-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {

    .inside-platform {
        padding: 90px 6%;
    }
}

@media (max-width: 700px) {

    .workspace-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        grid-column: span 1;
    }

    .workspace-card,
    .feature-box {
        padding: 24px;
        border-radius: 24px;
    }

    .workspace-card h4,
    .feature-box h3 {
        font-size: 21px;
    }

    .workspace-icon,
    .feature-icon-box {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 24px;
    }
}

@media (max-width: 500px) {

    .feature-box {
        flex-direction: column;
    }

    .workspace-grid {
        padding: 22px;
    }

    .window-top {
        padding: 18px 20px;
    }
}


















.community-section {
    padding: 120px 8%;
    background: #000008;
    color: #fff7ff;
    overflow: hidden;
}

.community-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
    align-items: stretch;
}

.main-community-card {
    height: 100%;
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.main-community-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(139, 92, 246, 0.2),
            transparent 55%);
    pointer-events: none;
}

.community-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.community-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #86efac;
    font-size: 13px;
    font-weight: 600;
}

.community-status span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.member-stack {
    display: flex;
    align-items: center;
}

.member-stack img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0b0b14;
    margin-left: -12px;
}

.member-stack img:first-child {
    margin-left: 0;
}

.main-community-card h3 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.main-community-card p {
    color: #bebed0;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 38px;
}

.community-stats {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.community-stat {
    flex: 1;
    min-width: 120px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.community-stat h4 {
    font-size: 32px;
    margin-bottom: 8px;
}

.community-stat span {
    color: #bebed0;
    font-size: 14px;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.35s ease;
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.3);
}

.community-btn:hover {
    transform: translateY(-4px);
}

.community-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.community-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
}

.community-feature:hover {
    transform: translateX(8px);
    border-color: rgba(139, 92, 246, 0.22);
}

.community-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.3);
}

.community-feature h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.community-feature p {
    color: #bebed0;
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 1100px) {

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

@media (max-width: 991px) {

    .community-section {
        padding: 90px 6%;
    }

    .main-community-card h3 {
        font-size: 36px;
    }
}

@media (max-width: 700px) {

    .main-community-card,
    .community-feature {
        padding: 26px;
        border-radius: 26px;
    }

    .community-feature {
        flex-direction: column;
    }

    .community-feature h4 {
        font-size: 22px;
    }

    .community-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 24px;
    }

    .main-community-card h3 {
        font-size: 30px;
    }
}

@media (max-width: 500px) {

    .community-stats {
        flex-direction: column;
    }

    .community-btn {
        width: 100%;
        justify-content: center;
    }

    .member-stack img {
        width: 44px;
        height: 44px;
    }
}



















.testimonials-section {
    padding: 120px 8%;
    background: #05050d;
    color: #fff7ff;
    overflow: hidden;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    position: relative;
    padding: 38px;
    border-radius: 32px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(139, 92, 246, 0.18),
            transparent 55%);
    opacity: 0;
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.22);
}

.testimonial-card:hover::before,
.active-card::before {
    opacity: 1;
}

.active-card {
    border-color: rgba(139, 92, 246, 0.22);
    transform: translateY(-8px);
}

.quote-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
    font-size: 32px;
    margin-bottom: 28px;
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.3);
}

.testimonial-text {
    color: #d6d6e7;
    line-height: 1.95;
    font-size: 16px;
    margin-bottom: 34px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-image {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(139, 92, 246, 0.3);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user h4 {
    font-size: 19px;
    margin-bottom: 6px;
}

.testimonial-user span {
    color: #bebed0;
    font-size: 14px;
}

@media (max-width: 1100px) {

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

@media (max-width: 991px) {

    .testimonials-section {
        padding: 90px 6%;
    }
}

@media (max-width: 700px) {

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

    .testimonial-card {
        padding: 30px;
        border-radius: 26px;
    }

    .quote-icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}




















.faq-section {
    padding: 120px 8%;
    background: #000008;
    color: #fff7ff;
    overflow: hidden;
}

.faq-wrapper {
    max-width: 950px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-item {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.22);
}

.faq-question {
    width: 100%;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff7ff;
    text-align: left;
}

.faq-question span {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.faq-question i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.12);
    color: #b99cff;
    font-size: 24px;
    transition: 0.35s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 0 32px 30px;
    color: #bebed0;
    line-height: 1.9;
    font-size: 15px;
}

.active-faq .faq-answer {
    max-height: 300px;
}

.active-faq .faq-question i {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: #fff;
}

@media (max-width: 991px) {

    .faq-section {
        padding: 90px 6%;
    }
}

@media (max-width: 700px) {

    .faq-item {
        border-radius: 24px;
    }

    .faq-question {
        padding: 24px;
    }

    .faq-question span {
        font-size: 17px;
    }

    .faq-answer p {
        padding: 0 24px 24px;
        font-size: 14px;
    }

    .faq-question i {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 14px;
        font-size: 20px;
    }
}












.cta-footer-section {
    background: #05050d;
    color: #fff7ff;
    overflow: hidden;
}

.cta-banner {
    margin: 0 8%;
    padding: 80px;
    border-radius: 42px;
    background: linear-gradient(135deg,
            #7c3aed,
            #9333ea,
            #4f46e5);
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.2),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(255, 255, 255, 0.15),
            transparent 35%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    margin-bottom: 26px;
}

.cta-content h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.cta-content p {
    max-width: 600px;
    line-height: 1.9;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-cta-btn,
.secondary-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.35s ease;
}

.primary-cta-btn {
    background: #fff;
    color: #111;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.primary-cta-btn:hover {
    transform: translateY(-5px);
}

.secondary-cta-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.cta-visual {
    position: relative;
    height: 420px;
}

.floating-card {
    position: absolute;
    width: 290px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card i {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 28px;
}

.floating-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.floating-card span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.card-one {
    top: 0;
    right: 40px;
}

.card-two {
    top: 140px;
    left: 0;
    animation-delay: 1s;
}

.card-three {
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes floatCard {

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

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

.main-footer {
    padding: 110px 8% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-brand p {
    max-width: 500px;
    color: #bebed0;
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    transition: 0.35s ease;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    margin-bottom: 14px;
    color: #bebed0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #a7a7ba;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #a7a7ba;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 1100px) {

    .cta-banner,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .cta-visual {
        height: 350px;
    }
}

@media (max-width: 991px) {

    .cta-banner {
        margin: 0 6%;
        padding: 60px 40px;
    }

    .main-footer {
        padding: 90px 6% 40px;
    }
}

@media (max-width: 700px) {

    .cta-banner {
        padding: 40px 24px;
        border-radius: 30px;
    }

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

    .floating-card {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
    }

    .cta-visual {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 500px) {

    .cta-buttons {
        flex-direction: column;
    }

    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
    }

    .floating-card {
        flex-direction: column;
        align-items: flex-start;
    }
}















.modern-footer {
    padding: 90px 8% 35px;
    background: #000008;
    color: #fff7ff;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(139, 92, 246, 0.15),
            transparent 70%);
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-area {
    max-width: 520px;
}

.footer-logo {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-brand-area p {
    color: #bebed0;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 32px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social-links a {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.35s ease;
}

.footer-social-links a:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.3);
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-links-column h4 {
    font-size: 20px;
    margin-bottom: 26px;
}

.footer-links-column a {
    display: block;
    margin-bottom: 16px;
    color: #bebed0;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links-column a:hover {
    color: #fff;
    transform: translateX(6px);
}

.footer-bottom-bar {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-bar p,
.footer-bottom-bar span {
    color: #9f9fb2;
    font-size: 14px;
}

@media (max-width: 991px) {

    .modern-footer {
        padding: 80px 6% 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-social-links a {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 20px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}