@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #0e0e0e;
    --second-bg-color: #131313;
    --text-color: #fff;
    --main-color: #00ffee;
    --header-bg: #0e0e0e;
    --mobile-nav-bg: #131313;
    --paragraph-color: #dedede;
    --service-text-color: black;
}

body.light-mode {
    --bg-color: #f7f9fc;
    --second-bg-color: #ffffff;
    --text-color: #1a1e24;
    --main-color: #0088ff;
    --header-bg: #ffffff;
    --mobile-nav-bg: #ffffff;
    --paragraph-color: #4b5563;
    --service-text-color: #ffffff;
}

.theme-toggle {
    background: transparent;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    margin-left: 1.5rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}
.theme-toggle:hover {
    color: var(--main-color);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color) !important;
    color: var(--text-color) !important;
    overflow-x: hidden;
    width: 100%;
}

/* ── GLOBAL ULTRA-THIN / TRANSPARENT SCROLLBARS ── */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 238, 0.2) transparent;
}

body.light-mode * {
    scrollbar-color: rgba(15, 118, 110, 0.2) transparent;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

body.light-mode ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
}

body.light-mode ::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

::-webkit-scrollbar-corner {
    background: transparent;
}


/* ── HEADER ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(0, 255, 238, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.light-mode .header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}
.logo span { color: var(--main-color); }
.logo:hover {
    transform: scale(1.05);
    color: var(--text-color);
}

/* Burger icon — hidden on desktop */
#menu-icon {
    font-size: 3.2rem;
    color: var(--main-color);
    display: none;
    cursor: pointer;
    z-index: 1100;
    transition: 0.3s ease;
}
#menu-icon:hover {
    transform: scale(1.1);
}

/* Renamed from .navbar to .nav-menu */
.nav-menu {
    display: flex;
    align-items: center;
}
.nav-menu a {
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 3.5rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.nav-menu a i {
    display: none;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}


/* ── SECTIONS (shared) ── */
section {
    min-height: 100vh;
    padding: 10rem 9% 5rem;
    scroll-margin-top: 85px;
}


/* ── HOME ── */
.home {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5.5rem;
    padding-top: 14rem;
    padding-bottom: 6rem;
    text-align: left;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

.home-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 480px;
    max-width: 500px;
    width: 100%;
}
.home-img img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    cursor: pointer;
    animation: floatImage 3.5s ease-in-out infinite;
    transition: filter 0.3s ease;
}
.home-img img:hover {
    filter: drop-shadow(0 0 25px var(--main-color));
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.home-content {
    flex: 1;
    max-width: 820px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.home-content h1 {
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    white-space: nowrap;
}
span { color: var(--main-color); }

.home-content h3 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}
.home-content p {
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 2.2rem;
    color: var(--paragraph-color);
}
.hero-desc {
    font-size: clamp(1.2rem, 1.45vw, 1.55rem);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 2.2rem;
    color: var(--paragraph-color);
    width: 100%;
}
.hero-desc .desc-line {
    display: block;
    white-space: nowrap;
    margin-bottom: 0.35rem;
}

.social-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    margin: 1.2rem 0 2.4rem;
}
.social-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.2rem;
    height: 4.2rem;
    background: transparent;
    border: 0.2rem solid var(--main-color);
    font-size: 1.8rem;
    border-radius: 50%;
    color: var(--main-color);
    transition: 0.3s ease;
}
.social-icon a:hover {
    color: black;
    transform: scale(1.1) translateY(-3px);
    background: var(--main-color);
    box-shadow: 0 0 20px var(--main-color);
}
body.light-mode .social-icon a {
    background: #ffffff;
    border-color: var(--main-color);
    color: var(--main-color);
    box-shadow: 0 2px 6px rgba(0, 136, 255, 0.12);
}
body.light-mode .social-icon a:hover {
    background: var(--main-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.35);
}

