:root {
    --primary-dark: #435565;
    --primary-medium: #738A9A;
    --primary-light: #636D7D;
    --accent-light: #CCD8E2;
    --accent-muted: #697773;

    --text-color: #CCD8E2;
    --bg-color: #435565;
    --hover-color: #738A9A;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at 50% 30%, var(--primary-medium) 0%, var(--primary-dark) 100%);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.landing-bg-box {
    background: url('images/laptop-hands.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: lighten;
    min-height: 100vh; 
    position: relative; 
    z-index: 0;
}

.landing-bg-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 55, 0.68);
    z-index: -1;
    pointer-events: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: transparent;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 80px;
    width: auto;
}

/* Navigation styles */
.nav {
    position: fixed;
    top: 0;
    right: -20%; /* hidden initially */
    width: 20%;
    height: 100vh;
    background-color: var(--primary-medium);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.menu-toggle {
    font-size: 2.3rem;
    background: none;
    border: none;
    color: var(--accent-light);
    cursor: pointer;
}

.nav-links {
    list-style: none;
    padding: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2100;
}

/* Close button */
.nav-links .close-btn {
    font-size: 2.3rem;
    align-self: flex-end;
    cursor: pointer;
}

.nav a {
    color: var(--accent-light);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.3rem 0;
}

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

@media screen and (max-width: 768px) {
    .nav {
        right: -30%;
        width: 30%;
    }
}

@media (max-width: 600px) {
    .nav {
        right: -40%;
        width: 40%;
    }
}

/* Hero Section Styles */
.hero {
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
    margin-top: 0;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    gap: 2rem;
    margin: 0 auto;
}

.intro-container {
    font-size: 1.2rem;
}

.name {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-light);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--accent-light);
    width: fit-content;
    margin: 0.5rem 0 1rem 0;
    animation: blink-cursor 1s steps(1) infinite;
}

@keyframes blink-cursor {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: var(--accent-light);
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #fff;
    background: var(--accent-light);
    box-shadow: 0 0 10px rgba(204, 216, 226, 0.3);
    outline: none;
}

.btn:hover {
    box-shadow: 0 0 20px rgba(204, 216, 226, 0.5);
}

.primary-btn {
    background: var(--accent-light);
    color: var(--primary-dark);
}

.primary-btn:hover {
    background: var(--hover-color);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

.secondary-btn {
    background: transparent;
    color: var(--accent-light);
    border: 2px solid var(--accent-light);
}

.secondary-btn:hover {
    background: var(--hover-color);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

.intro-text p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: var(--accent-light);
    line-height: 1.6;
    padding: 0 1rem;
}

.intro-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* Media Queries */
@media (max-width: 768px) {
    .name {
        font-size: 2rem;
        width: 90%;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-container h2 {
        align-self: flex-start;
    }

    .intro-container,
    .intro-text {
        order: 1;
        margin-bottom: 1.5rem;
    }

    .intro-image {
        display: none;
        /* Hide image on smaller screens */
        /*order: 2;
        margin-bottom: 1.5rem;*/
    }

    .cta-buttons {
        justify-content: center;
    }

    .btn {
        width: 90%;
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }
}

/* About Section Styles */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Fix this later do not make them equal in width */
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 60%, var(--primary-medium) 100%);
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(67, 85, 101, 0.25), 0 1.5px 8px rgba(115, 138, 154, 0.15);
    margin: 2.5rem auto;
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
    width: 85%;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.about:hover {
    box-shadow: 0 12px 48px rgba(67, 85, 101, 0.35), 0 3px 16px rgba(115, 138, 154, 0.25);
}

.about h2 {
    font-family: 'Unica One', 'Orbitron', sans-serif;
    font-size: 2.3rem;
    color: var(--accent-light);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px var(--primary-light);
}

.about h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-muted);
    margin: 0.8rem 0;
    border-radius: 2px;
}

.title-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex;
    padding-left: 2.5rem;
    padding-right: 0.1rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.18rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
    align-self: center;
    background: rgba(67, 85, 101, 0.12);
    border-radius: 10px;
    padding: 1rem 1rem;
    box-shadow: 0 1px 6px rgba(115, 138, 154, 0.10);
}

