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

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

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    background-color: black;
    color: white;
}

                                                                            
header {
    position: sticky; 
    margin-top: 20px;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 9%; 

    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 1) 0%,    
        rgba(0, 0, 0, 0.8) 70%,  
        rgba(0, 0, 0, 0) 100%    
    );
    
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); 
}

.logo{
    font-size: 3rem;
    color: #b74b4b;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
}

.logo:hover{
    transform: scale(1.1);
}

nav a {
    font-size: 1.8rem;
    color: white;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #b74b4b;
    bottom: -5px;
    left: 0;
    transition: 0.3s ease;
}

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

nav a:hover,
nav a.active {
    color: #b74b4b;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 5rem;
}

@media(max-width:995px){
    nav{
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        width: 40%;
        border-left: 3px solid #b74b4b;
        border-bottom: 3px solid #b74b4b;
        border-bottom-left-radius: 2rem;
        padding: 1rem solid;
        background-color: #161616;
        border-top: 0.1rem solid rgba(0,0,0,0.1);
    }

    nav.active{
        display: block;
    }

    nav a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    nav a:hover,
    nav a.active{
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid #b74b4b;
    }
}

section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    background-color: black;
}

.home-content h1{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span{
    color: #b74b4b;
}

.home-content h3{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-content p{
    font-size: 2.0rem;
}

.home-img{
    border-radius: 50%;
}

.home-img img{
    position: relative;
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px solid #b74b4b;
    cursor: pointer;
    transition: 0.2s linear;
}

.home-img img:hover{
    font-size: 1.8rem;
    font-weight: 500;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #b74b4b;
}

.social-icons a:hover{
    color: black;
    transform: scale(1.3) translateY(-5px);
    background-color: #b74b4b;
    box-shadow: 0  0 25px #b74b4b;
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover{
    transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 25px #b74b4b;
}

.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: "software Developer";
    color: #b74b4b;
    animation: words 20s infinite;
}

.typing-text span::after{
    content: "";
    background-color: black;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid #b74b4b;
    }
}

@keyframes words{
    0%, 20%{
        content: "Full Stack Developer";
    }
    21%, 40%{
        content: "Cloud Computing";
    }
    41%, 60%{
        content: "Prompt Engineering";
    }
    61%, 80%{
        content: "Product Manager";
    }
    81%, 100%{
        content: "DevOps";
    }
}

@media (max-width: 1000px){
    .home{
        gap: 4rem;
    }
}

@media(max-width:995px){
    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home .home-content h3{
        font-size: 2.5rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-img img{
        width: 70vw;
        margin-top: 4rem;
    }
}
.skills {
    background-color: black;
    padding: 8rem 9% 5rem;
}

.heading {
    text-align: center;
    font-size: 4.5rem;
    margin-bottom: 3rem;
}

.skills-description {
    font-size: 1.6rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    color: #aaa;
}

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

.skill-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #2a2a2a;
    transition: 0.3s ease;
}

.skill-card:hover {
    border-color: #b74b4b;
    transform: translateY(-5px);
}

.skill-card h3 {
    font-size: 2rem;
    color: #b74b4b;
    margin-bottom: 1.5rem;
}

.skill-card ul {
    list-style: none;
}

.skill-card li {
    font-size: 1.4rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #2a2a2a;
    color: #ccc;
}

.skill-card li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card {
        margin-bottom: 2rem;
    }
}


.services-section {
    background-color: #000000;
    color: #ffffff;
    padding: 200px 5% 150px 5%; 
    overflow-x: hidden;
    user-select: none;
}

.section-title {
    font-size: 5rem; 
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
}

.section-title .highlight {
    color: #b74b4b;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 120px;
    font-size: 1.8rem;
    font-weight: 300;
}

.services-slider-container {
    width: 100%;
    overflow: visible; 
    cursor: grab;
    position: relative;
    padding-top: 40px; 
}

.services-slider-container:active {
    cursor: grabbing;
}

