@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Be Vietnam Pro', sans-serif;
    scroll-behavior: smooth;
}

:root{
    --bgOrange: #e84949;
    --bg-color: #ffffff;
  --text-color: #222222;
  --card-bg: #f2f2f2;
}


.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}


.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 1rem;

}

.logo-text{
    margin-left: -1.2rem;
    font-size: 28px;
}

.logo{
    width: 80px;
}

.logo-container{
    left: 2%;
    display: flex;
    justify-content: baseline;
    align-items: center;
}

.nav-items{
    display: flex;
    gap: 2rem;
    padding: 0 4em;
}

.nav-items div{
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.nav-items div a{
    color: var(--text-color);
    transition: color 0.3s ease;
}



a{
    text-decoration: none;
}

.nav-items div:hover{
    transition: 0.8s;
    font-weight: bold;
}



.hero-section{
    position: relative;
    overflow: hidden;   /* 🔒 lock */
    min-height: calc(100vh - 80px); /* navbar height */
}

/*.faded-text{
    position: absolute;
    user-select: none;
    font-size: 7em;
    color: rgb(231,231,231);
    bottom: 0;
    left: 10%;
    font-weight: bold;
} */


.hero-section-left{
    margin-left: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}


.hero-section-heading{
    font-size: 35px;
    color: #343d68;
    font-weight: 500;
}

.role{
    color: #E74C3C;
    font-weight: 800;
}

.hero-section-sub-heading{
    font-size: 45px;
    line-height: 45px;
}

.hero-section-description{
    font-family: "Roboto", sans-serif;
    margin-top: 1rem;
    width: 70%;
    text-align: justify;
    font-weight: 500;
    font-size: 20px;
    gap: 1rem;
}


.btn-pink{
    background-color: var(--bgOrange);
    width: fit-content;
    color: white;
    padding: 0.8rem 2.3rem;
    box-shadow: 5px 5px 7px 0px #0000003f;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s;
    font-weight: 500;
    border: solid 3px transparent;
    position: relative;
    z-index: 1;
}

.btn-pink::before{
    content: "";
    position: absolute;
    background-color: #fff;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.8s;
}

.btn-pink:hover::before{
    transform: scaleX(1);
}

.btn-pink:hover{
    border: solid 3px var(--bgOrange);
    color: black;
}

.hero-section-right{
    margin-right: 4%;
    right: 4%;
    position: relative;
}

.absolute{
    position: absolute;
}

.my-photo {
  width: 300px;         
  height: 350px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
}
.my-dot{
  width: 100px;         
  height: 80px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.my-plus{
    width: 40px;         
  height: 40px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.my-cube{
    width: 40px;         
  height: 40px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.my-circle{
    border: none;
    width: 40px;         
  height: 40px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.my-zikzak{
    width: 70px;         
  height: 100px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.user-image{
    padding: 2.5rem;
    filter: grayscale(1);
    transition: all 1s;
    animation: scaleImage 5s linear infinite;
}


.user-image img{
    z-index: -9;
}

@keyframes scaleImage{
    0%{
        filter: grayscale(0);
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
        filter: grayscale(1);
        box-shadow: 3px 3px 10px black;
    }
    100%{
        transform: scale(0.9);
        filter: grayscale(0);
    }
}

.icon-dots{
    z-index: 9;
    bottom: -1rem;
    right: 0;
    animation-name: dotsAnimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes dotsAnimation {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}

.icon-cube{
    z-index: 9;
    top: -0.8em;
    right: 1em;
    animation-name: cubeRotate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes cubeRotate{
    0%{
        transform: rotateY(0deg) translateY(0px);
    }
    50%{
        transform: rotateY(180deg) translateY(-12px);
    }
    100%{
        transform: rotateY(360deg) translateY(0px);
    }
}

.icon-circle{
    z-index: 9;
    left: 0;
    bottom: 0;
    animation-name: shakeEffect;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes shakeEffect{
    0%{
        left: 0;
        bottom: 0;
    }
    50%{
        left: 5%;
        bottom: 10%;
    }
    100%{
        left: 0;
        bottom: 0;
    }
}

.icon-zigzak{
    z-index: 9;
    top: 1.5em;
    left: -0.3em;
    animation: zigzagAnimation 5s ease-in infinite;
}

@keyframes zigzagAnimation{
    0%{
        left: 0;
        top: 0;
    }
    50%{
        left: 5%;
        top: 2%;
    }
    100%{
        left: 0;
        top: 0;
    }
}

.icon-plus{
    z-index: 9;
    top: -0.8rem;
    left: 50%;
    animation: shakeEffectPlus 5s ease-in infinite;
}

@keyframes shakeEffectPlus{
    50%{
        top: 3%;
        left: 48%;
    }
}

.project-section{
    background-color: rgb(231,231,231);
    margin-top: 4rem;
}
.page-header{
    color: var(--bgOrange);
    font-size: 90px;
    text-align: center;
    padding-top: 30px;
    position: relative;
    z-index: 2;
}
.project-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.project-card{
    width: 100%;
    height: 550px;
    background-image: url(./images/Movie.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    position: relative;
    box-shadow: 0px 0px 40px #1f1f1f;
}
.project-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1f1f9a;
    z-index: 0;
    /*transform: scaleX(1); */
}
.project-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,#343d68,#343d68be,#343d687c);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
    z-index: 1;
}
.project-card:hover::before{
    transform: scaleX(1);
}
.project-number{
    position: absolute;
    font-size: 200px;
    font-weight: 600;
    color: white;
    z-index: 10;
    /*display: none; */
    opacity: 0;
}
.project-card:hover .project-number{
    /*display: block;*/
    opacity: 1;
}
.project-number-right{
    right: -40px;
    top: -45px;
}
.project-number-left{
    left: -40px;
    top: -45px;
}
.project-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    color: wheat;
    padding: 2em;
    bottom: 20%;
    z-index: 5;
    gap: 1em;
    transition: all 0.4s;
}
.project-content-left{
    left: 10%;
}
.project-content-right{
    margin-left: 100px;
}

.project-skills-container{
    width: 60%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.project-skill{
    width: 40px;
}
.project-heading{
    font-size: 50px;
    font-weight: bold;
    line-height: 3rem;
}
.project-subHeading{
    width: 70%;
    font-size: 16px;
    font-style: italic;
}
.btn-grp{
    display: flex;
    gap: 0.9rem;
    align-items: center;
}
.btn-project:hover{
    border: none;
}
.icon{
    cursor: pointer;
    color: white;
    font-size: 35px;
    transition: 0.4s;
}
.icon:hover{
    color: var(--bgOrange);
}
.project-card:hover .project-content{
    transform: scale(1.1);
}
#project1{
    background-image: url(./images/Movie.png);
}
#project2{
    margin-left: 120px;
    background-image: url(./images/blinkit.png);
}

#project3{
    background-image: url(./images/python.jpg);
}
#project4{
    margin-left: 120px;
    background-image: url(./images/chatbot.png);
}
/* .project-content-right{
    right: 10%;
} */
@media (max-width: 1300px){
    .page-header{
        padding-top: 30px;
        color: var(--bgOrange);
        text-align: center;
        font-size: 40px;
    }
    .project-container{
        padding: 5px;
        margin: 10px;
        gap: 60px;
    }
    .project-card{
        width: 100%;
        height: 300px;
    }
    .project-card{
        background-size: cover;
        background-position: center;
    }
    .project-content{
        scale: 0.5;
        bottom: 0;
        top: 0;
    }
    .project-content-left{
        left: 0;
    }
    .project-content-right{
        right: 0;
    }
    .project-heading{
        font-size: 40px;
        width: 100%;
    }
    .project-subHeading{
        width: 100%;
    }
    #project2{
        margin-left: 0;
    }
    #project4{
        margin-left: 0;
    }
    .project-skills-container{
        width: 100%;
    }
    .project-skill{
        width: 35px;
    }
    .project-card:hover .project-number{
        display: none;
    }
    .project-card:hover .project-content{
        scale: 0.55;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* 🔴 Skills Title */
.skills-title {
  font-size: 72px;
  font-weight: 700;
  color: #f24b43;
  text-align: center;
  margin: 60px 0 30px;
  letter-spacing: 1px;
}

.container1 {
width: 1200px;
margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 100px 60px;
}

.left {
  width: 50%;
}

.left h1 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 20px;
}

.left .highlight {
  color: #f24b43;
}

.left p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* ✅ Icons Section */
.right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px; /* 👈 Moves icons lower */
}

.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.icons img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icons img:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 10px;
}

.logo-container-skill {
   position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 2%;
    gap: 1rem;
    right: 2%;
    margin:-18rem auto;
    padding: 0 1rem;
    padding-right: 8rem;
    padding-bottom: 52rem;
    margin-bottom: 0rem;
    
}

/* This is the primary CSS for the "Shahnawaz" text style */
.logo-text-skill {
    /* Font Styling */
    position: absolute;
    user-select: none;
    font-size: 10em;
    color: rgb(231,231,231);
    bottom: -16%;
    left: 10%;
    font-weight: bold;
    transition: all 3s;;
}

.contactus-form-container{
    width: 100%;
    background-color: rgb(231,231,231);
}
.contactus-heading{
    font-size: 5em;
    color: var(--bgOrange);
    padding-top: 2rem;
}

.contactus-sub-heading{
    font-size: 3rem;
    color: #343d68aa;
    text-transform: capitalize;
}
.contactus-form-container{
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 70%;
    margin: 2rem 4rem;
}
.formfield-container{
    width: 100%;
}

.formfield{
    width: 100%;
    height: 42px;
    padding: 0 2rem;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #1f1f1f;
    font-weight: 500;
    border: none;
    margin-top: 27px;
}

.formfield-textarea{
    height: auto;
    padding-top: 1rem;
}

#submit-btn{
    border: none;
    font-size: 1.4rem;
    margin: 1rem 0;
}

