/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

header{
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    z-index: 1000;
}
.logo{
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
}
.logo:hover{
    transform: scale(1.1);
}
.nav-links{
    display: flex;
    gap: 2rem;
}
li a{
    position: relative;
    color: white;
    font-weight: 300;
}
li a::before{
    position: absolute;
    content: '';
    left: 0;
    top: 25px;
    width: 0;
    height: 5px;
    border-radius: 1rem;
    background: linear-gradient(to right, rgb(0,157,255), rgb(255,0,255));
    transition: 0.3s ease-in-out;
}
li a:hover::before{
    width: 100%;
}
.visit-btn{
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right, rgb(0, 157, 255), rgb(255, 0, 255));
}
.visit-btn:hover{
    background: linear-gradient(to right, rgb(255, 0, 255), rgb(0,157, 255));
    transform: scale(1.03);
}
#menu-icon{
    font-size: 2rem;
    display: none;
}

section{
    min-height: 100vh;
    padding: 8rem 12%;
    width: 100%;
    position: relative;
}
.about{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about .about-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}
.about img{
    width: 30vw;
    border-radius: 50%;
}
.info-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.info-box h1{
    font-size: 4rem;
    font-weight: 600;
}

.info-box span{
    background: linear-gradient(to right, rgb(255, 0, 255), rgb(0, 157, 255));
    background-clip: text;
    color: transparent;
    font-size: 2rem;
}
.btn-group{
    display: flex;
    gap: 1rem;
}

.btn {
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid black;
    cursor: pointer;
    font-weight: 500;
    text-wrap: nowrap;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    background-color: black;
    color: white;
}

.socials {
    display: flex;
    gap: 2rem;
}

.socials i {
    font-size: 2.5rem;
    cursor: pointer;
}

.socials i:hover {
    transform: scale(1.1);
}

.section-title{
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 3rem;
}
.experience-info{ 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}
.experience img{
    width: 24vw;
    border-radius: 3rem;
}
.grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    }
.grid-card{
    border: 2px solid black;
    border-radius: 3rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: left;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.grid-card:hover{
    transform: scale (1.02);
    background-color:  black;
    color: white;
}
.grid-card i{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.grid-card span{
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(to right,  #009dff,  #ff00ff);
    background-clip: text;
    color: transparent;
}
::-webkit-scrollbar{
    width: 20px;
}
::-webkit-scrollbar-track{
    background-color: rgb(219, 219, 219);
}
::-webkit-scrollbar-thumb{
    background: linear-gradient(to bottom, #009dff,  #ff00ff);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid black;
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.project-card:hover {
    background-color: black;
    color: white;
    transform: translateY(-10px) scale(1.02);
}
.project-card img {
    width: 20vw;
    border-radius: 1rem;
}
.project-card:hover .btn {
    border: 2px solid white;
    color: white;
}
.project-card:hover .btn:hover {
    border: 2px solid white;
    background-color: white;
    color: black;
}
.project-card h3 {
    font-size: 2rem;
    font-weight: 500;
}

.info-box p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    margin-top: 5rem;
}
.input-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
    text-align: center;
}
.input-box input {
    border-radius: 3rem;
    border: 2px solid black;
    padding: 2rem 8rem;
    font-size: 3rem;
}
.input-box input::placeholder{
    font-size: 2.5rem;
}
.input{
    position: relative;
}
.input i{
    position: absolute;
    font-size: 4rem;
    top:50%;
    left: 10px;
    transform: translate(50%, -50%);
}

footer{
    bottom: 0;
    left: 0;
    height: 10rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
footer ul{
    display: flex;
    align-items: center;
    gap: 3rem;
}
footer ul li a{
    color: black;
    font-weight: 600;
}
.copyright{
    font-size: 300;
    margin-top:2rem;
}


@media (max-width: 1280px) {
    header{
        padding: 1rem 2rem;
        gap: 2rem;
    }
    .about .about-container{
        gap: 3rem;
    }
    .experience-info{
        flex-direction: column;
    }
    .input-box input{
        padding: 2rem 5rem;
        font-size: 2rem;
    }
    .input-box i{
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    header{
        gap: 1rem;
        padding: 1rem 1 rem;
    }
    header .logo{
        font-size: 1rem;
    }
    header .visit-btn{
        display: none;
    }
    .about-container{
        flex-direction: ;
    }
    .input-box input{
        padding: 1rem 2rem;
        font-size: 1.9rem;
    }
    .input-box input::placeholder{
        font-size: 1.7rem;
    }
    .input-box i{
       display: none;
    }
    .grid{
        grid-template-columns: repeat(1,1fr);
    }
    .experience-info{
        width: 70vw;
    }
    
}
@media (max-width: 600px) {

    header #menu-icon{
        display: block;
    }
    .nav-links{
        position: absolute;
        top: 100%;
        margin-top: 1rem;
        width: 100%;
        padding: 1rem;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgba(0,0,0,0.9);
        border-radius: 3rem;
        display: none;
    }
    .nav-links li{
        margin-top: 1.5rem;
        padding: 1rem;

    }
    .nav-links.active{
        display: block;
    }

    header{
        padding: 1rem 5rem;
        gap: 8rem;
    }
    header .logo{
        font-size: 1.5rem;
    }
    .about-container{
        width: 80vw;
    }
    .input-box input{
        padding: 0.5rem 3rem;
        width: 80%;
        font-size:1rem;
    }
    .input-box input::placeholder{
        font-size: 1rem;
        text-align: center;
    }
    footer ul{
        gap: 1rem;
    }
} */


/* NEW UI */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    text-decoration: none;
    scroll-behavior: smooth;
    list-style: none;
}

body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
    background: linear-gradient(to right, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

li a {
    position: relative;
    color: white;
    font-weight: 300;
}

li a::before {
    position: absolute;
    content: '';
    left: 0;
    top: 25px;
    width: 0;
    height: 5px;
    border-radius: 1rem;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    transition: 0.3s ease-in-out;
}

li a:hover::before {
    width: 100%;
}

.visit-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-wrap: nowrap;
    transition: 0.3s ease-in-out;
    background: linear-gradient(to right, #60a5fa, #a855f7);
}

.visit-btn:hover {
    background: linear-gradient(to right, #a855f7, #60a5fa);
    transform: scale(1.03);
}

#menu-icon {
    font-size: 2rem;
    display: none;
    cursor: pointer;
}

section {
    min-height: 100vh;
    padding: 8rem 12%;
    width: 100%;
    position: relative;
}

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.1), transparent);
}

.about .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10rem;
}