.about strong {
    color: var(--accent-light);
    font-weight: 700;
    letter-spacing: 1px;
}

.about a {
    color: var(--accent-light);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.about a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--primary-light);
}

@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
        padding: 1.2rem 0.5rem;
        margin: 1.2rem auto;
        margin-top: 2.5rem;
    }

    .about h2 {
        font-size: 1.5rem;
    }

    .about p {
        font-size: 1rem;
        padding: 0.8rem 0.5rem;
    }

    .title-image-wrapper {
        align-items: center;
        padding-left: 0;
    }
}

/* Skills Section Styles */
.skills {
    width: 85%;
    margin: 3rem auto;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 18px;
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.10);
}

.skills-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-blue, #00f0ff);
    text-shadow: 0 0 10px var(--neon-blue, #00f0ff);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.skills-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.skills-group {
    background: rgba(20, 30, 40, 0.22);
    border-radius: 14px;
    box-shadow: 0 0 12px 0 rgba(0, 240, 255, 0.10);
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
}

.skills-group:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 7px 0 var(--neon-blue, #00f0ff);
}

.skills-group h3 {
    color: var(--neon-blue, #00f0ff);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 6px var(--neon-blue, #00f0ff);
    letter-spacing: 1px;
}

.skills-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e0f7fa;
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.skills-group li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.07);
}

.skills-group li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .skills {
        width: 90%;
    }

    .skills-group {
        width: 85%;
        margin: 0 auto;
    }
}

/* Services Section Styles */
.services {
    background: linear-gradient(120deg, var(--primary-dark) 60%, var(--primary-medium) 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 32px rgba(67, 85, 101, 0.18), 0 1.5px 8px rgba(115, 138, 154, 0.10);
    margin: 2.5rem auto;
    padding: 2.5rem 1.5rem;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.services-container {
    width: 100%;
}

.services h2 {
    font-family: 'Unica One', 'Orbitron', sans-serif;
    font-size: 2.3rem;
    color: var(--accent-light);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px var(--primary-light);
    text-align: center;
}

.services .intro {
    font-size: 1.15rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: rgba(67, 85, 101, 0.18);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(115, 138, 154, 0.12);
    padding: 2rem 1.2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: left;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(67, 85, 101, 0.28);
    transform: translateY(-6px) scale(1.03);
}

.service-card h3 {
    color: #00f0ff;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--accent-light);
    font-size: 1.08rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .services {
        padding: 1.2rem 0.5rem;
        margin: 1.2rem auto;
        width: 90%;
    }

    .services h2 {
        font-size: 1.5rem;
    }

    .services .intro {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.2rem 0.7rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.98rem;
    }
}

/*================ About Page Styles ================*/
.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero h2 {
    font-size: 2.5rem;
    color: var(--neon-blue);
    padding-top: 0.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem auto;
    /* center and add space below */
    box-shadow: 0 4px 24px rgba(0, 240, 255, 0.10);
    /* subtle glow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show the whole image, no cropping */
    border-radius: 50%;
    display: block;
}

.about-content {
    display: grid;
    width: 90%;
    margin: 0 auto;
}

.about-info-box {
    animation: pulseGlow 3s infinite;
    /* add this keyframe */
    padding: 1rem;
    margin: 1rem auto;
    width: 90%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

.about-info-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.about-info-box h3 {
    font-size: 1.6rem;
    text-decoration: underline;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px var(--neon-blue);
}

.about-info-box p {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
}

.emoji {
    margin-right: 0.5rem;
    text-shadow: 0 0 5px var(--neon-blue);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 2rem;
    }

    .about-info-box h3 {
        font-size: 1.4rem;
    }

    .about-info-box p {
        font-size: 1.05rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--neon-blue);
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 -2px 10px rgba(0, 240, 255, 0.1);
}

.site-footer p {
    margin: 0;
}

.site-footer strong {
    color: #fff;
    text-shadow: 0 0 10px var(--neon-blue);
}

/*================ Contact Page Styles ================*/
.contact-header {
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--soft-white);
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #cccccc;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 1rem auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}


.contact-icons {
    width: 32px;
    height: 32px;
}


.social-media-links {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 1.1rem;
    text-shadow: 0 0 5px var(--neon-blue);
}


.social-media-links:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}


/* Contact Form */
.contact-form {
    padding: 3rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--soft-white);
}