#submit-btn:hover{
    scale: 0.9;
}

.submit-icon{
    padding: 0 1rem;
    font-size: 1.5rem;

}

.footer{
    position: relative;
    margin-top: -1px;
    background-color: #343d68;
    padding: 5rem;

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

.footer-faded-text{
    position: absolute;
    left: 0;
    bottom: 0;
    color: #535c87;
    user-select: none;
    font-size: 5em;
}
.link-wrapper{
    display: flex;
    gap: 1.2rem;

}
.link-wrapper div a{
    color: white;
    text-decoration: none;
    transition: all 0.6s;
}
.link-wrapper div a:hover{
    color: var(--bgOrange);
    text-decoration: none;
}
.icon-wrapper{
    display: flex;
    gap: 1rem;

}


/* ========================================= */
/* MOBILE RESPONSIVE STYLES            */
/* (For screens 768px or smaller)        */
/* ========================================= */

@media (max-width: 768px) {

    /* --- General Layout Fix --- */
    .container, .container1 {
        width: 90%; /* Fixed 1200px ko flexible banayein */
        padding: 0;
    }

    /* --- Navbar --- */
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        background-color: transparent;
    }
    .nav-items {
        padding: 0;
        gap: 1.5rem;
    }

    /* --- Hero Section --- */
    .hero-section {
        flex-direction: column;
        gap: 3rem;
        margin: 2rem auto;
        padding-bottom: 4rem;
        text-align: center;
        overflow: hidden;
    }
    .hero-section-left {
        order: 2; /* Text ko image ke neeche laayein */
        margin-left: 0;
        align-items: center;
        gap: 1rem;
    }
    .hero-section-right {
        order: 1; /* Image ko upar rakhein */
        margin-right: 0;
    }
    /*.faded-text {
        font-size: 3em; 
        left: 0;
        right: 0;
        text-align: center;
        bottom: 0;
    } */
    .hero-section-heading {
        font-size: 2rem;
    }
    .hero-section-sub-heading {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }
    .hero-section-description {
        width: 100%; /* Poori width le */
        font-size: 16px;
    }
    .my-photo {
        width: 250px;
        height: 290px;
    }

    /* --- Projects Section --- */
    .page-header {
        font-size: 50px;
    }
    .project-container {
        padding: 1rem 0;
        gap: 80px;
    }
    #project2, #project4 {
        margin-left: 0; /* Extra margin hata dein */
    }
    .project-card {
        width: 100%;
        height: 400px; /* Thodi height adjust karein */
    }
    .project-number {
        display: none; /* Mobile par number hide kar dein */
    }
    .project-content {
        padding: 1em;
        left: 0;
        width: 90%;
        gap: 0.5em;
    }
    .project-heading {
        font-size: 30px;
        line-height: 2.5rem;
    }
    .project-subHeading {
        width: 100%;
        font-size: 14px;
    }

    /* --- Skills Section --- */
    .skills-title {
        font-size: 50px;
        margin: 40px 0 20px;
    }
    .container1 {
        flex-direction: column; /* Stack karein */
        padding: 20px;
        gap: 2rem;
    }
    .left, .right {
        width: 100%; /* Poori width le */
    }
    .right {
        margin-top: 20px; /* Extra margin kam karein */
    }
    .left h1 {
        font-size: 32px;
    }
    .logo-container-skill{
        display: none; /* Faded skills text ko mobile par hide kar dein */
    }

    /* --- Contact Me Section --- */
    .contactus-heading {
        font-size: 3em;
    }
    .contactus-sub-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    .form {
        width: 100%;
        margin: 2rem 0;
    }

    /* --- Footer Section --- */
    .footer {
        padding: 2rem 1rem;
    }
    .footer-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-faded-text {
        font-size: 3em;
        text-align: center;
    }
}@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Be Vietnam Pro', sans-serif;
    scroll-behavior: smooth;
}