.about img {
    width: 30vw;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.info-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.info-box h1 {
    font-size: 4rem;
    font-weight: 600;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-box span {
    background: linear-gradient(to right, #a855f7, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
}

.btn {
    border-radius: 3rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid #60a5fa;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    text-wrap: nowrap;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    background: linear-gradient(to right, #60a5fa, #a855f7);
    border-color: transparent;
}

.socials {
    display: flex;
    gap: 2rem;
}

.socials i {
    font-size: 2.5rem;
    cursor: pointer;
    color: #fff;
    transition: 0.3s ease;
}

.socials i:hover {
    transform: scale(1.1);
    color: #60a5fa;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.education-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-card {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: left;
    cursor: pointer;
    gap: 1.5rem;
    transition: 0.2s ease-in-out;
}

.grid-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
    border-color: #60a5fa;
}

.grid-card i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.grid-card span {
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.certifications {
    background: radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.1), transparent);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.certification-card {
    position: relative;
    overflow: hidden;
}

.certification-card i {
    color: #60a5fa;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.certification-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
    border-color: #60a5fa;
}

.cert-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
}

.cert-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    border: 2px solid #60a5fa;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    text-wrap: nowrap;
    transition: 0.2s ease-in-out;
    background: transparent;
}
.cert-btn:hover {
    background: linear-gradient(to right, #60a5fa, #a855f7);
    border-color: transparent;
}
.cert-btn i {
    font-size: 1rem;
    margin: 0;
    color: inherit;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
    border-color: #60a5fa;
}

.project-card img {
    width: 20vw;
    border-radius: 1rem;
}

.project-card h3 {
    font-size: 2rem;
    font-weight: 500;
}

.input-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
}

.input-box input {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    padding: 2rem 8rem;
    font-size: 3rem;
    color: #fff;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
}

.input {
    position: relative;
}

.input i {
    position: absolute;
    font-size: 4rem;
    top: 50%;
    left: 10px;
    transform: translate(50%, -50%);
    color: #60a5fa;
}