.home-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.6rem;
}
.home-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    border-radius: 4rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}
.btn.btn-1 {
    background: var(--bg-color);
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 5px rgba(0, 255, 238, 0.15);
}
.btn.btn-1:hover {
    background: var(--main-color);
    color: black;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--main-color);
}
body.light-mode .btn.btn-1 {
    background: #ffffff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 2px 8px rgba(0, 136, 255, 0.1);
}
body.light-mode .btn.btn-1:hover {
    background: var(--main-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.25);
}

.btn.btn-2 {
    background: var(--main-color);
    color: black;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 8px rgba(0, 255, 238, 0.25);
}
.btn.btn-2:hover {
    background: var(--bg-color);
    color: var(--main-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--main-color);
}
body.light-mode .btn.btn-2 {
    background: var(--main-color);
    color: #ffffff;
    border: 2px solid var(--main-color);
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}
body.light-mode .btn.btn-2:hover {
    background: #ffffff;
    color: var(--main-color);
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.15);
}

/* Typing animation */
.typing-text {
    font-size: 2.8rem;
    font-weight: 600;
    display: inline-block;
    color: var(--text-color);
    min-height: 4.2rem;
}
.typing-text .typed-text {
    color: var(--main-color);
    font-weight: 700;
}
.typing-text .typed-cursor {
    color: var(--main-color);
    font-weight: 300;
    display: inline-block;
    margin-left: 2px;
    animation: blinkCursor 0.75s infinite;
}
@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* ── SERVICES ── */
.section-services {
    background-color: var(--second-bg-color);
}
.section-services .header-section { margin-bottom: 35px; }

.header-section .title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4rem;
    text-align: center;
}
.header-section .title::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background-color: var(--main-color);
}
.header-section .title::after {
    content: "";
    position: absolute;
    top: 53px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
}
.header-section .title span { color: var(--main-color); }

.section-services .single-service {
    background-color: var(--main-color);
    box-shadow: 0 0 10px 0 var(--main-color);
    transition: 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.section-services .single-service:hover {
    background-color: var(--bg-color);
    box-shadow: 0 0 25px var(--main-color);
    border: 2px solid var(--main-color);
}
.section-services .single-service:hover .part-1,
.section-services .single-service:hover .part-2 a,
.section-services .single-service:hover .part-2 a i,
.section-services .single-service:hover .part-2 .description {
    color: var(--text-color);
}

.section-services .single-service .part-1 {
    padding: 35px 35px 20px;
    border-bottom: 2px solid rgba(0,0,0,0.15);
    font-size: 45px;
    color: black;
    transition: 0.3s ease;
}
.section-services .single-service:hover .part-1 {
    border-bottom: 2px solid rgba(0,255,238,0.3);
}
.section-services .single-service .part-1 .title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.4em;
    text-transform: none;
    color: black;
    margin-top: 15px;
    margin-bottom: 0;
    padding-bottom: 0;
}
.section-services .single-service .part-1 .title::before,
.section-services .single-service .part-1 .title::after { display: none; }

.section-services .single-service:hover .part-1 .title { color: var(--text-color); }

.section-services .single-service .part-2 {
    padding: 25px 35px 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section-services .single-service .part-2 .description {
    margin-bottom: 22px;
    color: black;
    font-size: 1.4rem;
    line-height: 1.7em;
    transition: 0.3s ease;
}
.section-services .single-service .part-2 a {
    color: black;
    font-size: 1.4rem;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.section-services .single-service .part-2 a i {
    margin-right: 8px;
    color: black;
    transition: 0.3s ease;
}


/* ── EDUCATION ── */
.education { background: var(--bg-color); }

.education .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}
.education .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: #1c3b39;
    top: 0; bottom: 0;
    left: 50%;
    margin-left: -3px;
    z-index: 0;
    border-radius: 3px;
}
.education .timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.education .timeline-container::after {
    content: '\f501';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 32px;
    height: 32px;
    line-height: 24px;
    right: -16px;
    background-color: var(--bg-color);
    border: 4px solid var(--main-color);
    top: 20px;
    border-radius: 50%;
    z-index: 100;
    font-size: 1.2rem;
    text-align: center;
    color: var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
}
.education .left  { left: 0; }
.education .right { left: 50%; }
.education .right::after { left: -16px; right: auto; }