:root{
    --bgOrange: #e84949;
}

#wrapper{
    min-height: 100vh;
    overflow-x: hidden;
}

.container{
    width: 1200px;
    margin: 0 auto;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 1rem;

}

.logo-text{
    margin-left: -1.2rem;
    font-size: 28px;
}

.logo{
    width: 80px;
}

.logo-container{
    left: 2%;
    display: flex;
    justify-content: baseline;
    align-items: center;
}

.nav-items{
    display: flex;
    gap: 2rem;
    padding: 0 4em;
}

.nav-items div{
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}



a{
    text-decoration: none;
}

.nav-items div:hover{
    transition: 0.8s;
    font-weight: bold;
}


.hero-section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 4rem auto;
    padding: 0 1rem 6rem;
}




.hero-section-left{
    margin-left: 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}


.hero-section-heading{
    font-size: 35px;
    color: #343d68;
    font-weight: 500;
}

.role{
    color: #E74C3C;
    font-weight: 800;
}

.hero-section-sub-heading{
    font-size: 45px;
    line-height: 45px;
}

.hero-section-description{
    font-family: "Roboto", sans-serif;
    margin-top: 1rem;
    width: 70%;
    text-align: justify;
    font-weight: 500;
    font-size: 20px;
    gap: 1rem;
}


