/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    text-align: center;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

/* Prevent fixed navbar from covering anchored section titles */
section[id] {
    scroll-margin-top: 110px;
}

.flex_buttons {
    display: flex;
    width: 60%;
    justify-self: center;
    justify-content: space-between;
}

.text-0{
    margin-top: -30%;
}


.electronics-projects{
        margin: 2%;
        border:1px solid #1e00a5;
        padding: 1%;
        zoom: 50%;
}


.study-proof-button {
    text-align: center;
    margin: 20px 0;
}

.qa-button{
    text-align: center;
    margin: 20px 0;
}


.github-private-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.github-section,
.private-section {
    width: 100%;
    text-align: center;
}

.private-section .title {
    margin-bottom: 20px;
}

.private-section .qa-button {
    margin-top: 0;
}

@media (min-width: 769px) {
    .github-private-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }

    .github-section {
        flex: 0 1 auto;
        text-align: center;
    }

    .private-section {
        flex: 0 1 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .private-section .title {
        margin-bottom: 20px;
    }

    .private-section .qa-button {
        margin-top: 0;
    }
}

.proof-btn {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.proof-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #fff;
}

.qa-btn {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qa-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #fff;
}


.myclass {
    display: none;
}

.test2 {
    display: none;
}

.text_about_me{
    width: 80%;
    margin: 0 auto;
}


/* custom scroll bar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section {
    padding: 60px 0;
}

.max-width {
    padding: 0 0px;
    margin: auto;

}

.about,
.services,
.skills,
.contact,
footer {
    font-family: 'Poppins', sans-serif;
}

.about .about-content,
.internship,
.skills .skills-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}



.contact .contact-content{
    display: flex;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 15px;
}

section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: blue;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}

.navbar.sticky {
    padding: 15px 0;
    background: blue;
}

.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 17%;
}

.navbar .logo a {
    color: blue;
    font-size: 35px;
    font-weight: 600;
    margin-left: 10%;
}

.navbar .logo a span {
    color: blue;
    transition: all 0.3s ease;
}

.navbar.sticky .logo a span {
    color: white;
}

.navbar.sticky .menu-btn .fas {
    color: white;
}

.navbar .menu-btn i.fas.fa-bars.active {
    color: white;
}

.navbar.sticky .logo a {
    color: white;
}



.navbar .menu {
    margin-right: 2%;
    display: flex;
}

.text_above{
    font-size: 20px;
}

.navbar .menu li {
    list-style: none;
    display: inline-block;
}

.navbar .menu li a {
    display: block;
    color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 20px;
    transition: color 0.3s ease;
}

.navbar.sticky .menu li a {

    color: white;
}

.navbar .menu li a:hover {
    color: yellow;
}

.navbar.sticky .menu li a:hover {
    color: #fff;
}

/* menu btn styling */
.menu-btn {
    color: blue;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: linear-gradient(135deg, #0e51b5) !important;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    filter: brightness(90%);
}

@keyframes fadeInBackground {
      0% {
        background: #ffffff; /* Initial color */
        background-size: auto 100%;
        background-position: 50% center;
      }
      100% {
           background: url("1.webp") no-repeat right center;
           background-size: auto 100%;
           background-position: right center;
      }
          
    }

/* home section styling */
.home {
    display: flex;

    animation: fadeInBackground 2s ease-in-out forwards;
    height: 100vh;
    color: black;
    background-attachment: scroll;
    font-family: 'Ubuntu', sans-serif;
}



.home .max-width {
    width: 100%;
    display: flex;
}

.home .max-width .row {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.home .home-content{
    width: 50%;
    padding-left: 3%;
}

.home .home-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .home-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home .home-content .text-1 {
    font-size: 35px;
    margin-left: 3%;
}

.home .home-content .text-2 {
    font-size: 50px;
    font-weight: 600;
    margin-left: 3%;
    width: 100%;
}

.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 25px;
    width: 100%;
}

.home .home-content .text-4 {
    font-size: 17px;
    margin: 0 auto;
    width: 80%;
    color: green;
}

.home .home-content .text-5 {
    font-size: 17px;
    margin: 5px 25px;
    width: 80%;
    color: rgb(22, 22, 22);
}

.home .home-content .text-3 span {
    color: blue;
    font-weight: 500;
}

.about {
    /* spacing between home (quote box) and about, reduced as requested */
    margin-top: clamp(20px, 4vw, 70px);
}

.home .home-content a {
    display: inline-block;
    background: blue;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-left: 25px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid blue;
    transition: all 0.3s ease;
}

.home .home-content a:hover {
    color: blue;
    background: none;
}

/* about section styling */
.about .title::after {
    content: "who I am";
}

.about .about-content .left {
    width: 45%;
}

.about .about-content .left img {
    height: 450px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
    padding-top: 5%;
}

.about .about-content .right {
    width: 55%;
}

.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.2;
    min-height: 50px;
    display: block;
}