.services-wrapper {
    display: flex;
    gap: 40px;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.service-card {
    flex: 0 0 31%; 
    background: #111111;
    padding: 90px 60px; 
    min-height: 650px; 
    border-radius: 30px;
    text-align: left;
    border: 3px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 5.1rem; 
    color: #b74b4b;
    margin-bottom: 50px;
}

.service-card h3 {
    margin-bottom: 35px;
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1;
}

.service-card p {
    color: #aaaaaa;
    line-height: 1.7;
    font-size: 1.6rem; 
    margin-bottom: 40px;
}

.project-link {
    margin-top: auto; 
    color: #b74b4b;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #ffffff;
}

.service-card:hover {
    border-color: #b74b4b;
    transform: translateY(-30px); 
    background: #161616;
    z-index: 10; 
    box-shadow: 0 40px 80px rgba(183, 75, 75, 0.15);
}

.scroll-hint {
    text-align: center;
    margin-top: 60px;
    color: #333;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 6px;
}

@media (max-width: 1300px) {
    .service-card { flex: 0 0 45%; min-height: 600px; }
    .section-title { font-size: 4rem; }
}

@media (max-width: 850px) {
    .service-card { flex: 0 0 85%; min-height: 550px; padding: 60px 40px; }
    .section-title { font-size: 3rem; }
    .service-card h3 { font-size: 2.5rem; }
}


:root {
    --accent-red: #b74b4b;
    --bg-black: #000000;
    --card-dark: #111111;
    --text-white: #ffffff;
    --text-muted: #888888;
}

.experience-section {
    background-color: var(--bg-black);
    color: var(--text-white);
    padding: 120px 5%;
}

.section-title { font-size: 5rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -2px; }
.highlight { color: var(--accent-red); }

.experience-command-center { display: flex; gap: 60px; align-items: flex-start; }
.exp-sidebar { flex: 0 0 320px; display: flex; flex-direction: column; border-left: 2px solid #222; }

.exp-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 25px 30px;
    text-align: left;
    font-size: 18rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.5s;
    border-left: 3px solid transparent;
    margin-left: -2px;
}

.tab-logo { width: 50px; height: 50px; object-fit: contain; filter: grayscale(1); }
.exp-tab.active { color: var(--accent-red); border-left-color: var(--accent-red); background: rgba(183, 75, 75, 0.05); }
.exp-tab.active .tab-logo { filter: grayscale(0); }

.exp-content-area { flex: 1; }
.exp-detail-card {
    display: none;
    background: var(--card-dark);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #222;
    min-height: 800px; 
    flex-direction: row; 
    gap: 50px;
}
.exp-detail-card.active { display: flex; animation: slideUp 0.6s ease; }


.info-column { flex: 1.2; }
.exp-role { font-size: 3rem; line-height: 1.1; margin-bottom: 10px; color: var(--accent-red); }
.exp-date { display: block; margin-bottom: 40px; color: var(--text-muted); font-size: 1.2rem; }
.exp-description p { font-size: 1.5rem; line-height: 1.8; margin-bottom: 30px; }
.achievements li { margin-bottom: 18px; font-size: 1.3rem; color: #ccc; }

.tech-pills { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 50px; position: relative; z-index: 10; }
.tech-pills span {
    background: var(--accent-red);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.tech-pills span:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(183, 75, 75, 0.5);
    background: #d45a5a;
}

.cert-column { flex: 1; display: flex; align-items: center; justify-content: center; }
.cert-image { width: 100%; transition: transform 0.5s ease; }
.image-proof-container:hover .cert-image { transform: scale(1.08); }


.reveal { opacity: 0; transform: translateY(50px); transition: 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

:root {
    --accent-red: #b74b4b;
    --bg-black: #000000;
    --card-dark: #111111;
    --text-white: #ffffff;
    --text-muted: #888888;
}

.experience-section {
    background-color: var(--bg-black);
    color: var(--text-white);
    padding: 120px 5%;
}

.section-title { font-size: 5rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -2px; }
.highlight { color: var(--accent-red); }

.experience-command-center { display: flex; gap: 60px; align-items: flex-start; }
.exp-sidebar { flex: 0 0 320px; display: flex; flex-direction: column; border-left: 2px solid #222; }

.exp-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 25px 30px;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border-left: 3px solid transparent;
    margin-left: -2px;
}

.exp-tab.active { color: var(--accent-red); border-left-color: var(--accent-red); background: rgba(183, 75, 75, 0.05); }

.exp-content-area { flex: 1; }
.exp-detail-card {
    display: none;
    background: var(--card-dark);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #222;
    min-height: 800px; 
    flex-direction: row; 
    gap: 50px;
    align-items: flex-start;
    overflow: visible; 
}
.exp-detail-card.active { display: flex; animation: slideUp 0.6s ease; }

.info-column { flex: 1.2; }
.cert-column { flex: 1; padding: 10px; } 

.exp-role { font-size: 3rem; line-height: 1.1; margin-bottom: 10px; }
.exp-role .company { color: var(--accent-red); }
.exp-date { display: block; margin-bottom: 40px; color: var(--text-muted); font-size: 1.4rem; }
.exp-description p { font-size: 1.8rem; line-height: 1.8; margin-bottom: 30px; }
.achievements li { margin-bottom: 15px; font-size: 1.5rem; color: #ccc; }

.tech-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 50px; }
.tech-pills span {
    background: var(--accent-red);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.3s;
    cursor: default;
}
.tech-pills span:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(183, 75, 75, 0.5); }

.image-proof-container {
    width: 100%;
    border-radius: 15px;
    border: 2px solid #222;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #000;
    position: relative;
    z-index: 5;
    box-shadow: 0 40px 70px rgba(0,0,0,0.5);

}

.cert-image { width: 100%; display: block; border-radius: 13px; }

.image-proof-container:hover {
    transform: scale(1.05); 
    border-color: var(--accent-red);
    box-shadow: 0 40px 80px rgba(183, 75, 75, 0.3);
}

/* Animations */
.reveal { opacity: 0; transform: translateY(50px); transition: 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


:root {
    --red-theme: #b74b4b;
    --card-w: 380px; 
    --card-h: 260px;
    --gap: 40px; 
    --speed: 40s;
}

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

body { background: #000; overflow-x: hidden; font-family: sans-serif; }


nav { display: flex; justify-content: space-between; padding: 20px; color: white; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: white; text-decoration: none; cursor: pointer; }

.achievements-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    z-index: 1; 
}


.red-mist {
    position: absolute;
    top: 25%;
    height: 50%;
    width: 60px;
    z-index: 20; 
    pointer-events: none; 
    border-radius: 50%;
    filter: blur(25px);
}

.left-mist { left: -20px; background: rgba(183, 75, 75, 0.4); }
.right-mist { right: -20px; background: rgba(183, 75, 75, 0.4); }

.vignette-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

.title {
    color: var(--red-theme);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 2rem;
    margin-bottom: 50px;
    z-index: 30;
    text-shadow: 0 0 20px rgba(183, 75, 75, 0.5);
}

.gallery-3d {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    perspective: 1200px; 
    transform-style: preserve-3d;
}

.track-wrapper {
    width: 100%;
    position: relative;
    padding: 20px 0;
    transform-style: preserve-3d;
    z-index: 10; 
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}


.track-wrapper:hover { z-index: 50; }
.track-wrapper:hover .moving-belt { animation-play-state: paused !important; }

.moving-belt {
    display: flex;
    gap: var(--gap);
    width: max-content;
    transform-style: preserve-3d;
    will-change: transform; 
    backface-visibility: hidden;
}

.left-scroll { animation: scrollL var(--speed) linear infinite; }
.right-scroll { animation: scrollR var(--speed) linear infinite; }


.card {
    width: var(--card-w);
    height: var(--card-h);
    position: relative;
    perspective: 1000px; 
    flex-shrink: 0;
    cursor: pointer;
    z-index: 1;
    transform: translate3d(0, 0, 0); 
}

.card-inner {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid rgba(183, 75, 75, 0.3);
    border-radius: 8px; 
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s, box-shadow 0.4s;
    transform: scale(0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: visible; 
}

.card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.card:hover { z-index: 9999; }

.card:hover .card-inner {
    transform: scale(1.15) translateZ(20px);
    border-color: var(--red-theme);
    box-shadow: 0 0 40px rgba(183, 75, 75, 0.4);
}

@keyframes scrollL {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * (var(--card-w) + var(--gap)) * 6)); }
}

@keyframes scrollR {
    0% { transform: translateX(calc(-1 * (var(--card-w) + var(--gap)) * 6)); }
    100% { transform: translateX(0); }
}

.boost { animation-duration: 15s !important; }

.image-modal {
    display: none; 
    position: fixed; 
    z-index: 20000; 
    left: 0; top: 0;
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.9); 
    align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid var(--red-theme);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(183, 75, 75, 0.5);
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 30px; right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20001;
}