.contact-form h3 {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    text-align: center;
}


.contact-form p {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

label {
    font-weight: bold;
    color: var(--neon-blue);
}

input,
textarea {
    background-color:#636D7D;
    border: 1px solid var(--neon-blue);
    color: #fff;
    padding: 0.5rem;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 10px var(--neon-blue);
}

button {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-shadow: var(--glow-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-btn {
    background: var(--neon-blue, #00f0ff);
    color: #111;
}

.form-btn:hover {
    background: #111;
    color: var(--neon-blue, #00f0ff);
    box-shadow: 0 0 10px var(--neon-blue, #00f0ff);
}

button:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: var(--glow-shadow);
}


/* Social Media Section */
.social-media {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--soft-white);
}


.social-media h3 {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}


.social-media p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}


.social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}


.social-media li {
    text-align: center;
}


.social-media img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}


.social-media img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-blue));
}


.social-media label {
    display: block;
    margin-top: 0.5rem;
    color: var(--neon-blue);
    font-size: 1rem;
    text-shadow: 0 0 5px var(--neon-blue);
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header p,
    .contact-form p,
    .social-media p {
        font-size: 1rem;
    }

    .contact-info ul,
    .contact-form,
    .social-media ul {
        padding: 1rem;
    }

    form {
        padding: 1rem;
    }

    input,
    textarea {
        font-size: 1rem;
    }

    button {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .social-media ul {
        flex-direction: column;
        gap: 1rem;
    }

    .social-media img {
        width: 32px;
        height: 32px;
    }

    .contact-info li {
        flex-direction: row;
        align-items: center;
    }

    .contact-icons {
        width: 28px;
        height: 28px;
    }
}

/*================ Work Page Styles ================*/
.work-intro {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.10);
}

.work-intro-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    color: var(--neon-blue, #00f0ff);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.work-intro p {
    color: #e0f7fa;
    font-size: 1.18rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 600px;
    text-shadow: 0 0 4px rgba(0, 255, 255, 0.10);
}

.projects {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem 1rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 18px;
    box-shadow: 0 0 24px rgba(0, 240, 255, 0.10);
}