.about .about-content .right .text span {
    color: blue;
}

.about .about-content .right p {
    font-size: 20px;
}

.about .about-content .right a {
    display: inline-block;
    background: blue;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid blue;
    transition: all 0.3s ease;
    margin-left: -20%;
}

.about .about-content .right a:hover {
    color: blue;
    background: none;
}

.png2 {
    margin-top: -18%;
    margin-left: 10%;
    padding-right: 10%;
}

/* internship section styling */
.internship .title::after {
    content: "My Experience";
}

.internship .internship-content .left{
    width: 65%;
    margin-left: 10%;
    margin-top: 30px;
}



.internship .internship-content .right{
    width: 20%;
    margin-top: 40px;
}



.internship .internship-content .right a {
    display: inline-block;
    background: blue;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    padding: 10px 30px;
    margin-top: 0px;
    border-radius: 6px;
    border: 2px solid blue;
    transition: all 0.3s ease;
    margin-right: 100px;
}

.internship .internship-content .right a:hover {
    color: blue;
    background: none;
}

.internship .internship-content .left .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.internship .internship-content .left span {
    color: blue;
}

.internship .internship-content .left p {
    text-align: left;
    font-size: 25px;
}



/* skills section styling */

.skills .title::after {
    content: "what I know";
}

.skills .skills-content .column {
    width: calc(40% - 30px);
}

.skills .skills-content .left .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skills .skills-content .left p {
    text-align: justify;
    font-size: 20px;
}

.skills .skills-content .left a {
    display: inline-block;
    background: blue;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid blue;
    transition: all 0.3s ease;
}

.skills .skills-content .left a:hover {
    color: blue;
    background: none;
}

.skills .skills-content .right .bars {
    margin-bottom: 15px;
}

.skills .skills-content .right .info {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.skills .skills-content .right span {
    font-weight: 500;
    font-size: 18px;
}

.skills .skills-content .right .skill-icon {
    font-size: 24px;
    color: blue;
    margin-right: 6px;
}

.skills .skills-content .right .line {
    height: 5px;
    width: 100%;
    background: lightgrey;
    position: relative;
}

.skills .skills-content .right .line::before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: blue;
}


/* contact section styling */
.contact .title::after {
    content: "get in touch";
}

.contact .contact-content .column {
    margin-left: 130px;
    width: calc(25% - 30px);
}

.contact .contact-content .column_left{
    margin-left: -5%;
}

.contact .contact-content .text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p {
    font-size: 20px;
}

.contact .contact-content .left .icons {
    margin: 10px 0;
}

