/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

/* Color Variables - Royale & Professional Theme */
:root {
    --bg-color: #060608;           /* Deep obsidian black */
    --second-bg-color: #0C0C0F;    /* Rich dark charcoal */
    --card-bg: rgba(16, 16, 20, 0.5); /* Glassmorphic panel */
    --card-border: rgba(212, 175, 55, 0.08); /* Delicate gold border */
    --card-hover-border: rgba(212, 175, 55, 0.45); /* Golden highlight border */
    --text-color: #FAF9F6;         /* Warm Ivory primary text */
    --text-muted: #9E9C98;        /* Soft gray-gold text */
    --primary-accent: #D4AF37;     /* Royal Gold */
    --primary-glow: rgba(212, 175, 55, 0.12); /* Warm amber glow */
    --secondary-accent: #E6C280;   /* Champagne Gold */
    --transition-speed: 0.3s;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-family: var(--font-body);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Figma-style Developer Canvas Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.006) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.006) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -3;
    pointer-events: none;
}

/* Animated Backdrop Glow Blobs */
.glow-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -2;
    pointer-events: none;
    opacity: 0.32;
    mix-blend-mode: screen;
    transition: all 1s ease;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0) 70%);
    animation: floatBlob1 22s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: -15%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(230, 194, 128, 0.18) 0%, rgba(230, 194, 128, 0) 70%);
    animation: floatBlob2 26s infinite alternate ease-in-out;
}

.blob-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 65%);
    animation: floatBlob3 32s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8vw, 6vh) scale(1.15); }
    100% { transform: translate(-4vw, -8vh) scale(0.9); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10vw, -8vh) scale(0.85); }
    100% { transform: translate(6vw, 4vh) scale(1.1); }
}

@keyframes floatBlob3 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-40%, -45%) rotate(180deg) scale(1.25); }
    100% { transform: translate(-60%, -55%) rotate(360deg) scale(0.8); }
}

section {
    min-height: 100vh;
    padding: 14rem 9% 8rem;
    transition: background var(--transition-speed) ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #18181F;
    border-radius: 3px;
    border: 1px solid var(--card-border);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-accent);
}

/* Metallic Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #FAF9F6 10%, #D4AF37 55%, #E6C280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Header Tags */
.section-tag {
    font-size: 1.15rem;
    color: var(--primary-accent);
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.9;
}

.about-content .section-tag {
    text-align: left;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.4rem 9%;
    background: rgba(6, 6, 8, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.header.sticky {
    padding: 1.6rem 9%;
    background: rgba(6, 6, 8, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo {
    font-size: 2.4rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.2px;
}

.logo span {
    font-style: italic;
}

.navbar a {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-left: 4rem;
    transition: var(--transition-speed) ease;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-accent);
}

.navbar a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: .25rem;
    background-color: var(--primary-accent);
    transition: width var(--transition-speed) ease;
    border-radius: 2px;
}

.navbar a:hover::before,
.navbar a.active::before {
    width: 100%;
}

#menu-icon {
    font-size: 3rem;
    color: var(--text-color);
    display: none;
    cursor: pointer;
}

/* Home / Hero Section */
.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    padding-top: 20rem;
}

.home-content {
    max-width: 650px;
}

.home-content h3 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 0.5px;
}

.home-content h1 {
    font-size: 7.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 1.2rem 0;
    font-family: var(--font-heading);
    letter-spacing: -1.5px;
}

.home-content h3 span.multiple-text {
    color: var(--secondary-accent);
    font-weight: 600;
    font-family: var(--font-body);
    font-style: normal;
}

.home-content p {
    font-size: 1.65rem;
    margin-top: 2.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Floating Image with Rotating Gold Ring */
.home-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img::before {
    content: '';
    position: absolute;
    width: calc(28vw + 12px);
    height: calc(28vw + 12px);
    max-width: 332px;
    max-height: 332px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-accent), transparent, var(--secondary-accent));
    z-index: -1;
    animation: rotateGlow 8s linear infinite;
    opacity: 0.65;
    filter: blur(1px);
    aspect-ratio: 1 / 1;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.home-img img {
    width: 28vw;
    max-width: 320px;
    border-radius: 50%;
    border: 3px solid rgba(8, 8, 10, 0.85);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    animation: floatImage 6s ease-in-out infinite;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1.5rem);
    }
}