.education .left::before {
    content: '';
    position: absolute;
    height: 0; top: 26px; width: 0; z-index: 1;
    right: 30px;
    border: medium solid var(--main-color);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--main-color);
}
.education .right::before {
    content: '';
    position: absolute;
    height: 0; top: 26px; width: 0; z-index: 1;
    left: 30px;
    border: medium solid var(--main-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--main-color) transparent transparent;
}

.education .content {
    position: relative;
    background: var(--second-bg-color);
    border-radius: 8px;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 10px rgba(0,255,238,0.2);
    transition: 0.3s ease;
}
.education .content:hover {
    box-shadow: 0 0 20px var(--main-color);
    transform: translateY(-3px);
}
.education .content .tag {
    padding: 1.8rem 2rem 0.5rem;
}
.education .content .tag h2 {
    color: var(--main-color);
    font-size: 2.1rem;
    font-weight: 700;
}
.education .content .desc {
    padding: 0.5rem 2rem 1.8rem;
}
.education .content .desc p {
    color: var(--paragraph-color);
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}


/* ── PROJECTS ── */
.project { background: var(--second-bg-color); }

.project .card {
    height: 250px;
    transition: all .3s ease;
    border-radius: 16px;
    border: 2px solid transparent;
    background-color: var(--bg-color);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,255,238,0.2);
    position: relative;
    overflow: hidden;
}
.project .card img.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0) brightness(85%);
    transition: all .3s ease;
}
.project .card:hover {
    border-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    transform: translateY(-5px);
}
.project .card:hover img.card-img-top {
    filter: blur(3px) brightness(35%);
    transform: scale(1.05);
}
.project h5 {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    font-weight: 700;
    opacity: 0;
    text-shadow: 0 2px 10px black;
    transition: all .3s ease;
    text-align: center;
    width: 90%;
    pointer-events: none;
    color: var(--text-color);
}
.project .card:hover h5 { opacity: 1; font-size: 2.6rem; top: 42%; }

.project .btn {
    opacity: 0;
    position: absolute;
    left: 50%; top: 110%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1.4rem;
    background: var(--bg-color);
    color: var(--main-color);
    border: 2px solid var(--main-color) !important;
    border-radius: 30px;
    white-space: nowrap;
}
.project .card:hover .btn {
    opacity: 1;
    top: 78%;
}
.project .btn:hover {
    color: black !important;
    background: var(--main-color) !important;
    box-shadow: 0 0 20px var(--main-color);
}
.project-icon { 
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 10px;
}


/* ── CONTACT ── */
.contact { background: var(--bg-color); }

.contact-info {
    max-width: 130rem;
    width: 100%;
    margin: 2rem auto 3rem;
    text-align: center;
}
.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}
.contact-link {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    background-color: var(--second-bg-color);
    padding: clamp(1.2rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 1rem;
    width: 100%;
    border: 2px solid transparent;
    word-break: break-word;
}
.contact-link i {
    color: var(--main-color);
    font-size: 2.4rem;
    width: 30px;
}
.contact-link:hover {
    border-color: var(--main-color);
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.2);
    transform: translateY(-3px);
    color: var(--main-color);
}


/* ── FOOTER ── */
.footer {
    width: 100%;
    padding: 40px 5% 30px;
    background-color: var(--bg-color);
    border-top: 1px solid #222;
}
.footer .social-icon {
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 0;
}
.footer .social-icon a {
    font-size: 2rem;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 44px; height: 44px;
    line-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}
.footer .social-icon a:hover {
    background-color: var(--main-color);
    color: black;
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 0 20px var(--main-color);
}
.footer ul {
    list-style: none;
    padding: 0; margin: 0;
    font-size: 1.6rem;
    text-align: center;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    gap: 1rem 2.5rem;
}
.footer ul li a {
    color: #ccc;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
    font-weight: 500;
    font-size: 1.5rem;
}
.footer ul li a:hover { 
    color: var(--main-color);
    text-shadow: 0 0 10px var(--main-color);
}
.footer .copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 1.4rem;
    color: #888;
    font-weight: 400;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet & Small Desktop (≤ 995px)
