/* ===================== Imports ======================== */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Monoton&family=Syne:wght@400..800&display=swap');


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

/* ===================== variables ======================= */
:root{
    --additional-font: 'Syne', sans-serif;
    --body-font: 'Inter Tight', sans-serif;
    --logo-font: 'Monoton', sans-serif;
    --transition: all 0.3s ease-in-out;
}

/* ========================= body styles ========================= */
body{
    background-color: black;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Style for the custom cursor */
.cursor {
    position: absolute;
    width: var(--circle-sm); /* Width of the circle */
    height: var(--circle-sm); /* Height of the circle */
    border-radius: 50%; /* Make it a circle */
    background: white; /* Light blue color with transparency */
    animation: glow 2s ease-in-out infinite; /* Glow animation */;
    pointer-events: none; /* Prevent the cursor from interfering with mouse events */
    transform: translate(-50%, -50%); /* Center the circle on the cursor */
    z-index: 1001;
}

.image-gradient{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: -1;
}

.layer-blur{
    position: absolute;
    top: 30%;
    right: 0;
    width: var(--width-5xl);
    height: auto;
    box-shadow: var(--shadow-glow);
    rotate: -30deg;
    z-index: -1;
}

.form-feedback{
    background-color: var(--color-light-gray);
    backdrop-filter: var(--backdrop-blur-md);
    width: 50vw;
    color: white;
    font-size: var(--font-size-lg);
    padding: var(--spacing-xl);
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: var(--border-white-top);
    border-bottom: var(--border-white-bottom);
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);

}

.form-feedback h2{
    font-family: var(--body-font);
    font-size: var(--font-size-xl);
    font-weight: 300;
    line-height: var(--line-height-md);
    padding: var(--spacing-md);
    border-bottom: var(--border-white-thick);
    
}

.form-feedback p{
    font-family: var(--body-font);
    font-size: var(--font-size-md);
    font-weight: 200;
    line-height: var(--line-height-md);
}   

.form-feedback img.feedback-icon{
    height: var(--height-2xl);
    width: var(--circle-xl);
    margin-bottom: var(--spacing-xl);
}

.form-feedback button{
    font-family: var(--body-font);
    margin-top: var(--spacing-xl);
    color: black;
    font-size: var(--font-size-lg);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 14px var(--spacing-xl);
    cursor: pointer;
    transition: var(--transition);
    width: 30%;
}

.form-feedback button.close-btn:hover{
    transform: scale(1.05);
}

.form-feedback button.close-btn:active{
    background-color: rgba(255,255,255,0.8);
}

#success{
    display: none;
}

#error{
    display: none;
}


/* ========================= navBar styles ========================= */
header{
    background-color: transparent;
    position: fixed;
    left: 0;
    top: 0;
    height: 60px;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
}

header.scrolled{
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
}

/* left div */
header .left-div{
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 20px;
}

#logo{
    padding: 8px;
    border: none;
    border-radius: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#logo h2{
    font-family: var(--logo-font);
    font-weight: 100;
    font-size: 25px;
    line-height: 20px;
    color: white;
}

/* right div */
header .right-div{
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 1;
    padding-right: 20px;
    gap: 10px;
}

#menu{
    background-color: transparent;
}

#menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

#menu ul li{
    background-color: transparent;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 200;
}

#menu ul li:hover{
    background: rgba(255,255,255,0.1);
    color: rgba(179, 255, 79, 1);

}


.say-hi{
    background: rgba(179, 255, 50, 1);
    color: black;
    font-size: 16px;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--body-font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    transition: var(--transition);
}

/* Keyframes for the waving animation */
@keyframes wave {
    0%, 20% {
        transform: rotate(0deg); /* Start position */
    }
    40% {
        transform: rotate(-15deg); /* Move left */
    }
    60% {
        transform: rotate(15deg); /* Move right */
    }
    100% {
        transform: rotate(0deg); /* Return to start position */
    }
}

.hand{
    height: 18px;
    transform-origin: 70% 70%; /* Set the pivot point for the rotation */
}