.projects-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-blue, #00f0ff);
    text-shadow: 0 0 6px var(--neon-blue, #00f0ff);
    margin: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.project-card {
    background: rgba(20, 30, 40, 0.62);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 0 16px 0 rgba(0, 240, 255, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s, box-shadow 0.18s;
    align-self: center;
}

.project-card:hover {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 0 8px 0 var(--neon-blue, #00f0ff);
}

.project-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: #222;
}

.project-content {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.project-content h3 {
    color: var(--neon-blue, #00f0ff);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 3px var(--neon-blue, #00f0ff);
}

.project-content p {
    color: #e0f7fa;
    font-size: 1.05rem;
    line-height: 1.6;
}

.project-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
    display: flex;
    gap: 1.5rem;
    font-size: 0.98rem;
    color: #b2ebf2;
}

.project-links {
    margin-top: 0.7rem;
    display: flex;
    gap: 1rem;
}

.project-links a {
    color: var(--neon-blue, #00f0ff);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}

.project-links a:hover {
    color: #fff;
    border-bottom: 1px solid var(--neon-blue, #00f0ff);
}

@media (max-width: 700px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .work-intro {
        padding: 1rem;
        margin: 1rem auto;
        width: 85%;
    }
    .work-intro-title {
        font-size: 2rem;
    }
    .work-intro p {
        font-size: 1rem;
    }
}

.work-cta {
    max-width: 700px;
    margin: 3rem auto 2.5rem auto;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    box-shadow: 0 0 32px 0 rgba(0, 240, 255, 0.13);
    text-align: center;
}

.work-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-blue, #00f0ff);
    text-shadow: 0 0 2px var(--neon-blue, #00f0ff);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.work-cta p {
    color: #e0f7fa;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
    outline: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.btn-primary {
    background: var(--neon-blue, #00f0ff);
    color: #111;
    margin: 0 auto;
    box-shadow: 0 0 10px var(--neon-blue, #00f0ff);
}

.btn-primary:hover {
    background: #111;
    color: var(--neon-blue, #00f0ff);
    box-shadow: 0 0 15px var(--neon-blue, #00f0ff);
    transform: translateY(-2px) scale(1.04);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue, #00f0ff);
    border: 2px solid var(--neon-blue, #00f0ff);
    box-shadow: 0 0 10px var(--neon-blue, #00f0ff);
}

.btn-secondary:hover {
    background: var(--neon-blue, #00f0ff);
    color: #111;
    box-shadow: 0 0 20px var(--neon-blue, #00f0ff);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    .work-cta {
        padding: 1rem;
        margin: 1rem auto;
        width: 85%;
    }
    .work-cta p {
        font-size: 1rem;
    }
    .work-cta-title {
        font-size: 1.5rem;
    }
    .btn-primary,
    .btn-secondary {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 2rem;
    box-sizing: border-box;
}

.modal-content {
    background: #181f25;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #e0f7fa;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    max-width: 1000px;
    width: 90%;
    position: relative;
    text-align: left;
    max-height: 88vh;
    overflow-y: auto;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 2rem;
    color: var(--neon-blue, #00f0ff);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #fff;
}

.case-study-content {
    font-family: 'Unica One', Arial, sans-serif;
    color: #e0f7fa;
    padding: 0;
}

.case-study-content h2 {
    color: var(--neon-blue, #00f0ff);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--neon-blue, #00f0ff);
    letter-spacing: 1px;
    text-align: center;
}

.case-study-content h3 {
    color: var(--neon-blue, #00f0ff);
    font-size: 1.15rem;
    font-style: italic;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.case-study-content p {
    color: #e0f7fa;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 1rem;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.case-study-content ul {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
    color: #e0f7fa;
    font-size: 1.1rem;
    padding-left: 1.2rem;
}

.case-study-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    list-style: disc;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.case-study-content strong {
    color: white;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1rem 0.5rem;
    }

    .case-study-content h2 {
        font-size: 1.5rem;
    }

    .case-study-content h3 {
        font-size: 1.2rem;
    }

    .case-study-content p,
    .case-study-content ul {
        font-size: 1.1rem;
    }
}

/*================ Thank You Page Styles ================*/
.thank-you-section {
    max-width: 500px;
    margin: 4rem auto 3rem auto;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 18px;
    box-shadow: 0 0 32px 0 rgba(0, 240, 255, 0.13);
    text-align: center;
}

.thank-you-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-blue, #00f0ff);
    text-shadow: 0 0 6px var(--neon-blue, #00f0ff);
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.thank-you-section p {
    color: #e0f7fa;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thank-you-section .btn-primary,
.thank-you-section .btn-secondary {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
    outline: none;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    margin: 0 0.5rem 0.5rem 0.5rem;
}

.thank-you-section .btn-primary {
    background: var(--neon-blue, #00f0ff);
    color: #111;
    box-shadow: 0 0 10px var(--neon-blue, #00f0ff);
}

.thank-you-section .btn-primary:hover {
    background: #111;
    color: var(--neon-blue, #00f0ff);
    box-shadow: 0 0 15px var(--neon-blue, #00f0ff);
    transform: translateY(-2px) scale(1.04);
}

.thank-you-section .btn-secondary {
    background: transparent;
    color: var(--neon-blue, #00f0ff);
    border: 2px solid var(--neon-blue, #00f0ff);
    box-shadow: 0 0 10px var(--neon-blue, #00f0ff);
}

.thank-you-section .btn-secondary:hover {
    background: var(--neon-blue, #00f0ff);
    color: #111;
    box-shadow: 0 0 20px var(--neon-blue, #00f0ff);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    .thank-you-section {
        padding: 1.2rem 0.5rem;
        width: 85%;
    }

    .thank-you-section .btn-primary,
    .thank-you-section .btn-secondary {
        font-size: 1rem;
        padding: 0.6rem 1rem;
        width: 80%;
        margin: 0 0 0.75rem 0;
    }
}