/* 
=== Bishal Manandhar | Portfolio Styles ===
*/

:root {
    /* Colors */
    --bg-color: #0a0a0a;
    --bg-alt: #121212;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    
    /* Accents */
    --accent-1: #00f3ff; /* Neon Cyan */
    --accent-2: #bc13fe; /* Neon Purple */
    --accent-grad: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    
    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-max: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Light Theme Variables */
body.light-mode {
    --bg-color: #f8f9fa;
    --bg-alt: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

/* === Base & Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for custom one */
    transition: background-color 0.4s ease, color 0.4s ease;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none; /* Use custom cursor */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-1);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s, background-color 0.2s;
}

/* Cursor Hover States */
.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 243, 255, 0.1);
    border-color: transparent;
}

.cursor-hover-text .cursor-outline {
    width: 80px;
    height: 80px;
    mix-blend-mode: difference;
    background-color: #fff;
    border-color: transparent;
}
.cursor-hover-text .cursor-dot {
    display: none;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px var(--accent-1)); }
    100% { transform: scale(1); opacity: 0.8; }
}

body.loaded #preloader {
    opacity: 0;
    pointer-events: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-transparent {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-main);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* === Layout Utilities === */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

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

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

/* === UI Components === */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-grad);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(188, 19, 254, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* === Form Inputs === */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

body.light-mode .form-group input, body.light-mode .form-group textarea {
    border: 1px solid rgba(0,0,0,0.2);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.02);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 0.8rem;
    background: var(--bg-alt);
    padding: 0 5px;
    color: var(--accent-1);
}

/* Hide placehoder to use standard label effect */
.form-group input::placeholder, .form-group textarea::placeholder {
    color: transparent;
}

.full-width { width: 100%; }

/* === 3D Perspective Utility === */
.tilt-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tilt-card {
    transition: transform 0.1s ease-out; /* JavaScript updates transform */
    transform-style: preserve-3d;
    will-change: transform;
}

/* Z-translation for inner floating elements */
.3d-box .card-inner > * {
    transform: translateZ(50px);
}
.3d-box .floating-badge {
    transform: translateZ(80px);
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-max);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}
.logo span { color: var(--accent-1); }

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-grad);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.toggle-theme {
    margin-left: auto;
    margin-right: 20px;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.toggle-theme:hover {
    color: var(--accent-1);
    transform: rotate(15deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001; /* Above mobile menu */
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Mobile Menu Active */
.hamburger.active .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .line:nth-child(2) { opacity: 0; }
.hamburger.active .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* === Decorative Background Elements === */
.bg-elements {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

.shape-1 {
    top: 10%; right: 10%;
    width: 400px; height: 400px;
    background: var(--accent-1);
}

.shape-2 {
    bottom: -10%; left: 0;
    width: 500px; height: 500px;
    background: var(--accent-2);
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 50px) scale(1.1); }
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero > .hero-content {
    flex: 1;
    padding-left: 5%;
}

.hero > .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--accent-1);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-visual .card-inner {
    position: relative;
    width: 450px;
    height: 550px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.badge-1 { top: 15%; left: -10%; color: var(--accent-1); }
.badge-2 { bottom: 20%; right: -15%; color: var(--accent-2); }

/* Animation Classes for generic fade up */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

/* Section scroll animation classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}


/* === About Section === */
.profile-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 30px;
    position: relative;
}

.profile-img {
    width: 100%;
    border-radius: 20px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.profile-overlay {
    position: absolute;
    inset: 15px;
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.skills-container { margin-top: 2rem; }

.skill { margin-bottom: 1.5rem; }

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
body.light-mode .skill-bar { background: rgba(0,0,0,0.1); }

.skill-progress {
    height: 100%;
    background: var(--accent-grad);
    border-radius: 4px;
    width: 0; /* Animated via JS */
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    text-align: left;
    transition: var(--transition);
}

.service-img-wrap {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2.2rem;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.service-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}

.service-icon {
    font-size: 1.4rem;
    color: var(--accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    position: absolute;
    left: 16px;
    bottom: -20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

.service-card:hover {
    border-color: var(--accent-2);
}

.service-inner {
    transform: translateZ(30px);
}

/* === Portfolio Section === */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.portfolio-filters {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}
body.light-mode .filter-btn.active, body.light-mode .filter-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-inner {
    padding: 10px;
}

.portfolio-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-img:hover img {
    transform: scale(1.1);
}

.portfolio-img:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.portfolio-overlay span {
    color: var(--accent-1);
    font-size: 0.9rem;
    font-weight: 500;
}

.view-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-grad);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-img:hover .view-btn {
    transform: scale(1);
    transition-delay: 0.1s;
}

/* === Contact Section === */
.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.c-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--accent-2);
}
body.light-mode .c-icon { background: rgba(0,0,0,0.05); }

.c-item h4 {
    margin-bottom: 5px;
}

.c-item p {
    font-size: 0.95rem;
    margin-top: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-1);
    color: #000;
    transform: translateY(-5px);
}

.contact-form-container {
    padding: 3rem;
    border-radius: 20px;
}

/* === Contact CTA (Email Me) === */
.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-grad);
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.contact-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.contact-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-cta .btn {
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.email-reveal {
    width: 100%;
    margin-top: 1.5rem;
}

.reveal-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: transparent;
    border: 1px dashed var(--glass-border);
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.reveal-toggle:hover {
    border-color: var(--accent-1);
    color: var(--text-main);
    background: var(--glass-bg);
}

.reveal-toggle .email-eye-icon {
    font-size: 0.85rem;
    opacity: 0.7;
}

.reveal-toggle.revealed {
    border-style: solid;
    border-color: var(--accent-1);
    color: var(--accent-1);
}

.reveal-toggle.revealed .email-eye-icon {
    display: none;
}

/* === Footer === */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-go-top a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.footer-go-top a:hover {
    background: var(--accent-2);
    color: #fff;
}


/* === Responsive Design === */
@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero > .hero-content {
        padding-left: 0;
        margin-bottom: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }

    .hero-visual .card-inner {
        width: 100%;
        max-width: 400px;
        height: 450px;
    }
    .badge-1 { left: 0; }
    .badge-2 { right: 0; }
    
    .about-visual {
        grid-row: 1; /* Put image above text visually on mobile */
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        border-radius: 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 5%;
        width: 90%;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        clip-path: circle(0px at top right);
        transition: clip-path 0.5s ease-in-out;
        box-shadow: var(--glass-shadow);
    }
    
    .nav-links.active {
        clip-path: circle(150% at top right);
    }

    .toggle-theme {
        margin-left: auto;
        margin-right: 15px;
    }

    .cursor-dot, .cursor-outline {
        display: none; /* Disable custom cursor on mobile */
    }
    body, a {
        cursor: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}