.btn-pink{
    background-color: var(--bgOrange);
    width: fit-content;
    color: white;
    padding: 0.8rem 2.3rem;
    box-shadow: 5px 5px 7px 0px #0000003f;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.5s;
    font-weight: 500;
    border: solid 3px transparent;
    position: relative;
    z-index: 1;
}

.btn-pink::before{
    content: "";
    position: absolute;
    background-color: #fff;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.8s;
}

.btn-pink:hover::before{
    transform: scaleX(1);
}

.btn-pink:hover{
    border: solid 3px var(--bgOrange);
}

.hero-section-right{
    margin-right: 4%;
    right: 4%;
    position: relative;
}

.absolute{
    position: absolute;
}

.my-photo {
  width: 300px;         
  height: 350px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
}
.my-dot{
  width: 100px;         
  height: 80px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.my-plus{
    width: 40px;         
  height: 40px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.my-cube{
    width: 40px;         
  height: 40px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.my-circle{
    border: none;
    width: 40px;         
  height: 40px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.my-zikzak{
    width: 70px;         
  height: 100px;        
  object-fit: cover;    
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.user-image{
    padding: 2.5rem;
    filter: grayscale(1);
    transition: all 1s;
    animation: scaleImage 5s linear infinite;
}


.user-image img{
    z-index: -9;
}

@keyframes scaleImage{
    0%{
        filter: grayscale(0);
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
        filter: grayscale(1);
        box-shadow: 3px 3px 10px black;
    }
    100%{
        transform: scale(0.9);
        filter: grayscale(0);
    }
}

.icon-dots{
    z-index: 9;
    bottom: -1rem;
    right: 0;
    animation-name: dotsAnimation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes dotsAnimation {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(0px);
    }
}

.icon-cube{
    z-index: 9;
    top: -0.8em;
    right: 1em;
    animation-name: cubeRotate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes cubeRotate{
    0%{
        transform: rotateY(0deg) translateY(0px);
    }
    50%{
        transform: rotateY(180deg) translateY(-12px);
    }
    100%{
        transform: rotateY(360deg) translateY(0px);
    }
}

.icon-circle{
    z-index: 9;
    left: 0;
    bottom: 0;
    animation-name: shakeEffect;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes shakeEffect{
    0%{
        left: 0;
        bottom: 0;
    }
    50%{
        left: 5%;
        bottom: 10%;
    }
    100%{
        left: 0;
        bottom: 0;
    }
}

.icon-zigzak{
    z-index: 9;
    top: 1.5em;
    left: -0.3em;
    animation: zigzagAnimation 5s ease-in infinite;
}

@keyframes zigzagAnimation{
    0%{
        left: 0;
        top: 0;
    }
    50%{
        left: 5%;
        top: 2%;
    }
    100%{
        left: 0;
        top: 0;
    }
}

.icon-plus{
    z-index: 9;
    top: -0.8rem;
    left: 50%;
    animation: shakeEffectPlus 5s ease-in infinite;
}

@keyframes shakeEffectPlus{
    50%{
        top: 3%;
        left: 48%;
    }
}

.project-section{
    background-color: rgb(231,231,231);
    margin-top: 4rem;
}
.page-header{
    color: var(--bgOrange);
    font-size: 90px;
    text-align: center;
    padding-top: 30px;
}
.project-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}
.project-card{
    width: 100%;
    height: 550px;
    background-image: url(./images/Movie.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    position: relative;
    box-shadow: 0px 0px 40px #1f1f1f;
}
.project-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1f1f9a;
    z-index: 0;
    /*transform: scaleX(1); */
}
.project-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,#343d68,#343d68be,#343d687c);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
    z-index: 1;
}
.project-card:hover::before{
    transform: scaleX(1);
}
.project-number{
    position: absolute;
    font-size: 200px;
    font-weight: 600;
    color: white;
    z-index: 10;
    /*display: none; */
    opacity: 0;
}
.project-card:hover .project-number{
    /*display: block;*/
    opacity: 1;
}
.project-number-right{
    right: -40px;
    top: -45px;
}
.project-number-left{
    left: -40px;
    top: -45px;
}
.project-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    color: wheat;
    padding: 2em;
    bottom: 20%;
    z-index: 5;
    gap: 1em;
    transition: all 0.4s;
}
.project-content-left{
    left: 10%;
}
.project-content-right{
    margin-left: 100px;
}

.project-skills-container{
    width: 60%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.project-skill{
    width: 40px;
}
.project-heading{
    font-size: 50px;
    font-weight: bold;
    line-height: 3rem;
}
.project-subHeading{
    width: 70%;
    font-size: 16px;
    font-style: italic;
}
.btn-grp{
    display: flex;
    gap: 0.9rem;
    align-items: center;
}
.btn-project:hover{
    border: none;
}
.icon{
    cursor: pointer;
    color: white;
    font-size: 35px;
    transition: 0.4s;
}
.icon:hover{
    color: var(--bgOrange);
}
.project-card:hover .project-content{
    transform: scale(1.1);
}
#project1{
    background-image: url(./images/Movie.png);
}
#project2{
    margin-left: 120px;
    background-image: url(./images/blinkit.png);
}

#project3{
    background-image: url(./images/python.jpg);
}
#project4{
    margin-left: 120px;
    background-image: url(./images/chatbot.png);
}
/* .project-content-right{
    right: 10%;
} */
@media (max-width: 1300px){
    .page-header{
        padding-top: 30px;
        color: var(--bgOrange);
        text-align: center;
        font-size: 40px;
    }
    .project-container{
        padding: 5px;
        margin: 10px;
        gap: 60px;
    }
    .project-card{
        width: 100%;
        height: 300px;
    }
    .project-card{
        background-size: cover;
        background-position: center;
    }
    .project-content{
        scale: 0.5;
        bottom: 0;
        top: 0;
    }
    .project-content-left{
        left: 0;
    }
    .project-content-right{
        right: 0;
    }
    .project-heading{
        font-size: 40px;
        width: 100%;
    }
    .project-subHeading{
        width: 100%;
    }
    #project2{
        margin-left: 0;
    }
    #project4{
        margin-left: 0;
    }
    .project-skills-container{
        width: 100%;
    }
    .project-skill{
        width: 35px;
    }
    .project-card:hover .project-number{
        display: none;
    }
    .project-card:hover .project-content{
        scale: 0.55;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #333;
}