═══════════════════════════════════════════ */
@media (max-width: 995px) {
    html { font-size: 56%; }

    .header { padding: 1.8rem 5%; }
    section { padding: 10rem 5% 5rem; }

    /* Burger menu activation */
    #menu-icon { 
        display: block; 
        font-size: 2.8rem;
        color: var(--main-color);
        cursor: pointer;
        z-index: 1200; 
    }

    /* Clean, full-width Top-Down Mobile Dropdown Navigation */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        height: auto;
        max-height: calc(100vh - 100%);
        max-height: calc(100dvh - 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        border-bottom: 2px solid var(--main-color);
        border-right: none;
        padding: 1.8rem 5% 2.5rem;
        background-color: var(--mobile-nav-bg);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
        z-index: 1100;
        transform: translateY(-10px);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, visibility 0.25s ease;
        display: flex;
        overflow-y: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body.light-mode .nav-menu {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .nav-menu.active { 
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1.2rem 1.6rem;
        margin: 0.3rem 0;
        font-size: 1.8rem;
        font-weight: 600;
        margin-left: 0;
        border-radius: 10px;
        border-bottom: none;
        border-left: 3px solid transparent;
        color: var(--text-color);
        transition: all 0.2s ease;
    }

    .nav-menu a i {
        display: inline-block;
        margin-right: 1.2rem;
        font-size: 1.8rem;
        color: var(--main-color);
        width: 24px;
        text-align: center;
        flex-shrink: 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--main-color);
        background: rgba(0, 255, 238, 0.1);
        border-left: 4px solid var(--main-color);
        border-bottom: none;
        padding-left: 2rem;
    }

    body.light-mode .nav-menu a:hover,
    body.light-mode .nav-menu a.active {
        background: rgba(0, 136, 255, 0.1);
        color: var(--main-color);
    }

    .nav-menu .theme-toggle {
        margin-left: 0.5rem;
        margin-top: 1.2rem;
        padding: 0.8rem 1.6rem;
        border-radius: 10px;
        background: rgba(0, 255, 238, 0.08);
        border: 1px solid var(--main-color);
        color: var(--main-color);
        align-self: flex-start;
        font-size: 1.6rem;
    }

    body.light-mode .nav-menu .theme-toggle {
        background: rgba(0, 136, 255, 0.08);
        border-color: var(--main-color);
    }

    /* Disable dark blurry backdrop overlay */
    .nav-overlay {
        display: none !important;
    }

    /* Home Hero Layout */
    .home {
        flex-direction: column;
        text-align: center;
        gap: 2.8rem;
        padding-top: 10rem;
        padding-bottom: 4rem;
    }
    .home-img {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .home-img img {
        max-width: 290px;
    }
    .home-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    .home-content h1 { 
        font-size: clamp(2.8rem, 5.5vw, 4rem); 
        white-space: nowrap; 
        margin-bottom: 0.6rem;
    }
    .home-content h3 { 
        font-size: 2.6rem; 
        margin-bottom: 1.2rem;
    }
    .hero-desc {
        font-size: 1.5rem;
        line-height: 1.65;
        text-align: center;
        width: 100%;
        max-width: 640px;
        margin: 0 auto 1.8rem;
        white-space: normal;
    }
    .hero-desc .desc-line {
        display: inline;
        white-space: normal;
        margin-bottom: 0;
    }
    .social-icon { 
        justify-content: center; 
        margin: 0.8rem 0 2rem;
    }
    .home-button { justify-content: center; }

    /* Contact inputs stacked (removed form) */
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet Timeline (≤ 850px)
═══════════════════════════════════════════ */
@media (max-width: 850px) {
    /* Education Timeline single column */
    .education .timeline::after { left: 28px; }
    .education .timeline-container {
        width: 100%;
        padding-left: 7rem;
        padding-right: 2rem;
    }
    .education .timeline-container.left,
    .education .timeline-container.right {
        left: 0;
    }
    .education .timeline-container::after {
        left: 12px;
        right: auto;
    }
    .education .left::before,
    .education .right::before {
        left: 60px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--main-color) transparent transparent;
    }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile Phones (≤ 600px)
═══════════════════════════════════════════ */
@media (max-width: 600px) {
    html { font-size: 50%; }

    .home { 
        padding-top: 8.5rem; 
        padding-bottom: 3.5rem;
        gap: 2.2rem; 
    }
    .home-img img {
        max-width: 230px;
    }
    .home-content h1 { 
        font-size: clamp(2.5rem, 7.5vw, 3.4rem); 
        white-space: nowrap; 
        margin-bottom: 0.5rem;
    }
    .home-content h3, .typing-text { 
        font-size: 2.2rem; 
        min-width: unset; 
        margin-bottom: 1.2rem;
    }
    .hero-desc { 
        font-size: 1.45rem; 
        line-height: 1.6; 
        text-align: center; 
        width: 100%;
        max-width: 94%;
        margin: 0 auto 1.6rem;
        white-space: normal;
    }
    .hero-desc .desc-line {
        display: inline;
        white-space: normal;
        margin-bottom: 0;
    }
    .social-icon {
        margin: 0.6rem 0 1.8rem;
        gap: 1.2rem;
    }
    .social-icon a {
        width: 4.2rem;
        height: 4.2rem;
        font-size: 1.7rem;
    }
    .home-button {
        gap: 1.3rem;
        flex-wrap: wrap;
    }
    .home-button .btn {
        padding: 1.1rem 2.6rem;
        font-size: 1.5rem;
    }

    .header-section .title { font-size: 3.2rem; }

    /* Projects stacked */
    .project .card { height: 200px; }

    .footer ul { 
        flex-direction: column;
        gap: 1.2rem; 
    }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — Large Screens (≥ 1285px)
═══════════════════════════════════════════ */
@media (min-width: 1285px) {
    html { font-size: 62.5%; }
    .home {
        max-width: 1400px;
        gap: 6.5rem;
    }
}

/* ═══════════════════════════════════════════
   CUSTOM MODAL OVERLAY STYLES
═══════════════════════════════════════════ */
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    padding: 20px;
}
.custom-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-container {
    background: var(--bg-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 35px rgba(0, 255, 238, 0.35);
    border-radius: 20px;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 35px;
    color: var(--text-color);
    transform: scale(0.85) translateY(20px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.custom-modal-backdrop.active .custom-modal-container {
    transform: scale(1) translateY(0);
}

.custom-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10;
}
.custom-modal-close:hover {
    background: var(--main-color);
    color: #000;
    box-shadow: 0 0 15px var(--main-color);
    transform: rotate(90deg);
}

body.light-mode .custom-modal-container {
    background: #ffffff;
    color: #333333;
    border-color: var(--main-color);
    box-shadow: 0 10px 45px rgba(0, 136, 255, 0.25);
}
body.light-mode .custom-modal-close {
    background: rgba(0, 0, 0, 0.08);
    color: #333;
}

/* Modal Typography & Internal Elements */
.modal-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(0, 255, 238, 0.12);
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
body.light-mode .modal-header-badge {
    background: rgba(0, 136, 255, 0.1);
}

.modal-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.25;
    margin-bottom: 8px;
}
body.light-mode .modal-title {
    color: #111;
}

.modal-subtitle {
    font-size: 1.5rem;
    color: var(--main-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.modal-media-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 238, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.modal-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 25px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-section-title i {
    font-size: 2rem;
}

.modal-body-text {
    font-size: 1.45rem;
    line-height: 1.75;
    color: var(--paragraph-color);
    margin-bottom: 20px;
}
body.light-mode .modal-body-text {
    color: #444;
}

.modal-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}
.modal-highlights-list li {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1.35rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-color);
}
body.light-mode .modal-highlights-list li {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #333;
}
.modal-highlights-list li i {
    color: var(--main-color);
    font-size: 1.6rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.modal-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.modal-tech-badge {
    background: rgba(0, 255, 238, 0.08);
    border: 1px solid var(--main-color);
    color: var(--text-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}
body.light-mode .modal-tech-badge {
    color: #222;
    background: rgba(0, 136, 255, 0.08);
}

.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}
@media (max-width: 650px) {
    .modal-stats-grid {
        grid-template-columns: 1fr;
    }
}
.modal-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--main-color);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}
body.light-mode .modal-stat-card {
    background: #f0f7ff;
}
.modal-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 4px;
}
.modal-stat-label {
    font-size: 1.2rem;
    color: var(--paragraph-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
body.light-mode .modal-stat-label {
    color: #666;
}

.modal-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
body.light-mode .modal-cta-group {
    border-top-color: #eee;
}
.modal-btn-primary {
    background: var(--main-color);
    color: #000 !important;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 12px 26px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.4);
}
.modal-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--main-color);
    color: #000 !important;
}
.modal-btn-secondary {
    background: transparent;
    color: var(--text-color) !important;
    border: 1.5px solid var(--text-color);
    font-weight: 600;
    font-size: 1.4rem;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: 0.3s ease;
}
body.light-mode .modal-btn-secondary {
    color: #333 !important;
    border-color: #333;
}
.modal-btn-secondary:hover {
    border-color: var(--main-color);
    color: var(--main-color) !important;
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   DEVELOPER BLUEPRINTS & PROMPTS STORE STYLES
═══════════════════════════════════════════ */
.vibedev {
    padding: 8rem 9% 8rem;
    background: var(--bg-color);
    transition: 0.3s ease;
}

.vibedev-subtitle {
    font-size: 1.55rem;
    color: var(--text-color);
    opacity: 0.82;
    margin-top: 1rem;
    margin-bottom: 2.8rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Filter Bar */
.vibe-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.6rem;
}

.vibe-filter-btn {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-size: 1.35rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

body.light-mode .vibe-filter-btn {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #475569;
}

.vibe-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    transform: translateY(-1px);
}

body.light-mode .vibe-filter-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.vibe-filter-btn.active {
    background: var(--main-color);
    color: #000;
    border-color: var(--main-color);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

body.light-mode .vibe-filter-btn.active {
    background: #0f766e;
    color: #ffffff;
    border-color: #0f766e;
}

/* Prompt Card */
.vibe-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.4rem;
    padding: 2.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

body.light-mode .vibe-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.vibe-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 238, 0.35);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

body.light-mode .vibe-card:hover {
    border-color: #0f766e;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.vibe-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
}

.vibe-badge {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-free {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-premium {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

body.light-mode .badge-free {
    background: #ecfdf5;
    color: #059669;
    border-color: #a7f3d0;
}

body.light-mode .badge-premium {
    background: #fffbeb;
    color: #d97706;
    border-color: #fde68a;
}

.vibe-cat {
    font-size: 1.25rem;
    color: #94a3b8;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

body.light-mode .vibe-cat {
    color: #64748b;
}

.vibe-card-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.vibe-card-desc {
    font-size: 1.35rem;
    color: var(--text-color);
    opacity: 0.78;
    line-height: 1.55;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

/* Architecture Features / Key Deliverables */
.vibe-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.vibe-card-features li {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.85;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.45;
}

.vibe-card-features li i {
    color: var(--main-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

body.light-mode .vibe-card-features li i {
    color: #0f766e;
}

/* Technical Specification Tag */
.vibe-ai-recommended {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    opacity: 0.85;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.4rem;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.light-mode .vibe-ai-recommended {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #475569;
}

.vibe-ai-recommended i {
    font-size: 1.15rem;
    color: var(--main-color);
    flex-shrink: 0;
}

body.light-mode .vibe-ai-recommended i {
    color: #0f766e;
}

/* Code Snippet Box (Clean IDE style) */
.vibe-code-preview {
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.8rem;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 1.2rem;
    color: #7dd3fc;
    overflow: hidden;
    line-height: 1.5;
    max-height: 64px;
}

body.light-mode .vibe-code-preview {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #0369a1;
}

/* Card Action Buttons */
.vibe-card-footer {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: nowrap;
}

.vibe-btn {
    flex: 1;
    padding: 0.95rem 1.2rem;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
    text-decoration: none !important;
}

.vibe-btn i {
    flex-shrink: 0;
    font-size: 1.2rem;
}

.vibe-btn-copy {
    background: var(--main-color);
    color: #000;
}

.vibe-btn-copy:hover {
    background: #00e6d6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 238, 0.2);
}

body.light-mode .vibe-btn-copy {
    background: #0f766e;
    color: #ffffff;
}

body.light-mode .vibe-btn-copy:hover {
    background: #0d9488;
}

.vibe-btn-buy {
    background: #f59e0b;
    color: #000000;
}

.vibe-btn-buy:hover {
    background: #d97706;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.vibe-btn-view {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

body.light-mode .vibe-btn-view {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}

.vibe-btn-view:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--main-color);
    border-color: var(--main-color);
    transform: translateY(-1px);
}

body.light-mode .vibe-btn-view:hover {
    background: #f1f5f9;
    border-color: #0f766e;
    color: #0f766e;
}

/* Modal Prompt Extensions */
.modal-badge-free {
    color: #10b981 !important;
}

.modal-badge-premium {
    color: #f59e0b !important;
}

.modal-prompt-codebox {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.2rem;
    padding: 1.8rem;
    margin-bottom: 2rem;
    max-height: 250px;
    overflow-y: auto;
}

body.light-mode .modal-prompt-codebox {
    background: #1e293b;
    border-color: #334155;
}

.modal-prompt-codebox pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.modal-prompt-codebox code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 1.3rem;
    color: #38bdf8;
    line-height: 1.6;
}

/* Floating Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f172a;
    color: #00ffee;
    border: 1.5px solid #00ffee;
    padding: 1.2rem 2.4rem;
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 255, 238, 0.3);
    z-index: 999999;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

body.light-mode .toast-notification {
    background: #ffffff;
    color: #0f766e;
    border-color: #0f766e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* AI Recommendation Tag */
.vibe-ai-recommended {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 255, 238, 0.08);
    border: 1px solid rgba(0, 255, 238, 0.25);
    color: var(--main-color);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.light-mode .vibe-ai-recommended {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.25);
    color: #0f766e;
}

.vibe-ai-recommended i {
    font-size: 1.15rem;
    color: var(--main-color);
    flex-shrink: 0;
}

body.light-mode .vibe-ai-recommended i {
    color: #0f766e;
}

.vibe-ai-recommended span {
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modal AI Recommendation Box */
.modal-ai-box {
    background: rgba(0, 255, 238, 0.06);
    border: 1px solid rgba(0, 255, 238, 0.2);
    border-radius: 1rem;
    padding: 1rem 1.6rem;
    color: var(--text-color);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.modal-ai-box i {
    color: var(--main-color);
    font-size: 1.5rem;
}

body.light-mode .modal-ai-box {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

body.light-mode .modal-ai-box i {
    color: #16a34a;
}

/* Modal Paystack Form Controls */
.modal-paystack-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 238, 0.2);
    border-radius: 1.4rem;
    padding: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

body.light-mode .modal-paystack-form {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.modal-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.modal-email-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.8rem;
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 1.4rem;
}

body.light-mode .modal-email-input {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
}

.modal-email-input:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 12px rgba(0, 255, 238, 0.3);
}

.modal-btn-paystack {
    width: 100%;
    background: linear-gradient(135deg, #00ffee, #00b3a4);
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.4rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 255, 238, 0.4);
}

.modal-btn-paystack:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 238, 0.7);
}

.modal-cta-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.modal-cta-divider::before,
.modal-cta-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

body.light-mode .modal-cta-divider::before,
body.light-mode .modal-cta-divider::after {
    border-color: #e2e8f0;
}

.modal-cta-divider span {
    padding: 0 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color);
    opacity: 0.6;
}