/* Social Media & Buttons */
.social-media {
    display: flex;
    gap: 1.8rem;
    margin: 3.5rem 0;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.6rem;
    height: 4.6rem;
    background: rgba(16, 16, 20, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--transition-speed) ease;
}

.social-media a i {
    font-size: 2.2rem;
}

.social-media a:hover {
    color: var(--primary-accent);
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--primary-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn {
    display: inline-block;
    padding: 1.3rem 3.2rem;
    background: var(--primary-accent);
    border-radius: 0.6rem;
    font-size: 1.4rem;
    color: #060608;
    font-weight: 750;
    font-family: var(--font-body);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--primary-accent);
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn:hover {
    background: transparent;
    color: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background: var(--second-bg-color);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.about-img img {
    width: 30vw;
    max-width: 360px;
    border-radius: 2rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border: 1px solid var(--card-border);
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: all var(--transition-speed) ease;
}

.about-img img:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-accent);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 35px var(--primary-glow);
}

.heading {
    text-align: center;
    font-size: 4.4rem;
    font-weight: 800;
    margin-bottom: 6rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.about-content h2 {
    text-align: left;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-accent);
    font-family: var(--font-heading);
    font-style: italic;
}

.about-content p {
    font-size: 1.6rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

/* Services / Skills Bento Cards */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
}