.say-hi:hover .hand{
    animation: wave 1s infinite; /* Apply the wave animation */
}

 @keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.say-hi:hover{
    transform: scale(1.05);
}
.say-hi:active{
    background-color: rgba(179, 255, 50, 0.5);
}
/* menu */
.menu-icon{
    position: relative;
    display: none;
}
.toggler{
    position: absolute;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;
}
.hamburger{
    width: 60px;
    height: 60px;
    z-index: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

/* Hamburger line */
.hamburger >div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
/* Top and bottom lines */
.hamburger > div:before,
.hamburger > div:after{
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}
/* Moves line down */
.hamburger > div:after{
    top: 10px;
}
/* Toggler animate */
.toggler:checked + .hamburger > div{
    transform: rotate(135deg);
}
/* Turn Lines into X */
.toggler:checked + .hamburger > div:before,
.toggler:checked + .hamburger > div:after{
    top: 0;
    transform: rotate(90deg);
}
/* Rotate on hover when checked */
.toggler:checked:hover + .hamburger > div{
    transform: rotate(225deg);
}

/* ===================== main content ========================= */

.landing-page{
    background-color: transparent;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 120px 60px 60px;
}

/* Keyframes for the fade-in and slide-up animation */
@keyframes fadeInUp {
    to {
        opacity: 1; /* Fully visible */
        transform: translateX(0); /* Move to original position */
    }
}
.name-surname{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    color: white;
    background: linear-gradient(to right, rgb(48,48,48) 0%, black 30%, black 100%);
    padding: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
}

.name-surname::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 21px;
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, black 35%, black 100%);
    z-index: -1; 
}
.circle{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite; 
    box-shadow: 0 0 0 0 rgba(255,255,255,0); 
    background-color: aliceblue;
}

@keyframes glow {
    0% {
        background-color: white;
        box-shadow: 0 0 10px rgba(255,255,255,0.6), 0 0 20px rgba(255,255,255,0.9);

    }
    50% {
        background-color: rgba(255,255,255,0.4);
        box-shadow: 0 0 10px rgba(255,255,255,0);

    }
    100% {
        background-color: rgba(255,255,255,0.4);
    }
}
.landing-page h1{
    font-family: var(--body-font);
    font-size: 80px;
    line-height: 100px;
    font-weight: 200;
    letter-spacing: -1px;
    color: white;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 3s ease-in-out forwards;
    animation-delay: 0.3s;
    transform: translateX(-50px);
}

.landing-page p.description{
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 24px;
    font-weight: 200;
    color: white;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 3s ease-in-out forwards;
    animation-delay: 0.3s;
    transform: translateX(50px);
}

.landing-page .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.see-my-work{
    background: white;
    color: black;
    font-size: 16px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--body-font);
    transition: var(--transition);
}

.see-my-work:hover{
    transform: scale(1.05);
}

.get-my-resume{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: white;
    background: linear-gradient(to right, rgb(48,48,48) 0%, black 40%, black 100%);
    padding: 10px;
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    transition: all 20s linear;
}


.get-my-resume::before{
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right:-1px;
    border-radius: 11px;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, black 50%, black 100%);
    z-index: -1; 
}

.get-my-resume .circle{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite; 
    box-shadow: 0 0 0 0 rgba(255,255,255,0); 
    background-color: aliceblue;
}


.arrow-down{
    height: 40px;
    margin-top: 40px;
    animation: bounce 1s infinite; /* Apply the bounce animation */
    cursor: pointer;
    transition: var(--transition);
}

.arrow-down:hover{
    animation: none;
    transform: scale(1.1) !important;
}

/* Keyframes for the bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==================== about me ================ */
.about-me{
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding:  40px;
}

.about-me .left-div{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: justify;
}

.about-me .left-div h1{
    font-family: var(--body-font);
    font-size: 90px;
    font-weight: 200;
    line-height: 110px;
    letter-spacing: -1px;
    color: white;
    align-self: start;
    margin-bottom: 20px;
}


.about-me .left-div p{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 200;
    line-height: 20px;
    color: white;
}

