@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================================================================
   CSS VARIABLES & GLOBAL SETTINGS
   ========================================================================= */
:root {
    /* Color System */
    --primary-glow: #4f8cff;
    --accent-glow: #00ffd5;
    --text-main: #ffffff;
    --text-sec: #8a8a8a;

    /* Backgrounds */
    --bg-dark: #05070d;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --main-bg: radial-gradient(circle at 20% 20%, #0a0f1f, #05070d 70%);
    --glow-grad: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));

    /* Shadows */
    --glow-shadow: 0 0 20px rgba(79, 140, 255, 0.3), 0 0 40px rgba(0, 255, 213, 0.2);
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --trans-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --trans-med: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: auto;
    /* Handled by GSAP/Smooth scroll logic if needed, else native */
    background: var(--bg-dark);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-image: var(--main-bg);
    background-attachment: fixed;
    line-height: 1.6;
    cursor: none;
    /* For custom cursor */
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.glow-text {
    background: var(--glow-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 213, 0.4);
}

/* =========================================================================
   CUSTOM CURSOR
   ========================================================================= */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-glow);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--accent-glow);
    transition: transform 0.1s;
}

.cursor-glow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 213, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, transform 0.1s linear;
    box-shadow: inset 0 0 15px rgba(0, 255, 213, 0.2);
}

/* Hover state for cursor */
.cursor-hover .cursor-glow {
    width: 80px;
    height: 80px;
    background-color: rgba(79, 140, 255, 0.1);
    border-color: var(--primary-glow);
    box-shadow: 0 0 20px rgba(79, 140, 255, 0.4);
}

/* =========================================================================
   UTILITIES & COMPONENTS
   ========================================================================= */
.relative-z {
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
    transition: all var(--trans-med);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.glow-btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0, 255, 213, 0.5);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--trans-fast);
    z-index: 1;
    cursor: pointer;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--glow-grad);
    transition: var(--trans-fast);
    z-index: -1;
}

.glow-btn:hover {
    box-shadow: var(--glow-shadow);
    color: #000;
    border-color: transparent;
}

.glow-btn:hover::before {
    left: 0;
}

.glow-btn.secondary {
    border-color: rgba(79, 140, 255, 0.5);
}

.glow-btn.secondary:hover {
    box-shadow: 0 0 20px rgba(79, 140, 255, 0.6);
}

.glow-btn.small-btn {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-desc {
    color: var(--text-sec);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--trans-fast);
}

.premium-nav.scrolled {
    padding: 15px 0;
    background: rgba(5, 7, 13, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-glow);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--accent-glow);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    /* behind everything */
    pointer-events: none;
    /* Let clicks pass through */
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 2;
   text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
   text-align: center;
}

.type-cursor {
    color: var(--accent-glow);
    font-weight: 300;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtext {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-sec);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-glow);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 5px var(--accent-glow);
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about-section {
    padding: 120px 0;
}

.profile-image-wrapper {
    position: relative;
    padding: 20px;
    border-radius: 50%;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.glow-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-glow);
    border-bottom-color: var(--primary-glow);
    animation: spin 10s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 213, 0.2) inset;
    pointer-events: none;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.floating-tag {
    position: absolute;
    background: rgba(5, 7, 13, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-glow);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(0, 255, 213, 0.2);
    z-index: 3;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.floating-tag i {
    margin-right: 5px;
    color: var(--primary-glow);
}

.tag-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.tag-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s;
}

.tag-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 0.7s;
}

@keyframes float {

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

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

/* Skills */
.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.skill-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-bar-fill {
    height: 100%;
    width: 0;
    /* Animated by GSAP */
    background: var(--glow-grad);
    border-radius: 10px;
    position: relative;
}

.bar-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 10px;
    background: #fff;
    filter: blur(5px);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* =========================================================================
   EXPERIENCE SECTION
   ========================================================================= */
.experience-section {
    padding: 120px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-glow), var(--accent-glow));
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -38px;
    top: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--accent-glow);
    box-shadow: 0 0 15px var(--accent-glow);
    z-index: 2;
}

.timeline-content {
    padding: 30px;
}

.timeline-date {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.timeline-company {
    font-size: 1.1rem;
    color: var(--text-sec);
    margin-bottom: 15px;
    font-weight: 400;
}

.timeline-desc {
    color: var(--text-sec);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =========================================================================
   KEY SKILLS SECTION
   ========================================================================= */
.key-skills-section {
    padding: 100px 0 140px;
}

.skill-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
}

.skill-badge:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(79, 140, 255, 0.5);
    box-shadow: 0 10px 20px rgba(79, 140, 255, 0.2);
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--primary-glow);
    margin-bottom: 15px;
    transition: color 0.3s, text-shadow 0.3s;
}

.skill-badge:hover .badge-icon {
    color: var(--accent-glow);
    text-shadow: 0 0 20px rgba(0, 255, 213, 0.5);
}