.contact .contact-content .row {
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info {
    margin-left: 30px;
}

.contact .contact-content .row i {
    font-size: 25px;
    color: blue;
}

.contact .contact-content .info .head {
    font-weight: 500;
}

.contact .contact-content .info .sub-title {
    color: #333;
}

.contact .right form .fields {
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field {
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea {
    height: 80px;
    width: 100%;
}

.contact .right form .name {
    margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus {
    border-color: #b3b3b3;
}

.contact .right form .textarea textarea {
    padding-top: 10px;
    resize: none;
}

.contact .right form .button-area {
    display: flex;
    align-items: center;
}

.right form .button-area button {
    color: #fff;
    display: block;
    width: 160px !important;
    height: 45px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    flex-wrap: nowrap;
    background: blue;
    border: 2px solid blue;
    transition: all 0.3s ease;
}

.right form .button-area button:hover {
    color: blue;
    background: none;
}

/* footer section styling */
footer {
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}

footer span a {
    color: blue;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}

.image{
    zoom: 0.8;
}

@media (max-height: 700px) {
    .alza {
        margin-top: 20vh;
    }
}


/* responsive media query start  
@media (max-width: 1520px) {


    .navbar .max-width {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 14%;
    }

    .alza {
        margin-top: -98vh;
    }


    .home {
        display: flex;
    
        animation: none;
        height: 100vh;
        color: black;
        background-attachment: scroll;
        font-family: 'Ubuntu', sans-serif;
    }
  

    .my_thoughts{
        margin: 1% 0% 0% 9%;
    }

    body{
        overflow-x: hidden;
    }

    .home .home-content {
        width: 93%;
    }


    .image{
        zoom: 0.8;
    }

    .text_about_me{
        text-align: center;
        width: 80%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 12px;
        padding-right: 12px;
    }

   
    .home .home-content {
        margin-top: -50%;
    }

    .contact .contact-content {
        margin: 0 auto;
        display: flex;
    }

    .contact-content {
        position: relative;
        left: -250px;
    }



    .internship .internship-content .left,
    .workexperience .internship-content .left {
        width: 70%;
        margin-left: 10%;
    }

    .internship .internship-content .right,
    .workexperience .internship-content .right {
        width: 55%;
        margin-left: 0%;
    }

    .internship .internship-content .right a {
        margin-left: 5%;
        display: inline-block;
        background: blue;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        padding: 10px 30px;
        margin-top: 0px;
        border-radius: 6px;
        border: 2px solid blue;
        transition: all 0.3s ease;
    }

    .internship .internship-content .left {
        width: 70%;
    }

    .workexperience .internship-content .left {
        width: 70%;
    }

 .contact .contact-content .column {
    margin-left: 80px;
    width: calc(25% - 30px);
    display: block;
}

.contact .contact-content .column_left{
    margin-left: 25%;
} 

.contact .contact-content .column_right{
    margin-left: 44%;
}
    .test {
        display: inline-flex;
    }

    .test2 {
        display: none;
    }



    .about .about-content .right .text {
        margin-left: 30px;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .about .about-content .right .text span {
        color: blue;
    }

    .about .about-content .right p {
        font-size: 20px;
        text-align: center;
    }

    .about .about-content .right a {
        background: blue;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        padding: 10px 30px;
        margin-top: 20px !important;
        border-radius: 6px;
        border: 2px solid blue;
        transition: all 0.3s ease;
        display: block;
        margin: -5px auto;
    }

    .skills .skills-content .left .text {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        margin-left: 5%;
        margin-top: 35px;
    }

    .skills .skills-content .left p {
        text-align: justify;
        font-size: 20px;
        margin-left: 5%;
    }

    .skills .skills-content .left a {
        display: inline-block;
        margin-left: 5%;
        background: blue;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        padding: 8px 16px;
        margin-top: 20px;
        border-radius: 6px;
        border: 2px solid blue;
        transition: all 0.3s ease;
    }


    .navbar {
        margin-top: -700px;
    }

    .home {
        margin-top: 700px;
        background: none;
        background-size: 100%;

    }

    .home-content {
        position: relative;
        bottom: 550px;
    }

    .about .about-content .left img {
        height: 350px;
        width: 350px;
    }

    .contact-content {
        position: relative;
        left: -150px;
    }

    .row {
        margin-top: 35px;
    }

    .scroll-up-btn {
        display: none;
    }

}*/

@media (max-width: 991px) {

    body{
        overflow-x: hidden;
    }

    .about .about-content .right .text {
        margin-left: 0px;
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .home .home-content {
        margin-top: 175px;
        position: absolute !important;
        top: -35px;
    }

    .home .home-content {
        width: 84% !important;
    }





    .max-width {
        padding: 0 50px;
    }

    .test {
        display: inline-flex;
    }

    .test2 {
        display: none;
    }

}

@media screen and (min-width: 690px) and (max-width: 1103px) {
    section .title {
        margin-top: 11% !important;
    }

}



@media (max-width: 1200px) {
    .navbar .max-width > .menu-btn {
        display: block;
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 1001;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        cursor: pointer;
    }

    .navbar .max-width > .menu-btn i {
        color: #fff;
        font-size: 1.4rem;
        transition: color 0.2s ease;
    }

    .navbar .max-width > .menu-btn i.active {
        color: transparent;
    }

    .navbar .max-width > .menu-btn i.active:before {
        content: "\f00d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
    }

    .text_above {
        font-size: 20px;
        margin-top: 50px;
    }

    body{
        overflow-x: hidden;
    }

    .image{
        zoom: 0.6;
    }


    .home .home-content .text-1 {
        font-size: 35px;
        margin-left: 2%;
    }

    .home .home-content .text-2 {
        font-size: 35px;
        margin-left: 2%;
    }

    .home .home-content .text-3 {
        font-size: 40px;
        margin: 5px 5px;
        width: 100%;
    }

    .png2 {
        margin-top: 0%;
        margin-left: 10%;
        padding-right: 10%;
    }
    .test {
        display: block;
    }

    .test2 {
        display: none;
    }

    .contact .contact-content .column {
        margin-left: 180px;
        width: calc(50% - 130px);
    }

    .navbar .menu {
        position: fixed;
        inset: 0;
        margin: 0;
        width: 100%;
        left: 0;
        right: 0;
        background: #060D1B;
        text-align: center;
        padding-top: 110px;
        transition: opacity 0.25s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1000;
        height: 100vh;
    }

    .navbar .menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: block;
        padding-top: 110px;
    }


    .navbar .menu li {
        display: block;
    }

    .navbar .menu li a {
        display: none;
        margin: 20px 0;
        font-size: 35px;
        color: #111 !important;
    }

    .navbar .menu.active li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 35px;
        color: white !important;
    }

    .home .home-content .text-2 {
        font-size: 45px;
    }

    .home .home-content .text-3 {
        font-size: 35px;
    }

    .home .home-content .text-3 span {
        color: blue;
        font-weight: 500;
        font-size: 30px;
    }

    .home .home-content a {
        font-size: 23px;
        padding: 10px 30px;
    }

    .max-width {
        max-width: 930px;
    }

    .about .about-content .column {
        width: 100%;
    }

    .about .about-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right {
        flex: 100%;
        display: block;
        margin-top: -30px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }


}




@media (max-height: 600px) {
    .alza {
        margin-top: 10vh;
    }
}

@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }

    .flex_buttons {
        display: flex;
        width: 80%;
        justify-self: center;
        justify-content: space-between;
    }


    .submit_button{
        margin-left: 40%;
    }

    .home .home-content {
        margin-top: 200px;
        position: absolute;
        top: -35px;
    }

    .contact .contact-content {
        margin: 0 auto;
        justify-content: space-around;
        display: block;
    }

    .icons{
        margin-top: -25%;
    }

    .contact .contact-content .info .sub-title {
        color: #333;
        width: 160px;
    }

    .contact .contact-content .text {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        width: 101%;
        display: none;
    }

    .skills .skills-content .left p {
        text-align: justify;
        font-size: 20px;
        margin-left: 0%;
    }

    .respintern span {
        color: blue;
        font-weight: 500;
        font-size: 20px;
    }

    .about .about-content .right .text, .skills .skills-content .left .text {
        font-size: 19px;
    }

    .my_thoughts{
        margin: 3% 0% 0% 3%;
        margin-left: 4%;
        margin-right: -8%;
        }

    .home .home-content .text-1 {
        font-size: 30px !important;
        margin-left: 4%;
        margin-top: -20%;
    }

    .home .home-content .text-2 {
        font-size: 30px !important;
        margin-left: 4%;
    }

    .home .home-content .text-3{
        font-size: 22px !important;
    }

    .typing{
        font-size: 23px !important;
    }



    .image{
        zoom: 0.4;
    }

    .contact_text{
        width: 250px;
    }



    .contact .contact-content .column_left{
        margin-left: 73%;
    }

    .contact .contact-content .column_right{
        margin-left: 75%;
    }

    .contact-content {
        position: relative;
        left: -250px;
    }
}


@media (max-width: 768px) {
    .alza {
        margin-top: 40vh;
    }
    
    .github-private-container {
        gap: 60px;
        margin: 40px auto;
    }

    .qa-button{
        margin: -15px 0;
    }
    
    /*.github-section {
        margin-bottom: 20px;
    }*/
    
    /*.private-section {
        margin-top: 20px;
    }*/

    .home .max-width .row {
        flex-direction: column;
        text-align: center;
    }

    .home .home-content {
        width: 100% !important;
        padding-left: 0;
        margin-bottom: 40px;
        order: 2;
    }

    .home .home-image {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

    .home .home-image img {
        max-width: 350px;
        height: auto;
    }
}



    @media (max-width: 1104px) {

        body{
            overflow-x: hidden;
        }
        
         .title{
            font-size: 18px;
        }
        
        .electronics-projects{
            margin: 0 auto;
            border:1px solid #1e00a5;
            width:fit-content;
            padding: 1%;
            zoom: 20%;
            margin-top: 3%;
    }
        
    .alza {
        margin-top: -113vh;
    }

        .home .home-content {
            margin-top: 175px;
            position: absolute;
            top: -35px;
        }

        .home .home-content {
            width: 92%;
            margin-top: 300px;
        }



    section {
        padding: 50px 0;
    }

    .contact .contact-content .column {
        margin-left: 180px;
        width: calc(50% - 30px);
    }

    .home .home-content .text-2 {
        font-size: 40px;
        width: 100%;
    }

    .home .home-content .text-3 {
        font-size:40px;
        margin-left: 16px;
    }

    .home .home-content a {
        font-size: 20px;
        margin-left: 15px;
    }

    .internship {
        display: none;
    }

    .myclass {
        display: block;
    }

    .respintern {
        display: block;
    }

    .respintern .title::after {
        content: "My Experience";
    }

    .respintern span {
        color: blue;
        font-weight: 500;
        font-size: 30px;
    }

    .respintern a {
        display: inline-block;
        background: blue;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
        padding: 10px 30px;
        margin-top: 0px;
        border-radius: 6px;
        border: 2px solid blue;
        transition: all 0.3s ease;
        margin-left: 2%;
    }

    .respintern p {
        text-align: justify;
        font-size: 20px;
        padding-left: 2%;
        padding-right: 2%;
    }

    .respintern .text {
        font-size: 20px;
        padding-left: 2%;
        padding-right: 2%;
    }

    .respintern .title {
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif;
    }

    .respintern .title::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 180px;
        height: 3px;
        background: #111;
        transform: translateX(-50%);
    }

    .respintern .title::after {
        position: absolute;
        bottom: -8px;
        left: 50%;
        font-size: 20px;
        color: blue;
        padding: 0 5px;
        background: #fff;
        transform: translateX(-50%);
    }

    .test {
        display: none;
    }

    .test2 {
        display: block;
    }


}




@media (max-width: 500px) {



    .image{
        zoom: 0.3;
    }

    .submit_button{
        margin-left: 20%;
    }

    .home .home-content {
        margin-top: 220px;
        position: absolute;
        top: -35px;
    }

    .contact .contact-content .column_left {
        margin-left: 60%;
    }

    .skills .skills-content .left p {
        text-align: justify;
        font-size: 20px;
        margin-left: 0%;
    }

    .respintern span{
        color: blue;
        font-weight: 500;
        font-size: 18px;
    }

    .my_thoughts{
        margin: 3% 0% 0% 3%;
        margin-left: -2%;
        margin-right: -8%;
        }

    .home .home-content .text-3{
        font-size: 20px !important;
    }

    .typing{
        font-size: 21px !important;
    }

    .contact .contact-content .column_right{
        margin-left: 60%;
    }

    .home .home-content .text-1 {
        font-size: 30px !important;
        margin-left: 4%;
        margin-top: -13%;
    }

    .home .home-content .text-2 {
        font-size: 30px;
        margin-left: 4%;
    }

    body{
        overflow-x: hidden;
    }


    .home .home-content a {
        font-size: 20px;
        margin-left: 4%;
    }

    .home .home-content .text-2 {
        font-size: 30px;
    }
    .contact-content {
        position: relative;
        left: -150px;
    }
    .home .home-content .text-3 span {
        color: blue;
        font-weight: 500;
        font-size: 30px;
    }

    .home .home-content .text-3 {
        font-size: 27px;
        margin-left: 5%;
    }

    .about .about-content .right .text{
        margin-top: 2px;
    }

    .about .about-content .right .text,
    .skills .skills-content .left .text {
        font-size: 20px;
    }

    .contact .right form .fields {
        flex-direction: column;
    }

    .contact .right form .name,
    .contact .right form .email {
        margin: 0;
    }

    .right form .error-box {
        width: 150px;
    }

    .alza {
        margin-top: -120vh;
    }

    .cv-links {
        display: flex;
        flex-direction: column;
        gap: 0px !important;
        align-items: center;
    }

}




div.form-group {

    display: table-caption;

}



.quote-box {
    background-color: #f9f9f9; /* Light background color */
    border: 1px solid #3498db; /* Border color */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    margin: 0 auto; /* Margin above and below the box */
    text-align: center; /* Center the text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 67%;
    margin-left: 21%;
}

.text-4 {
    font-size: 1.2rem; /* Font size for the quote */
    color: #2c3e50; /* Text color */
    font-style: italic; /* Italic style for the quote */
}

/* Futuristic robotics visual refresh */
:root {
    --bg-primary: #050914;
    --bg-secondary: #0a1224;
    --panel: rgba(10, 22, 42, 0.8);
    --text-primary: #eaf2ff;
    --text-secondary: #b7cae8;
    --accent: #00c2ff;
    --accent-2: #7c4dff;
    --line: rgba(124, 166, 255, 0.28);
    --glow: 0 0 22px rgba(0, 194, 255, 0.35);
}

body {
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 194, 255, 0.14), transparent 40%),
        radial-gradient(circle at 90% 0%, rgba(124, 77, 255, 0.2), transparent 38%),
        linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    color: var(--text-primary);
}