footer {
    background: rgba(15, 23, 42, 0.9);
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

footer ul li a {
    color: #fff;
    font-weight: 500;
}

footer p {
    color: #fff;
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    footer ul {
        gap: 1.5rem;
    }
    
    footer ul li a {
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media (max-width: 1280px) {
    header {
        padding: 1rem 2rem;
        gap: 2rem;
    }
    
    .about .about-container {
        gap: 3rem;
    }
    
    .education-info {
        flex-direction: column;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .input-box input {
        padding: 2rem 5rem;
        font-size: 2rem;
    }
    
    .input-box i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 8rem 6%;
    }
    
    header {
        gap: 1rem;
        padding: 1rem;
    }
    
    header .logo {
        font-size: 1rem;
    }
    
    header .visit-btn {
        display: none;
    }
    
    .about-container {
        flex-direction: column;
        gap: 4rem;
    }
    
    .about img {
        width: 60vw;
    }
    
    .info-box h1 {
        font-size: 3rem;
    }
    
    .info-box span {
        font-size: 1.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    .cert-actions {
        flex-direction: column;
    }
    
    .cert-btn {
        width: 100%;
        justify-content: center;
    }
    
    .project-card img {
        width: 80%;
    }
}

@media (max-width: 600px) {
    header #menu-icon {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        background: rgba(15, 23, 42, 0.95);
        border-radius: 0 0 1rem 1rem;
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .input-box input {
        padding: 1.5rem;
        font-size: 1rem;
        width: 90%;
    }
    
    .input-box input::placeholder {
        font-size: 1rem;
    }
    
    .input i {
        display: none;
    }
}

.about img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    border: 4px solid transparent;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    background-clip: padding-box;
    animation: glowing 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(96, 165, 250, 0.5),
        0 0 40px rgba(96, 165, 250, 0.3),
        0 0 60px rgba(168, 85, 247, 0.2);
}

@keyframes glowing {
    0% {
        box-shadow: 
            0 0 20px rgba(96, 165, 250, 0.5),
            0 0 40px rgba(96, 165, 250, 0.3),
            0 0 60px rgba(168, 85, 247, 0.2);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(96, 165, 250, 0.6),
            0 0 50px rgba(96, 165, 250, 0.4),
            0 0 80px rgba(168, 85, 247, 0.3);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(96, 165, 250, 0.5),
            0 0 40px rgba(96, 165, 250, 0.3),
            0 0 60px rgba(168, 85, 247, 0.2);
    }
}

.about img:hover {
    transform: scale(1.05);
    animation: glowing-hover 1.5s ease-in-out infinite;
}

@keyframes glowing-hover {
    0% {
        box-shadow: 
            0 0 25px rgba(96, 165, 250, 0.6),
            0 0 50px rgba(96, 165, 250, 0.4),
            0 0 80px rgba(168, 85, 247, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(96, 165, 250, 0.7),
            0 0 60px rgba(96, 165, 250, 0.5),
            0 0 100px rgba(168, 85, 247, 0.4);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(96, 165, 250, 0.6),
            0 0 50px rgba(96, 165, 250, 0.4),
            0 0 80px rgba(168, 85, 247, 0.3);
    }
}

@media (max-width: 768px) {
    .about img {
        width: 250px;
        height: 250px;
    }
}


.contact {
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.1), transparent);
    padding: 8rem 12%;
}

.contact-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

/* Contact Info Styles */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
}

.contact-item i {
    font-size: 1.5rem;
    color: #60a5fa;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
}

/* Form Styles */
.contact-form-container {
    flex: 2;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.input-field {
    position: relative;
}

.input-field input,
.input-field textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-field textarea {
    min-height: 150px;
    resize: vertical;
}

.input-field label {
    position: absolute;
    left: 3rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-field input:focus,
.input-field textarea:focus {
    border-color: #60a5fa;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(168, 85, 247, 0.1));
}

.input-field input:focus ~ label,
.input-field textarea:focus ~ label,
.input-field input:valid ~ label,
.input-field textarea:valid ~ label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    padding: 0 0.5rem;
    background: #0f172a;
    border-radius: 0.5rem;
    color: #60a5fa;
}

.input-field i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #60a5fa;
}

.submit-btn {
    align-self: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    border: none;
    border-radius: 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(to right, #a855f7, #60a5fa);
}

.submit-btn i {
    font-size: 1rem;
}


.message {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease forwards;
    z-index: 1000;
}

.success {
    background: linear-gradient(to right, #34d399, #059669);
}

.error {
    background: linear-gradient(to right, #ef4444, #dc2626);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact {
        padding: 8rem 6%;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-item {
        flex: 1;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }
    
    .contact-item {
        min-width: 100%;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 8rem 4%;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .input-field input,
    .input-field textarea {
        font-size: 0.9rem;
    }
}