.services-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    padding: 4.5rem 3.5rem;
    transition: all var(--transition-speed) cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-box:hover {
    transform: translateY(-8px);
    border-color: var(--card-hover-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(212, 175, 55, 0.05);
}

.services-box i {
    font-size: 4.5rem;
    color: var(--primary-accent);
    margin-bottom: 2rem;
    display: inline-block;
    transition: transform var(--transition-speed) ease;
}

.services-box:hover i {
    transform: scale(1.1) rotate(5deg);
}

.services-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.services-box p {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

/* Tech Pills Grid */
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-pill {
    font-size: 1.15rem;
    background: rgba(16, 16, 20, 0.8);
    color: var(--text-color);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    border: 1px solid var(--card-border);
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
}

.services-box:hover .tech-pill {
    border-color: rgba(212, 175, 55, 0.15);
}

.tech-pill:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--primary-accent);
    color: var(--primary-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

.tech-pill::before {
    content: '';
    width: 0;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-accent);
    display: inline-block;
    transition: all var(--transition-speed) ease;
    margin-right: 0;
}

.tech-pill:hover::before {
    width: 4px;
    margin-right: 6px;
}

/* Portfolio / Projects */
.portfolio {
    background: var(--bg-color);
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3.5rem;
}

.portfolio-box {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    height: 380px;
    background: var(--second-bg-color);
    border: 1px solid var(--card-border);
    transition: all var(--transition-speed) cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.portfolio-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-box:hover {
    border-color: var(--card-hover-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.portfolio-box:hover img {
    transform: scale(1.06);
}

.portfolio-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 6, 8, 0.98) 75%, rgba(6, 6, 8, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-speed) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-box:hover .portfolio-layer {
    transform: translateY(0);
}

.portfolio-layer h4 {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Project Tech Stack Badges */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.project-tag {
    font-size: 1.1rem;
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary-accent);
    padding: 0.4rem 1rem;
    border-radius: 0.4rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.portfolio-layer p {
    font-size: 1.45rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.portfolio-layer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: var(--primary-accent);
    border-radius: 50%;
    color: #060608;
    transition: all var(--transition-speed) ease;
    align-self: flex-start;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.portfolio-layer a i {
    font-size: 2.2rem;
}

.portfolio-layer a:hover {
    transform: scale(1.1);
    background: var(--secondary-accent);
    box-shadow: 0 6px 15px var(--primary-glow);
}

/* Experience Section (Professional Vertical Timeline Style) */
.experience {
    background: var(--second-bg-color);
    position: relative;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.experience-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 4.5rem; /* Spacing for the timeline line */
}

/* Timeline vertical line */
.experience-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary-accent), rgba(212, 175, 55, 0.08));
}

.experience-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all var(--transition-speed) cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-box:last-child {
    margin-bottom: 0;
}

/* Timeline nodes */
.experience-box::before {
    content: '◈';
    position: absolute;
    left: -38px;
    top: 38px;
    color: var(--primary-accent);
    background: var(--second-bg-color);
    font-size: 1.8rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-speed) ease;
}

.experience-box:hover::before {
    color: var(--secondary-accent);
    transform: scale(1.2);
}

.experience-box:hover {
    transform: translateX(8px);
    border-color: var(--card-hover-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(212, 175, 55, 0.05);
}

.experience-box h3 {
    font-size: 2.2rem;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.experience-box h4 {
    font-size: 1.6rem;
    color: var(--primary-accent);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.experience-box .duration {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.experience-box ul {
    list-style: none;
}

.experience-box ul li {
    font-size: 1.45rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.experience-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-accent);
    font-weight: bold;
}

/* Contact Form */
.contact {
    background: var(--bg-color);
}

.contact form {
    max-width: 70rem;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 5rem 4.5rem;
    border-radius: 2.4rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: all var(--transition-speed) ease;
}

.contact form:hover {
    border-color: var(--card-hover-border);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 30px rgba(212, 175, 55, 0.03);
}

.contact form .input-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 1.6rem;
    font-size: 1.5rem;
    color: var(--text-color);
    background: rgba(6, 6, 8, 0.7);
    border: 1px solid var(--card-border);
    border-radius: 0.8rem;
    transition: all var(--transition-speed) ease;
    font-family: var(--font-body);
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact form textarea {
    resize: vertical;
    min-height: 160px;
    margin-bottom: 3rem;
}

.contact form .btn {
    width: 100%;
    padding: 1.6rem;
    font-size: 1.6rem;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 9%;
    background: var(--bg-color);
    border-top: 1px solid var(--card-border);
}

.footer-text p {
    font-size: 1.4rem;
    color: var(--text-muted);
}

.footer-iconTap a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: rgba(16, 16, 20, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 0.8rem;
    color: var(--text-muted);
    transition: all var(--transition-speed) ease;
}

.footer-iconTap a:hover {
    background: var(--primary-accent);
    color: #060608;
    border-color: var(--primary-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px var(--primary-glow);
}

.footer-iconTap i {
    font-size: 2rem;
}

/* Breakpoints (responsive adjustments) */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
    .home-content h1 {
        font-size: 6.4rem;
    }
}

@media (max-width: 991px) {
    .header, section, .footer {
        padding-left: 5%;
        padding-right: 5%;
    }
    .home {
        gap: 4rem;
    }
    .home-img::before {
        width: calc(32vw + 12px);
        height: calc(32vw + 12px);
    }
    .home-img img {
        width: 32vw;
    }
    .about {
        gap: 4rem;
    }
    .about-img img {
        width: 35vw;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem 5%;
        background: rgba(6, 6, 8, 0.98);
        backdrop-filter: blur(24px);
        border-top: 1px solid var(--card-border);
        border-bottom: 1px solid var(--card-border);
        display: none;
        flex-direction: column;
        gap: 2.5rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    
    .navbar.active {
        display: flex;
    }
    
    .navbar a {
        display: block;
        font-size: 1.8rem;
        margin-left: 0;
        text-align: left;
    }
    
    .navbar a::before {
        display: none;
    }
    
    .home {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 16rem;
        gap: 4rem;
    }
    
    .home-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .home-img::before {
        width: calc(50vw + 10px);
        height: calc(50vw + 10px);
        max-width: 250px;
        max-height: 250px;
    }
    
    .home-img img {
        width: 50vw;
        max-width: 240px;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .about-img img {
        width: 55vw;
        max-width: 280px;
    }
    
    .about-content h2 {
        text-align: center;
    }
    
    .experience-container {
        padding-left: 2.5rem;
    }
    
    .experience-container::before {
        left: 10px;
    }
    
    .experience-box::before {
        left: -29px;
        font-size: 1.4rem;
        width: 16px;
        height: 16px;
        top: 40px;
    }
    
    .contact form .input-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    .home-content h1 {
        font-size: 4.6rem;
    }
    
    .contact form {
        padding: 3rem 2rem;
    }
    
    .footer {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }
}