section {
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.03), transparent);
}

section .title {
    color: var(--text-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

section .title::before {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

section .title::after {
    color: var(--accent);
    background: transparent;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(5, 9, 20, 0.45);
    border-bottom: 1px solid rgba(0, 194, 255, 0.2);
}

.navbar.sticky {
    background: rgba(5, 9, 20, 0.92);
}

.navbar .logo a,
.menu-btn,
.navbar .logo a span {
    color: var(--accent);
    text-shadow: var(--glow);
}

.navbar .menu li a {
    color: var(--text-primary);
}

.navbar .menu li a:hover {
    color: var(--accent);
}

.scroll-up-btn {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    box-shadow: var(--glow);
}

.home {
    animation: none;
    min-height: 100vh;
    background: linear-gradient(145deg, rgba(6, 14, 28, 0.9), rgba(5, 9, 20, 0.86));
}

.home .home-content {
    width: min(760px, 96%);
    margin-left: clamp(10px, 2.5vw, 34px);
    padding: clamp(20px, 4vw, 36px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), var(--glow);
    margin-top: 4.5%;
}

.home .home-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .home-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-top: 15%;
}

.home .home-content .text-1 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home .home-content .text-2 {
    font-size: clamp(2rem, 4.4vw, 3.5rem);
    color: #ffffff;
    line-height: 1.1;
}

.home .home-content .text-3,
.home .home-content .text-3 span {
    color: var(--text-secondary);
}

.home .home-content .text-3 span {
    color: var(--accent);
}

.home .home-content .text-3 .typing {
    display: block;
    margin-top: 20px;
    min-height: 2.6em;
    line-height: 1.3;
}

.typed-cursor {
    display: none !important;
}

/* Responsive hardening overrides 
 .home {
    background: #050914 !important;
 }

 .home::before {
    display: none !important;
 }*/

 .typing-3, .typing-4, .typing-5, .typing-6, .typing-7, .typing-8, .typing-9, .typing-10, .typing-11, .typing-12, .typing-13, .typing-14, .typing-15, .typing-16 {
     color: #00c2ff !important;
 }

@media (max-width: 1400px) {
    .navbar,
    .home,
    .home-content,
    .alza {
        margin-top: 0 !important;
    }

    .home .home-content {
        position: static !important;
        bottom: auto !important;
        top: auto !important;
        width: 50% !important;
    }

    .home .home-image {
        width: 45% !important;
        display: none;
    }
}
/*
@media (max-width: 1104px) {
    .alza {
        margin-top: 0 !important;
    }

    .internship .vertical_space,
    .myclass .vertical_space {
        width: 100%;
        table-layout: fixed;
    }

    .internship .internship-content .left,
    .internship .internship-content .right,
    .myclass .internship-content .left,
    .myclass .internship-content .right {
        width: 100% !important;
        margin: 14px 0 !important;
        text-align: left;
    }

    .internship .internship-content .right a,
    .myclass .internship-content .right a {
        margin: 10px 0 0 0 !important;
    }
}*/
/*
@media (max-width: 992px) {
    .navbar .max-width {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .home {
        height: auto !important;
        min-height: 100vh;
        padding-top: 110px;
    }

    .home .max-width {
        display: block;
    }

    .home .home-content {
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto !important;
        padding: 22px 18px;
    }

    .home .home-content .text-1,
    .home .home-content .text-2,
    .home .home-content .text-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .about .about-content,
    .skills .skills-content,
    .contact .contact-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .about .about-content .left,
    .about .about-content .right,
    .skills .skills-content .column,
    .contact .contact-content .column,
    .contact .contact-content .column_left,
    .contact .contact-content .column_right {
        width: 100% !important;
        margin: 0 !important;
    }

    .about .about-content .right .text,
    .about .about-content .right a,
    .skills .skills-content .left .text,
    .skills .skills-content .left a {
        margin-left: 0 !important;
    }

    .contact-content {
        left: 0 !important;
        position: static !important;
    }
}*/

/*
@media (max-width: 768px) {
    .max-width {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    section {
        padding: 48px 0;
    }

    section .title {
        font-size: 30px;
    }

    .about .about-content .left img {
        width: min(320px, 90vw) !important;
        height: auto !important;
    }

    .text_about_me,
    .skills .skills-content .left p,
    .internship .internship-content .left p {
        font-size: 17px !important;
        line-height: 1.6;
        text-align: left;
    }

    .contact .contact-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .contact .contact-content .row .info {
        margin-left: 14px;
    }
}

@media (max-width: 576px) {
    .home {
        padding-top: 95px;
    }

    .home .home-content .text-1 {
        font-size: 0.95rem !important;
    }

    .home .home-content .text-2 {
        font-size: 2rem !important;
    }

    .home .home-content .text-3,
    .home .home-content .text-3 .typing {
        font-size: 1.1rem !important;
    }

    .home .home-content .text-3 .typing {
        min-height: 3.2em;
    }

    .home .home-content a {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }

    .cv-links {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cv-btn {
        width: min(100%, 320px);
    }

    .quote-box {
        width: 100% !important;
        margin: 0 !important;
    }

    .contact .contact-content .row {
        height: auto;
        align-items: flex-start;
        margin-bottom: 12px;
    }
}*/

@media (min-width: 0px) and (max-width: 1400px) {
    .navbar {
        margin-top: 0 !important;
    }

    .home {
        margin-top: 0 !important;
        height: auto !important;
        min-height: 100vh;
        padding-top: 125px;
    }

    .home .max-width {
        display: block;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .home .home-content {
        width: min(720px, 92%) !important;
        margin: 0 auto !important;
        margin-top: 0 !important;
        padding: 20px 20px !important;
        position: static !important;
        top: auto !important;
        bottom: auto !important;
    }

    .home .home-content .text-1 {
        font-size: clamp(0.95rem, 1.35vw, 1.2rem) !important;
        margin-top: 0 !important;
    }

    .home .home-content .text-2 {
        font-size: clamp(2rem, 3.2vw, 2.7rem) !important;
        line-height: 1.15;
    }

    .home .home-content .text-3,
    .home .home-content .text-3 .typing {
        font-size: clamp(1.15rem, 1.8vw, 1.6rem) !important;
    }

    .home .home-content .text-3 .typing {
        min-height: 2.8em;
    }

    .home .home-content a {
        font-size: 20px !important;
        margin-left: 0 !important;
    }
}

.home .home-content a,
.about .about-content .right a,
.internship .internship-content .right a,
.skills .skills-content .left a,
.proof-btn,
.qa-btn,
.respintern a,
.right form .button-area button,
.submit_button {
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0e51b5);
    border: none;
    color: #fff;
    box-shadow: 0 8px 26px rgba(124, 77, 255, 0.35);
}


.home .home-content a:hover,
.about .about-content .right a:hover,
.internship .internship-content .right a:hover,
.skills .skills-content .left a:hover,
.proof-btn:hover,
.qa-btn:hover,
.respintern a:hover,
.right form .button-area button:hover,
.submit_button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #fff;
}

.quote-box,
.skills .skills-content .column.left,
.internship .internship-content .left,
.contact .contact-content .column_left,
.contact .contact-content .column_right {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.quote-box {
    margin-left: auto;
    margin-right: auto;
    width: min(680px, 92%);
}

.home .home-content .text-4 {
    color: var(--text-secondary);
}

.about .about-content .right p,
.internship .internship-content .left p,
.skills .skills-content .left p,
.contact .contact-content .left p,
.contact .contact-content .info .sub-title,
.text_about_skills,
.text_about_me {
    color: var(--text-secondary);
}

.contact .contact-content .row i,
.skills .skills-content .right .skill-icon,
.internship .internship-content .left span,
.about .about-content .right .text span {
    color: var(--accent);
}

.skills .skills-content .right .line::before {
    background: var(--accent);
}

.contact .right form .field input,
.contact .right form .textarea textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.15);
}