/* 🔴 Skills Title */
.skills-title {
  font-size: 72px;
  font-weight: 700;
  color: #f24b43;
  text-align: center;
  margin: 60px 0 30px;
  letter-spacing: 1px;
}

.container1 {
width: 1200px;
margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 100px 60px;
}

.left {
  width: 50%;
}

.left h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
}

.left .highlight {
  color: #f24b43;
}

.left p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* ✅ Icons Section */
.right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px; /* 👈 Moves icons lower */
}

.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.icons img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icons img:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 10px;
}

.logo-container-skill {
   position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 2%;
    gap: 1rem;
    right: 2%;
    margin:-18rem auto;
    padding: 0 1rem;
    padding-right: 8rem;
    padding-bottom: 52rem;
    margin-bottom: 0rem;
    
}

/* This is the primary CSS for the "Shahnawaz" text style */
.logo-text-skill {
    /* Font Styling */
    position: absolute;
    user-select: none;
    font-size: 10em;
    color: rgb(231,231,231);
    bottom: -16%;
    left: 10%;
    font-weight: bold;
    transition: all 3s;;
}

.contactus-form-container{
    width: 100%;
    background-color: rgb(231,231,231);
}
.contactus-heading{
    font-size: 5em;
    color: var(--bgOrange);
    padding-top: 2rem;
}