.skill-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-sec);
    transition: color 0.3s;
}

.skill-badge:hover span {
    color: var(--text-main);
}

/* =========================================================================
   PROJECTS SECTION
   ========================================================================= */
.projects-section {
    padding: 120px 0;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(to top, rgba(5, 7, 13, 1) 0%, rgba(5, 7, 13, 0) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--trans-med);
}

.proj-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--accent-glow);
}

.proj-desc {
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: var(--trans-med);
    pointer-events: none;
}

.project-card:hover .project-card-border {
    border-color: rgba(0, 255, 213, 0.4);
    box-shadow: inset 0 0 20px rgba(0, 255, 213, 0.2);
}

/* =========================================================================
   SERVICES SECTION
   ========================================================================= */
.services-section {
    padding: 100px 0;
}

.service-card {
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: default;
}

.svc-icon {
    font-size: 3rem;
    color: var(--primary-glow);
    margin-bottom: 25px;
    transition: var(--trans-fast);
}

.svc-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.svc-desc {
    color: var(--text-sec);
    font-size: 0.95rem;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 140, 255, 0.4);
    box-shadow: 0 15px 30px rgba(79, 140, 255, 0.15);
}

.service-card:hover .svc-icon {
    transform: scale(1.1) translateY(-5px);
    color: var(--accent-glow);
    text-shadow: 0 0 20px rgba(0, 255, 213, 0.5);
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials-section {
    padding: 120px 0;
    overflow: hidden;
}

.testimonial-wrapper {
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    width: max-content;
}

.testi-card {
    width: 400px;
    padding: 40px;
    flex-shrink: 0;
    opacity: 0.7;
    transform: scale(0.9);
    transition: var(--trans-med);
}

.testi-card.is-active,
.testi-card:hover {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(0, 255, 213, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 213, 0.15);
}

.stars {
    color: #ffb400;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
}

.testi-name {
    font-size: 1.1rem;
    color: var(--accent-glow);
    margin-bottom: 5px;
}

.testi-role {
    font-size: 0.85rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact-section {
    padding: 140px 0;
}

.contact-wrapper {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info {
    padding: 60px;
    background: radial-gradient(circle at top left, rgba(79, 140, 255, 0.1), transparent 70%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 255, 213, 0.05);
    border: 1px solid rgba(0, 255, 213, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-glow);
    margin-right: 20px;
    box-shadow: inset 0 0 15px rgba(0, 255, 213, 0.1);
}

.detail-item h5 {
    color: var(--text-sec);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.detail-item a {
    color: #fff;
}

.contact-form-col {
    padding: 60px;
    background: rgba(0, 0, 0, 0.2);
}

.sleek-form .form-group {
    position: relative;
    margin-bottom: 40px;
}

.sleek-form .form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.2rem;
    transition: var(--trans-fast);
}

.sleek-form .form-control:focus {
    outline: none;
    border-bottom-color: transparent;
}

.sleek-form .floating-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-sec);
    pointer-events: none;
    transition: var(--trans-fast);
    font-size: 1.1rem;
}

.sleek-form .form-control:focus~.floating-label,
.sleek-form .form-control:not(:placeholder-shown)~.floating-label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent-glow);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sleek-form .input-glow {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--glow-grad);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.sleek-form .form-control:focus~.input-glow {
    width: 100%;
}

.sleek-form textarea.form-control {
    resize: none;
    min-height: 100px;
}

.form-submit {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px;
    font-size: 1rem;
}

.form-submit:hover .arrow-icon {
    transform: translateX(10px);
}

.arrow-icon {
    transition: transform 0.3s;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.premium-footer {
    position: relative;
    padding: 80px 0 0;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, rgba(5, 7, 13, 0.95));
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 100px;
}

.footer-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 800;
    color: var(--primary-glow);
    opacity: 0.03;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.brand-desc {
    color: var(--text-sec);
    max-width: 350px;
    font-size: 0.95rem;
    margin-top: 15px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-main);
    letter-spacing: 1px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: var(--text-sec);
    text-decoration: none;
    transition: var(--trans-fast);
    position: relative;
}

.footer-nav a:hover {
    color: var(--accent-glow);
    padding-left: 10px;
}

.premium-socials .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0 15px 15px 0;
}

.premium-socials .social-icon:hover {
    background: var(--glow-grad);
    border-color: transparent;
    color: #000;
    padding: 10px;
    border-radius: 50%;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: var(--text-sec);
    font-size: 0.85rem;
    margin-top: 0;
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--trans-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top:hover {
    background: rgba(0, 255, 213, 0.1);
    color: var(--accent-glow);
    border-color: var(--accent-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 213, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px;
    }

    .contact-form-col {
        padding: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* simple hidden for mobile, can add hamburger later */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-img-col {
        margin-bottom: 40px;
    }
}