.close-modal:hover { color: var(--red-theme); }

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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


:root {
    --accent-red: #b74b4b;
    --bg-dark: #050505;
    --card-dark: #000000;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
    --font-stack: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-stack);
    overflow-x: hidden;
}

.split-container {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.visual-pane {
    flex: 0.8; 
    position: relative;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding-left: 0px; 
    z-index: 1;
}

.moon-img {
    position: absolute;
    top: 50%;
    right: -275px; 
    transform: translateY(-50%);
    width: 550px;
    height: 550px; 
    object-fit: cover; 
    border-radius: 50%; 
    z-index: 0; 
    opacity: 0.85; 
    filter: contrast(1.2) brightness(0.8) drop-shadow(0 0 40px rgba(183, 75, 75, 0.4));
}

.overlay-content {
    max-width: 450px; 
    margin-top: -20px; 
    margin-left: -115px;
}

.hero-heading {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 5px 30px rgba(0,0,0,1);
}

.email-capsule {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(183, 75, 75, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

#email-address {
    color: #e0e0e0;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

#copy-action-btn {
    background: none;
    border: none;
    color: var(--accent-red);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

#copy-action-btn:hover {
    transform: scale(1.1);
}

.success-tooltip {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--accent-red);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.success-tooltip.active {
    opacity: 1;
}

.form-pane {
    flex: 1.2; 
    background-color: var(--card-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-left: 1px solid #111;
}

.main-form {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}

.input-box {
    position: relative;
    width: 100%;
}

.input-box input,
.input-box textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    padding: 10px 0;
    font-size: 1.1rem;
    color: white;
    outline: none;
    font-family: inherit;
    resize: none;
    transition: border-color 0.3s;
    display: block; 
}

.input-box label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #666;
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 1.15rem; 
}

.input-box input:focus ~ label,
.input-box input:not(:placeholder-shown) ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 1.1rem; 
    color: var(--accent-red);
}