.contactus-sub-heading{
    font-size: 3rem;
    color: #343d68aa;
    text-transform: capitalize;
}
.contactus-form-container{
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 70%;
    margin: 2rem 4rem;
}
.formfield-container{
    width: 100%;
}

.formfield{
    width: 100%;
    height: 42px;
    padding: 0 2rem;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px #1f1f1f;
    font-weight: 500;
    border: none;
    margin-top: 27px;
}

.formfield-textarea{
    height: auto;
    padding-top: 1rem;
}

#submit-btn{
    border: none;
    font-size: 1.4rem;
    margin: 1rem 0;
}

#submit-btn:hover{
    scale: 0.9;
}

.submit-icon{
    padding: 0 1rem;
    font-size: 1.5rem;

}

.footer{
    position: relative;
    margin-top: -1px;
    background-color: #343d68;
    padding: 5rem;

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

.footer-faded-text{
    position: absolute;
    left: 0;
    bottom: 0;
    color: #535c87;
    user-select: none;
    font-size: 5em;
}
.link-wrapper{
    display: flex;
    gap: 1.2rem;

}
.link-wrapper div a{
    color: white;
    text-decoration: none;
    transition: all 0.6s;
}
.link-wrapper div a:hover{
    color: var(--bgOrange);
    text-decoration: none;
}
.icon-wrapper{
    display: flex;
    gap: 1rem;

}


/* ========================================= */
/* MOBILE RESPONSIVE STYLES            */
/* (For screens 768px or smaller)        */
/* ========================================= */

@media (max-width: 768px) {

    /* --- General Layout Fix --- */
    .container, .container1 {
        width: 90%; /* Fixed 1200px ko flexible banayein */
        padding: 0;
    }

    /* --- Navbar --- */
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .nav-items {
        padding: 0;
        gap: 1.5rem;
    }

    /* --- Hero Section --- */
    .hero-section {
        flex-direction: column;
        gap: 3rem;
        margin: 2rem auto;
        padding-bottom: 4rem;
        text-align: center;
    }
    .hero-section-left {
        order: 2; /* Text ko image ke neeche laayein */
        margin-left: 0;
        align-items: center;
        gap: 1rem;
    }
    .hero-section-right {
        order: 1; /* Image ko upar rakhein */
        margin-right: 0;
    }
    /*.faded-text {
        font-size: 3em; 
        left: 0;
        right: 0;
        text-align: center;
        bottom: 0;
    } */
    .hero-section-heading {
        font-size: 2rem;
    }
    .hero-section-sub-heading {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }
    .hero-section-description {
        width: 100%; /* Poori width le */
        font-size: 16px;
    }
    .my-photo {
        width: 250px;
        height: 290px;
    }

    /* --- Projects Section --- */
    .page-header {
        font-size: 50px;
    }
    .project-container {
        padding: 1rem 0;
        gap: 80px;
    }
    #project2, #project4 {
        margin-left: 0; /* Extra margin hata dein */
    }
    .project-card {
        width: 100%;
        height: 400px; /* Thodi height adjust karein */
    }
    .project-number {
        display: none; /* Mobile par number hide kar dein */
    }
    .project-content {
        padding: 1em;
        left: 0;
        width: 90%;
        gap: 0.5em;
    }
    .project-heading {
        font-size: 30px;
        line-height: 2.5rem;
    }
    .project-subHeading {
        width: 100%;
        font-size: 14px;
    }

    /* --- Skills Section --- */
    .skills-title {
        font-size: 50px;
        margin: 40px 0 20px;
    }
    .container1 {
        flex-direction: column; /* Stack karein */
        padding: 20px;
        gap: 2rem;
    }
    .left, .right {
        width: 100%; /* Poori width le */
    }
    .right {
        margin-top: 20px; /* Extra margin kam karein */
    }
    .left h1 {
        font-size: 32px;
    }
    .logo-container-skill{
        display: none; /* Faded skills text ko mobile par hide kar dein */
    }

    /* --- Contact Me Section --- */
    .contactus-heading {
        font-size: 3em;
    }
    .contactus-sub-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    .form {
        width: 100%;
        margin: 2rem 0;
    }

    /* --- Footer Section --- */
    .footer {
        padding: 2rem 1rem;
    }
    .footer-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-faded-text {
        font-size: 3em;
        text-align: center;
    }
}