footer {
    background: #02050d;
    border-top: 1px solid rgba(0, 194, 255, 0.2);
}

/* Contact left panel centered on all screen sizes */
.contact .contact-content .column_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 35%;
}

.contact .contact-content .column_left .contact_text {
    margin-left: auto;
    margin-right: auto;
}

.contact .contact-content .column_left .icons {
    display: inline-block;
    text-align: left;
}

/* Active mobile column optimization */
@media (max-width: 768px) {
    .about .about-content,
    .skills .skills-content,
    .internship .internship-content,
    .myclass .internship-content,
    .contact .contact-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .about .about-content .left,
    .about .about-content .right,
    .skills .skills-content .column,
    .internship .internship-content .left,
    .internship .internship-content .right,
    .myclass .internship-content .left,
    .myclass .internship-content .right,
    .contact .contact-content .column_left,
    .contact .contact-content .column_right {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .about .about-content .right,
    .skills .skills-content .left,
    .skills .skills-content .right,
    .internship .internship-content .left,
    .myclass .internship-content .left,
    .contact .contact-content .column_left,
    .contact .contact-content .column_right {
        padding-left: 4px;
        padding-right: 4px;
    }

    .about .about-content .left img {
        width: min(320px, 88vw) !important;
        height: auto !important;
        display: block;
        margin: 0 auto !important;
        padding-top: 5%;
    }
}

@media (max-width: 576px) {
    .about .about-content,
    .skills .skills-content,
    .internship .internship-content,
    .myclass .internship-content,
    .contact .contact-content {
        gap: 12px;
    }

    .about .about-content .left img {
        width: min(280px, 86vw) !important;
        padding-top: 5%;
    }

    .scroll-up-btn {
        display: none !important;
    }
}

/* Contact visibility rescue on responsive breakpoints */
@media (max-width: 992px) {
    .contact-content {
        position: static !important;
        left: 0 !important;
    }

    .contact .contact-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 8px;
        padding-right: 8px;
    }

    .contact .contact-content .column_left,
    .contact .contact-content .column_right {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .contact .contact-content .text {
        display: block !important;
    }
}

@media (max-width: 690px) {
    .home .home-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 16px !important;
        margin-top: -5% !important;
    }

    .home .home-content .text-1 {
        font-size: clamp(0.95rem, 4.2vw, 1.15rem) !important;
        line-height: 1.35;
        word-break: break-word;
    }

    .contact .contact-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px;
        margin: 0 !important;
        padding: 0 10px !important;
    }

    .contact .contact-content .column_left,
    .contact .contact-content .column_right {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 14px 10px !important;
        box-sizing: border-box;
    }

    .contact .contact-content .column_left {
        order: 1;
        text-align: center;
    }

    .contact .contact-content .column_right {
        order: 2;
    }

    .contact .contact-content .row {
        height: auto;
        align-items: flex-start;
    }

    .contact .contact-content .row .info {
        margin-left: 12px !important;
    }

    .contact .contact-content .contact_text {
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact .contact-content .icons {
        margin-top: 10px;
        display: inline-block;
        text-align: left;
    }
}

/* Keep form container centered inside right column */
.contact .contact-content .column_right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
}

.contact .contact-content .column_right .container {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact .contact-content .column_right #my-form {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact .contact-content .column_right #my-form .form-group {
    display: block;
    width: 100%;
}

.contact .contact-content .column_right #my-form label {
    display: block;
    margin-bottom: 6px;
}

.contact .contact-content .column_right #my-form input,
.contact .contact-content .column_right #my-form textarea {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.contact .contact-content .column_right #my-form .submit_button {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 15px;
    margin-bottom: 5px;
}