.about-me .right-div{
    flex: 1;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
    padding: 40px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.about-me .right-div p{
    font-family: var(--body-font);
    background-color: #0d0d0d;
    font-size: 15px;
    font-weight: 200;
    color: aliceblue;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
}


/* ==================== design process ================ */

.design-process{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding:  60px 40px;
}

.design-process .left-div{
    flex: 1;
    display: flex;
    height: 1200px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.design-process .left-div img{
    width: 100%;
    height: 100%;;
    display: block;
    border: none;
    border-radius: 10px;
    filter: grayscale(100);
    transition: var(--transition);
}

.design-process .left-div img:hover{
    filter: grayscale(0);
}


.design-process .right-div{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    padding: 40px;
}

.design-process .right-div .design-process-text{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    color: white;
    background: linear-gradient(to right, rgb(48,48,48) 0%, black 30%, black 100%);
    padding: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
}

.design-process .right-div .design-process-text::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 21px;
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, black 35%, black 100%);
    z-index: -1; 
}

.design-process .right-div h1{
    font-family: var(--body-font);
    font-size: 90px;
    font-weight: 200;
    line-height: 110px;
    letter-spacing: -1px;
    color: white;
}

.design-process .right-div p{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 200;
    line-height: 24px;
    color: white;
}

.design-process .right-div .buttons{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    gap: 15px;
    margin-top: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 40px;
}

.book-a-free-call{
    background: white;
    color: black;
    font-size: 16px;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.book-a-free-call:hover{
    transform: scale(1.05);
}

.see-projects{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    color: white;
    background: linear-gradient(to right, rgb(48,48,48) 0%, black 30%, black 100%);
    padding: 12px;
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}


.see-projects::before{
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 11px;
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, black 60%, black 100%);
    z-index: -1; 
}

.card{
    background-color: #0d0d0d;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 40px 20px ;
    border-radius: 10px;
    gap: 30px;
}

.card .counter{
    padding: 10px 20px;
    border-radius: 50%;
    position: absolute;
    background: linear-gradient(to right,black 0%, black 30%, rgb(48,48,48) 100%);
    right: 10px;
    top: 10px;
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 18px;
    color: white;
}

.card img{
    height: 30px;
}