.gls-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.4s ease;
}

.input-box input:focus ~ .gls-line,
.input-box textarea:focus ~ .gls-line {
    width: 100%;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}


.send-button {
    padding: 15px;
    background: transparent;
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.send-button:hover {
    background: var(--accent-red);
    box-shadow: 0 0 30px rgba(183, 75, 75, 0.6);
}

.send-button:hover .btn-text {
    color: #ffffff !important;
}

.send-button:hover {
    color: #ffffff !important;
}

.send-button:disabled {
    opacity: 0.6;
    cursor: wait;
    border-color: #555;
    color: #888;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
}

.status-message {
    height: 20px;          
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;            
    transition: opacity 0.3s ease;
}

.status-message.success {
    color: #4ade80;       
    opacity: 1;
}

.status-message.error {
    color: var(--accent-red);
    opacity: 1;
}

.social-cluster {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
}

.glow-icon {
    color: #555;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-icon:hover {
    color: var(--accent-red);
    text-shadow: 0 0 10px var(--accent-red), 0 0 20px var(--accent-red);
    transform: scale(1.15) translateY(-5px);
}

@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
    }

    .visual-pane, .form-pane {
        flex: none;
        width: 100%;
    }

    .visual-pane {
        height: 500px;
        justify-content: center;
        padding-left: 0;
        text-align: center;
        overflow: hidden;
    }

    .moon-img {
        width: 400px;
        height: 400px;
        right: 50%;
        transform: translate(50%, -50%);
        opacity: 0.5; 
    }
    
    .hero-heading {
        font-size: 3rem;
    }

    .form-pane {
        padding: 60px 20px;
        min-height: auto;
    }
}