/* ============================= */
/* Resume Section */
/* ============================= */
.resume-section {
    padding: 5rem 0;
    text-align: center;
}

.resume-container {
    max-width: 800px;
    margin: auto;
}

.resume-container p {
    font-size: 18px;
    margin-bottom: 2rem;
    color: #444;
}

.resume-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ============================= */
/* Achievements Section */
/* ============================= */
.achievement-section {
    background-color: rgb(231,231,231);
    padding: 5rem 0;
}

.achievement-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

.achievement-card h3 {
    color: var(--bgOrange);
    margin-bottom: 1rem;
}

.achievement-card p {
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.achievement-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--bgOrange);
    font-weight: 600;
}

/* ============================= */
/* Certifications Section */
/* ============================= */
.certification-section {
    padding: 5rem 0;
    text-align: center;
}

.certification-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.cert-card {
    border: 2px solid var(--bgOrange);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.4s;
}

.cert-card:hover {
    background-color: var(--bgOrange);
    color: white;
}

.cert-card h3 {
    margin-bottom: 0.5rem;
}

.cert-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
    color: inherit;
}

.nav-items div a:hover {
    color: var(--bgOrange);
}

@media (max-width: 768px) {
    .resume-buttons {
        flex-direction: column;
    }
}


/* ============================= */
/* Hero Buttons Fix */
/* ============================= */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;        /* buttons ke beech spacing */
    margin-top: 1rem;
}

/* Ensure same hover behaviour */
.hero-buttons .btn-pink {
    margin: 0;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
  .nav-items {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* 🌙 Dark Mode Toggle Button */
.theme-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: 1rem;
}

body.dark {
  --bg-color: #0f172a;
  --text-color: #e5e7eb;
  --card-bg: #1e293b;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}

body.dark .navbar{
    background-color: #0b1220;
}

.nav-items div a:hover{
    color: var(--bgOrange);
}

.theme-btn{
    color: var(--text-color);
}

body.dark .icons img {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
}