.card h2{
    font-family: var(--body-font);
    font-size: 25px;
    font-weight: 400;
    line-height: 20px;
    color: white;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.card p.explanation{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 200;
    line-height: 20px;
    color: white;
}

/* ================ projects ================ */
.projects{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 40px;
    gap: 40px;
}

.personal-projects{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
    position: relative;
}


.project-card{
    display: flex;
    flex-direction: column;
    width: 370px;
    height: auto;
    min-height: 400px;
    border: 1px solid transparent;
    border-radius: 15px;
    transition: var(--transition);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
}

.project-card:hover{
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-media{
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.project-media video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    transition: var(--transition);
}

/* Shimmer loading effect for videos */
.project-media .shimmer-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(40, 40, 40, 0.9) 25%,
        rgba(80, 80, 80, 0.9) 50%,
        rgba(40, 40, 40, 0.9) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite, pulse 2s infinite;
    z-index: 1;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(2px);
}

.project-media .shimmer-loader::before {
    content: 'Loading video...';
    z-index: 2;
    position: relative;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.project-media.loading video {
    opacity: 0;
}

.project-media.loaded .shimmer-loader {
    display: none;
}

.project-media.loaded video {
    opacity: 1;
}

.project-media video:hover{
    transform: scale(1.05);
    filter: grayscale(0%);
}

.project-info{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.project-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.project-title{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.project-links{
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.project-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

.project-links a:hover{
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.project-links img{
    width: 20px;
    height: 20px;
    opacity: 1;
}

.project-links a:hover img{
    opacity: 0.8;
    transform: scale(1.1);
}

.project-description{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.project-actions{
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.projects h1{
    font-family: var(--body-font);
    font-size: 70px;
    font-weight: 200;
    line-height: 90px;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
}



/* ===================== contact-me ====================== */
.contact-me{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding: 60px 40px;
    gap: 20px;
    
}

.contact-me h1{
    font-family: var(--body-font);
    font-size: 70px;
    font-weight: 200;
    line-height: 70px;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
    text-align: center;

}

.contact-me img{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.contact-me img:hover{
    transform: scale(1.05);
    border: 1px solid rgba(255,255,255,1);
}

.contact-me p{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 200;
    line-height: 24px;
    color: white;
    text-align: center;

}

.contact-me .social-media{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 30px;
    border-radius: 12px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.textarea-group {
    grid-column: span 2;
}

.textarea-info {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.char-count {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}

.error-message {
    font-size: 12px;
    color: rgba(255, 79, 79, 0.9);
    margin-top: 4px;
    min-height: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.error-message.show {
    opacity: 1;
}

.contact-form input,
.contact-form select{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    transition: all 0.2s ease;
    position: relative;
    outline: none;
}

.contact-form input::placeholder,
.contact-form select::placeholder{
    color: rgba(255,255,255,0.5);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    transition: all 0.2s ease;
}

.contact-form textarea{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 16px;
    max-width: 100%;
    min-height: 100px;
    height: 100px;
    grid-column: span 2;
    resize: vertical;
    transition: all 0.2s ease;
    outline: none;
}

.contact-form textarea::placeholder{
    color: rgba(255,255,255,0.5);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    transition: all 0.2s ease;
}
.contact-form button{
    font-family: var(--body-font);
    background: rgba(255,255,255,0.1);
    cursor: not-allowed;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    width: auto;
    max-width: 200px;
    transition: all 0.2s ease;
    grid-column: span 1;
    justify-self: start;
    margin-top: 5px;
}

.contact-form button.enabled{
    font-family: var(--body-font);
    color: #000;
    background: rgba(179, 255, 50, 0.9);
    border: 1px solid rgba(179, 255, 50, 0.3);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    width: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-form button.disabled{
    font-family: var(--body-font);
    background: rgba(255,255,255,0.1);
    cursor: not-allowed;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    width: 50%;
    transition: all 0.2s ease;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline: none;
    border-color: rgba(179, 255, 50, 0.4);
    background: rgba(255,255,255,0.08);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover{
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

.contact-form button.enabled:hover{
    background: rgba(179, 255, 50, 0.25);
}

.contact-form button.enabled:hover::before {
    left: 0;
}

.contact-form button.enabled:active{
    transform: scale(0.98);
}

/* ===================== Form Validation Styles ====================== */
.contact-form input.valid,
.contact-form textarea.valid {
    border-color: rgba(0, 255, 0, 0.4);
}

.contact-form input.invalid,
.contact-form textarea.invalid {
    border-color: rgba(255, 0, 0, 0.4);
}

/* Loading state for submit button */
.contact-form button.loading {
    background: rgba(179, 255, 50, 0.1);
    border: 1px solid rgba(179, 255, 50, 0.2);
    cursor: not-allowed;
    position: relative;
    color: rgba(255,255,255,0.7);
}

.contact-form button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid rgba(179, 255, 50, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.contact-info a{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: white;
    transition: var(--transition);
    cursor: pointer;
}
.contact-info a:hover{
    color: rgba(179, 255, 79, 1);
}

/* ===================== FAQs ====================== */
.faqs-page{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    padding: 60px 40px;
    gap: 20px;
}

.faqs-page .inner-div{
    flex-direction: column;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    border-radius: 10px;
}

.faqs-page .inner-div h1{
    font-family: var(--body-font);
    font-size: 70px;
    font-weight: 200;
    line-height: 80px;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.faqs-page .inner-div p{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 200;
    line-height: 24px;
    color: white;
    text-align: center;
}

.faqs-page .inner-div .card-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #0d0d0d;
    border:none;
    border-radius: 10px;
    padding: 20px;
    width: 60%;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.faqs-page .card-div div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.faqs-page .card-div div img{
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: black;
    cursor: pointer;
    transition: var(--transition);
}

.faqs-page .card-div div img:hover{
    transform: scale(1.1);
}

.plus-icon{
    display: flex;
}

.minus-icon{
    display: none;
}

.card-div .collapsible-content{
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;  
}

/* ======================= certs page ====================== */
.certs-page{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
}
.certs-page .inner-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.certs-page .inner-div h1{
    font-family: var(--body-font);
    font-size: 70px;
    font-weight: 200;
    line-height: 80px;
    letter-spacing: -1px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.certs-div{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}


.certs-div img{
    height: 300px;
    border-radius: 10px;
    filter: grayscale(100);
    cursor: pointer;
    transition: var(--transition);
}

.certs-div img:hover{
    transform: scale(1.08);
    filter: grayscale(0);
}


/* ======================== Footer ======================== */
footer{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

footer p{
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 200;
    line-height: 24px;
    color: white;
    text-align: center;

}




















