* {
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300px;
    font-style: normal;
    color: white;
}

html {
    scroll-behavior: smooth;
}


.first {
    background: linear-gradient(180deg,
            #101236 2.1%,
            #2a3c5c 32.6%,
            #517c96 69.1%,
            #c7e6f8);
    /* height: 100vh; */
    height: auto;
    /* margin-top: -30px; */
    padding-top: 1px;
}



.navbar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 10px 0;

}

nav {
    display: flex;
}

ul {
    margin-top: 10px;
    margin-left: 50px;
    font-size: 40px;
    list-style-type: none;
    padding: 0;
}

.nav_text {
    margin-top: 16px;
    margin-left: 196px;
    font-size: 25px;
    display: flex;
    gap: 70px;
}

.nav_text a {
    text-decoration: none;
    color: white;
}

.nav_text a:hover {
    color: rgb(40 177 237);
}


.desktop-navbar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #28b1ed, #239BCF);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.desktop-nav-links {
    display: flex;
    gap: clamp(20px, 5vw, 50px);
    align-items: center;
}

.desktop-nav-links a {
    text-decoration: none;
    color: white;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.desktop-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 177, 237, 0.3), transparent);
    transition: left 0.5s ease;
}

.desktop-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #28b1ed, #239BCF);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.desktop-nav-links a:hover {
    color: #28b1ed;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 177, 237, 0.3);
}

.desktop-nav-links a:hover::before {
    left: 100%;
}

.desktop-nav-links a:hover::after {
    width: 80%;
}

/* Mobile Bottom Navbar */
.mobile-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(145deg, #239BCF 0%, #000 100%);
    padding: 10px 20px 20px 20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 12px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    min-width: 50px;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(40, 177, 237, 0.2), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-text {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3D Hover Effects */
.mobile-nav-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(35, 155, 207, 0.4);
}

.mobile-nav-item:hover::before {
    opacity: 1;
}

.mobile-nav-item:hover .nav-icon {
    transform: rotateY(360deg) scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(35, 155, 207, 0.6));
    color: #28b1ed;
}

.mobile-nav-item:hover .nav-text {
    opacity: 1;
    transform: translateY(-2px);
    color: #28b1ed;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Active state */
.mobile-nav-item.active {
    background: rgba(40, 177, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(35, 155, 207, 0.4);
}

.mobile-nav-item.active .nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(35, 155, 207, 0.5));
    color: #28b1ed;
}

.mobile-nav-item.active .nav-text {
    opacity: 1;
    color: #28b1ed;
    font-weight: 600;
}

/* Ripple effect */
.mobile-nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(40, 177, 237, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.mobile-nav-item:active::after {
    width: 100px;
    height: 100px;
}

/* Demo Content */
.demo-content {
    padding: 50px 20px 100px 20px;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.demo-section {
    margin: 100px 0;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-navbar {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }

    .demo-content {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .mobile-navbar {
        padding: 8px 15px 15px 15px;
    }

    .mobile-nav-item {
        padding: 6px 8px;
        min-width: 45px;
    }

    .nav-icon {
        width: 20px;
        height: 20px;
    }

    .nav-text {
        font-size: 9px;
    }
}

/* .middle .upper {
    font-size: 52px;
    line-height: 70px;
}

.middle {
    margin-top: 180px;
    margin-left: 185px;
    height: 400px;
    display: flex;
    padding-bottom: 100px;
}

.middle .about {
    margin-top: 18px;
    line-height: 30px;
    font-size: 21px;
    max-width: 690px;
}

.middle .photo img {
    border-radius: 50%;
    height: 400px;
    width: 375px;
    margin-left: 60px;
    margin-top: -50px;
    border: #ffffff;
    border-style: solid;
    border-width: 6px;
    box-shadow: 0 0 10px 5px #3cb8dc;
}

.btn a {
    text-decoration: none;
}

.btn a:hover {
    text-decoration: none;
}

.button2 {
    height: 20px;
    width: 150px;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    padding: 1em 2em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid black;
    box-shadow: 0 0 0 0 black;

}

.button2:hover {
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 2px 5px 0 0 black;
    background-color: #479bc1;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}


.button2:active {
    transform: translateY(2px) translateX(1px);
    box-shadow: 0 0 0 0 black;
    background-color: #479bc1;
    color: white;
    transition: 0.3s
}
 */


/* .middle .btn button {
    width: 150px;

    height: fit-content;
    padding: 8px;
    font-size: 25px;
    margin-top: 20px;
    border-radius: 10px;
  
    border-style: none;
} */



/* 
@media (max-width: 1440px) and (min-width: 1023px) {
    .navbar {
        flex-direction: row;
        align-items: center;
    }

    .nav_text {
        margin-left: 140px;
        gap: 5vw;
        font-size: 22px;
    }

    ul {
        margin-left: 20px;
        font-size: 35px;
    }

    .middle {
        flex-direction: row;
        align-items: center;
        margin-left: 50px;
        margin-top: 100px;
        justify-content: center;
    }

    .middle .about {
        font-size: 20px;
       
        width: 51vw;

    }

    .middle .photo {
        margin-left: 30px;
    }

    .middle .photo img {
        margin-left: 20px;
        margin-top: 0;
        
        height: auto;
        width: 325px;
    }

    .middle .upper {
        font-size: 45px;
    }
}

@media (max-width: 1023px) and (min-width: 767px) {

    .navbar {
        flex-direction: row;
        align-items: center;
    }

    .nav_text {
        margin-left: 90px;
        gap: 5vw;
        font-size: 17px;
        margin-top: 10px;
    }

    ul {
        margin-left: 20px;
        font-size: 26px;
        margin-top: 6px;
    }

    .middle {
        flex-direction: row;
        align-items: center;
        margin-left: 10px;
        margin-top: 50px;
        justify-content: center;
    }

    .middle .about {
        font-size: 17px;
     
        width: 51vw;
        margin-top: 18px;
        line-height: 25px;
    }

    .middle .upper {
        font-size: 33px;
        line-height: 45px;
    }

    .middle .photo {
        margin-left: 30px;
    }

    .middle .photo img {
        margin-left: 20px;
        margin-top: 0;
        height: auto;
        width: 31vw;
    }
} */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#navbar {
    padding: 40px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.info {
    flex: 1;
    max-width: 600px;
}

.upper {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.gretting {
    margin: 0;
}

.about {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 20px 0 30px 0;
    opacity: 0.9;
}

.btn a {
    text-decoration: none;
}

.btn a:hover {
    text-decoration: none;
}

.button2 {
    height: 20px;
    width: 150px;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    padding: 1em 2em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid black;
    box-shadow: 0 0 0 0 black;

}

.button2:hover {
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 2px 5px 0 0 black;
    background-color: #479bc1;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}


.button2:active {
    transform: translateY(2px) translateX(1px);
    box-shadow: 0 0 0 0 black;
    background-color: #479bc1;
    color: white;
    transition: 0.3s
}


.photo {
    flex-shrink: 0;
}

.photo img {
    border-radius: 50%;
    width: 350px;
    height: 350px;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 0 30px rgba(60, 184, 220, 0.6);
    transition: transform 0.3s ease;
}

.photo img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .middle {
        gap: 40px;
    }

    .upper {
        font-size: 3rem;
    }

    .about {
        font-size: 1.2rem;
    }

    .photo img {
        width: 300px;
        height: 300px;
    }
}


@media (max-width: 768px) {
    .middle {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 20px 0;
    }

    #navbar {
        min-height: auto;
    }

    .info {
        order: 2;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .photo {
        order: 1;
    }

    .upper {
        font-size: 2.5rem;
    }

    .about {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .photo img {
        width: 280px;
        height: 280px;
    }

    #navbar {
        padding: 20px 0;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .upper {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about {
        font-size: 1rem;
        line-height: 1.5;
        margin: 15px 0 25px 0;
    }

    .photo img {
        width: 220px;
        height: 220px;
        border-width: 4px;
    }

    .button2 {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .middle {
        gap: 30px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .upper {
        font-size: 1.8rem;
    }

    .about {
        font-size: 0.95rem;
    }

    .photo img {
        width: 200px;
        height: 200px;
    }

    .button2 {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .upper {
        font-size: 4rem;
    }

    .about {
        font-size: 1.4rem;
    }

    .photo img {
        width: 400px;
        height: 400px;
    }

    .middle {
        gap: 80px;
    }
}

/* Ultra Wide Screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .upper {
        font-size: 4.5rem;
    }

    .about {
        font-size: 1.5rem;
    }

    .photo img {
        width: 450px;
        height: 450px;
    }

    .middle {
        gap: 100px;
    }
}





.second {

    /* background-color: black; */
    background: linear-gradient(180deg, #c7e6f8 3.67%, #517c96 36.67%, #2a3c5c 72.1%, #101236 96.67%);
    justify-content: center;
    display: flex;
    /* height: 100vh; */
}

.heading {
    width: 300px;
    height: 75px;
    margin-top: 75px;
    background-color: #A1BFD2;
    justify-content: center;
    display: flex;
    position: absolute;
    border-radius: 50px;

    /* box-shadow: 5px 1px 37px rgb(0, 0, 0); */

    box-shadow: inset 0px 1px 9px rgb(0, 0, 0);

}

.heading p {
    font-size: 32px;
    color: #2a3c5c;

    text-align: center;
    margin: auto;
}

.second {
    background: linear-gradient(180deg, #c7e6f8 3.67%, #517c96 36.67%, #2a3c5c 72.1%, #101236 96.67%);
    justify-content: center;
    display: flex;
}

.heading {
    width: 300px;
    height: 75px;
    margin-top: 75px;
    background-color: #A1BFD2;
    justify-content: center;
    display: flex;
    position: absolute;
    border-radius: 50px;
    box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
}

.heading p {
    font-size: 32px;
    color: #2a3c5c;
    text-align: center;
    margin: auto;
}

/* .second_middle {
    margin-top: 170px;
    display: flex;
}

.second_middle .second_photo {
    width: 266px;
    height: fit-content;
    margin-top: 50px;
    background-color: #C7E6F8;
    border-radius: 30px;
    border: 3px solid #000;
    box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
}

.second_middle .second_photo img {
    width: 240px;
    margin: 13px;
    display: flex;
    justify-content: center;
}

.second_middle .second_info {
    margin-left: 48px;
    margin-top: 50px;
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    width: 818px;
    height: 592px;
    border-radius: 30px;
    margin-bottom: 90px;
}

.information {
    font-size: 24px;
    margin: 50px;
    width: 740px;
    height: 482px;
    line-height: 42px;
}

@media (max-width: 1440px) and (min-width: 1023px) {
    .second_middle {
        margin-top: 170px;
        display: flex;
    }

    .second_middle .second_photo {
        width: 248px;
        height: fit-content;
        margin-top: 50px;
        background-color: #C7E6F8;
        border-radius: 30px;
        border: 3px solid #000;
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
    }

    .second_middle .second_photo img {
        width: 220px;
        margin: 13px;
    }

    .second_middle .second_info {
        margin-left: 48px;
        margin-top: 50px;
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 660px;
        height: auto;
        border-radius: 30px;
        margin-bottom: 90px;
    }

    .information {
        font-size: 20px;
        margin: 35px;
        width: 615px;
        height: auto;
        line-height: 42px;
    }
}

@media (max-width: 1023px) and (min-width: 767px) {
    .second_middle {
        margin-top: 170px;
        display: flex;
    }

    .heading p {
        font-size: 25px;
        color: #2a3c5c;
        text-align: center;
        margin: auto;
        font-weight: 600;
    }

    .heading {
        width: 230px;
        height: 60px;
        margin-top: 75px;
        background-color: #A1BFD2;
        justify-content: center;
        display: flex;
        position: absolute;
        border-radius: 50px;
        box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
    }

    .second_middle .second_photo {
        width: 205px;
        height: fit-content;
        margin-top: 50px;
        background-color: #C7E6F8;
        border-radius: 30px;
        border: 1px solid #000;
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
    }

    .second_middle .second_photo img {
        width: 180px;
        margin: 12px;
    }

    .second_middle .second_info {
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 60vw;
        height: auto;
        border-radius: 30px;
        margin-bottom: 90px;
    }

    .information {
        font-size: 16px;
        margin: 25px;
        width: 54vw;
        height: auto;
        line-height: 37px;
    }
} */

.second {
    /* background-color: black; */
    background: linear-gradient(180deg, #c7e6f8 3.67%, #517c96 36.67%, #2a3c5c 72.1%, #101236 96.67%);
    justify-content: center;
    display: flex;
    /* height: 100vh; */
}

.heading {
    width: 300px;
    height: 75px;
    margin-top: 75px;
    background-color: #A1BFD2;
    justify-content: center;
    display: flex;
    position: absolute;
    border-radius: 50px;

    /* box-shadow: 5px 1px 37px rgb(0, 0, 0); */

    box-shadow: inset 0px 1px 9px rgb(0, 0, 0);

}

.heading p {
    font-size: 32px;
    color: #2a3c5c;

    text-align: center;
    margin: auto;
}



.second_middle {
    /* width: 357px; */
    /* height: 408px; */
    margin-top: 170px;
    display: flex;
}

.second_middle .second_photo {
    width: 266px;
    height: fit-content;
    /* height: 373.05px; */
    margin-top: 50px;
    background-color: #C7E6F8;
    border-radius: 30px;
    border: 3px solid #000;
    box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);

}

.second_middle .second_photo img {

    width: 240px;
    margin: 13px;
    display: flex;
    justify-content: center;
    /* position: absolute;
    left: 5%; */
}


.second_middle .second_info {
    margin-left: 48px;
    margin-top: 50px;
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    width: 818px;
    height: 592px;
    border-radius: 30px;
    margin-bottom: 90px;
}

.information {
    font-size: 24px;
    margin: 50px;
    width: 740px;
    height: 482px;
    line-height: 42px;

}


@media (max-width: 1440px) and (min-width: 1023px) {

    .second_middle {
        /* width: 357px; */
        /* height: 408px; */
        margin-top: 170px;
        display: flex;
    }

    .second_middle .second_photo {
        width: 248px;
        height: fit-content;
        margin-top: 50px;
        background-color: #C7E6F8;
        border-radius: 30px;
        border: 3px solid #000;
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);

    }

    .second_middle .second_photo img {

        width: 220px;
        margin: 13px;
        /* position: absolute;
    left: 5%; */
    }


    .second_middle .second_info {
        margin-left: 48px;
        margin-top: 50px;
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 660px;
        /* height: 592px; */
        height: auto;
        border-radius: 30px;
        margin-bottom: 90px;
    }

    .information {
        font-size: 20px;
        margin: 35px;
        width: 615px;
        /* height: 482px; */
        height: auto;
        line-height: 42px;

    }
}

@media (max-width: 1023px) and (min-width: 767px) {
    .second_middle {
        /* width: 357px; */
        /* height: 408px; */
        margin-top: 170px;
        display: flex;
    }

    .heading p {
        font-size: 25px;
        color: #2a3c5c;
        text-align: center;
        margin: auto;
        font-weight: 600;
    }

    .heading {
        width: 230px;
        height: 60px;
        margin-top: 75px;
        background-color: #A1BFD2;
        justify-content: center;
        display: flex;
        position: absolute;
        border-radius: 50px;
        /* box-shadow: 5px 1px 37px rgb(0, 0, 0); */
        box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
    }

    .second_middle .second_photo {
        width: 205px;
        /* width: 26vw; */
        height: fit-content;
        margin-top: 50px;
        background-color: #C7E6F8;
        border-radius: 30px;
        border: 1px solid #000;
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);

    }

    .second_middle .second_photo img {

        width: 180px;
        /* width: 23vw; */
        margin: 12px;
        /* position: absolute;
        left: 5%; */
    }


    .second_middle .second_info {
        /* margin-left: 48px;
        margin-top: 50px; */
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        /* width: 550px; */
        width: 60vw;
        /* height: 592px; */
        height: auto;
        border-radius: 30px;
        margin-bottom: 90px;
    }

    .information {
        font-size: 16px;
        margin: 25px;
        /* width: 512px; */
        width: 54vw;
        /* height: 482px; */
        height: auto;
        line-height: 37px;

    }
}

/* Mobile devices (max-width: 767px) */
@media (max-width: 767px) {
    .second {
        padding: 0 15px;
    }

    .heading {
        width: 200px;
        height: 50px;
        margin-top: 50px;
        background-color: #A1BFD2;
        justify-content: center;
        display: flex;
        position: absolute;
        border-radius: 50px;
        box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
    }

    .heading p {
        font-size: 20px;
        color: #2a3c5c;
        text-align: center;
        margin: auto;
        font-weight: 600;
    }

    .second_middle {
        margin-top: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .second_middle .second_photo {
        width: 150px;
        height: fit-content;
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: #C7E6F8;
        border-radius: 20px;
        border: 2px solid #000;
        box-shadow: 5px 3px 0 2px rgba(0, 0, 0, 1);
    }

    .second_middle .second_photo img {
        width: 130px;
        margin: 10px;
    }

    .second_middle .second_info {
        margin-left: 0;
        margin-top: 0;
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 90vw;
        max-width: 350px;
        height: auto;
        border-radius: 20px;
        margin-bottom: 50px;
    }

    .information {
        font-size: 14px;
        margin: 20px;
        width: calc(100% - 40px);
        height: auto;
        line-height: 24px;
    }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
    .second {
        padding: 0 10px;
    }

    .heading {
        width: 180px;
        height: 45px;
        margin-top: 40px;
    }

    .heading p {
        font-size: 18px;
    }

    .second_middle {
        margin-top: 110px;
    }

    .second_middle .second_photo {
        width: 130px;
        border-radius: 15px;
        box-shadow: 4px 2px 0 2px rgba(0, 0, 0, 1);
    }

    .second_middle .second_photo img {
        width: 110px;
        margin: 10px;
    }

    .second_middle .second_info {
        width: 95vw;
        max-width: 320px;
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .information {
        font-size: 13px;
        margin: 15px;
        width: calc(100% - 30px);
        line-height: 22px;
    }
}

/* Very small devices (max-width: 320px) */
@media (max-width: 320px) {
    .heading {
        width: 160px;
        height: 40px;
        margin-top: 30px;
    }

    .heading p {
        font-size: 16px;
    }

    .second_middle {
        margin-top: 90px;
    }

    .second_middle .second_photo {
        width: 110px;
    }

    .second_middle .second_photo img {
        width: 90px;
        margin: 10px;
    }

    .second_middle .second_info {
        width: 98vw;
        max-width: 280px;
    }

    .information {
        font-size: 12px;
        margin: 12px;
        width: calc(100% - 24px);
        line-height: 20px;
    }
}

/* .third {
    background: linear-gradient(180deg,
            #101236 2.1%,
            #2a3c5c 32.6%,
            #517c96 69.1%,
            #c7e6f8);
    height: 700px;
    display: flex;
    justify-content: center;
}

.third_heading {
    width: 300px;
    height: 75px;
    margin-top: 80px;
    background-color: #A1BFD2;
    justify-content: center;
    display: flex;
    position: absolute;
    z-index: 1;
    box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
    border-radius: 50px;
}

.third_heading p {
    font-size: 32px;
    color: #2a3c5c;
    text-align: center;
    margin: auto;
    font-weight: 600;
}

.third .services_card {
    margin-top: 260px;
    position: absolute;
    display: flex;
    gap: 30px;
}

.third .services_card .card1 {
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    width: 400px;
    height: 395px;
    border-radius: 30px;
}

.third .services_card .card1 img {
    width: 120px;
    justify-content: center;
    display: flex;
    text-align: center;
    margin: auto;
    margin-top: 20px;
}

.third .services_card .card1 .card1_text {
    width: 350px;
    height: 190px;
    margin: 25px 24px 29px 24px;
    border-radius: 18px;
}

.third .services_card .card1 .card1_text p {
    padding: 20px;
    line-height: 23px;
}

.third .services_card .card1 .card1_text h2 {
    text-align: center;
    font-size: 30px;
}

.third .services_card .card2 {
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    width: 400px;
    height: 395px;
    border-radius: 30px;
}

.third .services_card .card2 img {
    width: 130px;
    justify-content: center;
    display: flex;
    text-align: center;
    margin: auto;
    margin-top: 30px;
}

.third .services_card .card2 .card2_text {
    width: 350px;
    height: 190px;
    margin: 10px 24px 29px 24px;
    border-radius: 18px;
}

.third .services_card .card2 .card2_text h2 {
    text-align: center;
    font-size: 30px;
}

.third .services_card .card2 .card2_text p {
    padding: 20px;
    line-height: 23px;
}

.third .services_card .card3 {
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    width: 400px;
    height: 395px;
    border-radius: 30px;
}

.third .services_card .card3 img {
    height: 120px;
    width: 130px;
    justify-content: center;
    display: flex;
    text-align: center;
    margin: auto;
    margin-top: 30px;
}

.third .services_card .card3 .card3_text {
    width: 350px;
    height: 190px;
    margin: 20px 24px 29px 24px;
    border-radius: 18px;
}

.third .services_card .card3 .card3_text h2 {
    text-align: center;
    font-size: 30px;
}

.third .services_card .card3 .card3_text p {
    padding: 20px;
    line-height: 23px;
}

@media (max-width: 1440px) and (min-width: 1023px) {
    .third .services_card {
        margin-top: 230px;
        position: absolute;
        display: flex;
        gap: 30px;
    }

    .third .services_card .card1 {
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 300px;
        height: auto;
        border-radius: 30px;
    }

    .third .services_card .card1 img {
        width: 100px;
        justify-content: center;
        display: flex;
        text-align: center;
        margin: auto;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .third .services_card .card1 .card1_text {
        width: 300px;
        height: auto;
        margin: auto;
        border-radius: 18px;
    }

    .third .services_card .card1 .card1_text p {
        padding: 20px;
        line-height: 23px;
    }

    .third .services_card .card1 .card1_text h2 {
        text-align: center;
        font-size: 30px;
    }

    .third .services_card .card2 {
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 300px;
        height: auto;
        border-radius: 30px;
    }

    .third .services_card .card2 img {
        width: 110px;
        justify-content: center;
        display: flex;
        text-align: center;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .third .services_card .card2 .card2_text {
        width: 300px;
        height: auto;
        margin: auto;
        border-radius: 18px;
    }

    .third .services_card .card2 .card2_text h2 {
        text-align: center;
        font-size: 30px;
    }

    .third .services_card .card2 .card2_text p {
        padding: 20px;
        line-height: 23px;
    }

    .third .services_card .card3 {
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 300px;
        height: auto;
        border-radius: 30px;
    }

    .third .services_card .card3 img {
        height: auto;
        width: 105px;
        justify-content: center;
        display: flex;
        text-align: center;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .third .services_card .card3 .card3_text {
        width: 300px;
        height: auto;
        margin: auto;
        border-radius: 18px;
    }

    .third .services_card .card3 .card3_text h2 {
        text-align: center;
        font-size: 30px;
    }

    .third .services_card .card3 .card3_text p {
        padding: 20px;
        line-height: 23px;
    }
}

@media (max-width: 1023px) and (min-width: 767px) {
    .third {
        background: linear-gradient(180deg, #101236 2.1%, #2a3c5c 32.6%, #517c96 69.1%, #c7e6f8);
        height: 525px;
        display: flex;
        justify-content: center;
    }

    .third_heading {
        width: 230px;
        height: 60px;
        margin-top: 80px;
        background-color: #A1BFD2;
        justify-content: center;
        display: flex;
        position: absolute;
        z-index: 1;
        box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
        border-radius: 50px;
    }

    .third_heading p {
        font-size: 26px;
        color: #2A3C5C;
        text-align: center;
        margin: auto;
        font-weight: 600;
    }

    .third .services_card {
        margin-top: 210px;
        position: absolute;
        display: flex;
        gap: 17px;
        margin-right: 5px;
    }

    .third .services_card .card1 {
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 235px;
        height: auto;
        border-radius: 30px;
    }

    .third .services_card .card1 img {
        width: 75px;
        justify-content: center;
        display: flex;
        text-align: center;
        margin: auto;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .third .services_card .card1 .card1_text {
        width: 250px;
        height: auto;
        margin: auto;
        border-radius: 18px;
    }

    .third .services_card .card1 .card1_text p {
        padding: 20px;
        line-height: 17px;
        font-size: 14px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .third .services_card .card1 .card1_text h2 {
        text-align: center;
        font-size: 24px;
    }

    .third .services_card .card2 {
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 235px;
        height: auto;
        border-radius: 30px;
    }

    .third .services_card .card2 img {
        width: 75px;
        justify-content: center;
        display: flex;
        text-align: center;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .third .services_card .card2 .card2_text {
        width: 250px;
        height: auto;
        margin: auto;
        border-radius: 18px;
    }

    .third .services_card .card2 .card2_text h2 {
        text-align: center;
        font-size: 24px;
    }

    .third .services_card .card2 .card2_text p {
        padding: 20px;
        line-height: 17px;
        font-size: 14px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .third .services_card .card3 {
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        width: 235px;
        height: auto;
        border-radius: 30px;
    }

    .third .services_card .card3 img {
        height: auto;
        width: 70px;
        justify-content: center;
        display: flex;
        text-align: center;
        margin: auto;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .third .services_card .card3 .card3_text {
        width: 250px;
        height: auto;
        margin: auto;
        border-radius: 18px;
    }

    .third .services_card .card3 .card3_text h2 {
        text-align: center;
        font-size: 24px;
    }

    .third .services_card .card3 .card3_text p {
        padding: 20px;
        line-height: 17px;
        font-size: 14px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 10px;
        padding-top : 10px;
    }
} */

   .third {
       background: linear-gradient(180deg,
               #101236 2.1%,
               #2a3c5c 32.6%,
               #517c96 69.1%,
               #c7e6f8);
       min-height: 700px;
       display: flex;
       justify-content: center;
       position: relative;
       padding: 20px;
   }

   .third_heading {
       width: 300px;
       height: 75px;
       margin-top: 80px;
       background-color: #A1BFD2;
       justify-content: center;
       display: flex;
       position: absolute;
       z-index: 1;
       box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
       border-radius: 50px;
   }

   .third_heading p {
       font-size: 32px;
       color: #2a3c5c;
       text-align: center;
       margin: auto;
       font-weight: 600;
   }

   .services_card {
       margin-top: 260px;
       position: absolute;
       display: flex;
       gap: 30px;
       flex-wrap: wrap;
       justify-content: center;
   }

   .services_card .card1,
   .services_card .card2,
   .services_card .card3 {
       background: linear-gradient(145deg, #239BCF 0%, #000 118%);
       width: 400px;
       height: 395px;
       border-radius: 30px;
       display: flex;
       flex-direction: column;
       align-items: center;
   }

   .services_card .card1 img,
   .services_card .card2 img,
   .services_card .card3 img {
       width: 120px;
       height: auto;
       margin-top: 20px;
       margin-bottom: 20px;
   }

   .card1_text,
   .card2_text,
   .card3_text {
       width: 350px;
       height: auto;
       margin: 0 24px 29px 24px;
       border-radius: 18px;
       flex-grow: 1;
       display: flex;
       flex-direction: column;
       justify-content: flex-start;
   }

   .card1_text h2,
   .card2_text h2,
   .card3_text h2 {
       text-align: center;
       font-size: 30px;
       margin-bottom: 10px;
   }

   .card1_text p,
   .card2_text p,
   .card3_text p {
       padding: 20px;
       line-height: 23px;
       text-align: justify;
   }

   /* Desktop and Large Screens */
   @media (max-width: 1440px) and (min-width: 1024px) {
       .services_card {
           margin-top: 230px;
           gap: 30px;
       }

       .services_card .card1,
       .services_card .card2,
       .services_card .card3 {
           width: 300px;
           height: auto;
           min-height: 380px;
       }

       .services_card .card1 img,
       .services_card .card2 img,
       .services_card .card3 img {
           width: 100px;
           margin-top: 25px;
           margin-bottom: 15px;
       }

       .card1_text,
       .card2_text,
       .card3_text {
           width: 280px;
           margin: 0 10px 20px 10px;
       }

       .card1_text p,
       .card2_text p,
       .card3_text p {
           padding: 15px;
           line-height: 22px;
       }
   }

   /* Tablet */
   @media (max-width: 1023px) and (min-width: 768px) {
       .third {
           min-height: 600px;
       }

       .third_heading {
           width: 230px;
           height: 60px;
           margin-top: 60px;
       }

       .third_heading p {
           font-size: 26px;
       }

       .services_card {
           margin-top: 180px;
           gap: 17px;
       }

       .services_card .card1,
       .services_card .card2,
       .services_card .card3 {
           width: 235px;
           height: auto;
           min-height: 320px;
       }

       .services_card .card1 img,
       .services_card .card2 img,
       .services_card .card3 img {
           width: 75px;
           margin-top: 20px;
           margin-bottom: 15px;
       }

       .card1_text,
       .card2_text,
       .card3_text {
           width: 215px;
           margin: 0 10px 15px 10px;
       }

       .card1_text h2,
       .card2_text h2,
       .card3_text h2 {
           font-size: 24px;
       }

       .card1_text p,
       .card2_text p,
       .card3_text p {
           padding: 15px 10px;
           line-height: 18px;
           font-size: 14px;
       }
   }

   /* Mobile Large (480px - 767px) */
   @media (max-width: 767px) and (min-width: 481px) {
       .third {
           min-height: 800px;
           padding: 15px;
       }

       .third_heading {
           width: 200px;
           height: 55px;
           margin-top: 40px;
       }

       .third_heading p {
           font-size: 22px;
       }

       .services_card {
           margin-top: 140px;
           flex-direction: column;
           gap: 20px;
           align-items: center;
       }

       .services_card .card1,
       .services_card .card2,
       .services_card .card3 {
           width: 280px;
           height: auto;
           min-height: 280px;
       }

       .services_card .card1 img,
       .services_card .card2 img,
       .services_card .card3 img {
           width: 65px;
           margin-top: 15px;
           margin-bottom: 10px;
       }

       .card1_text,
       .card2_text,
       .card3_text {
           width: 260px;
           margin: 0 10px 15px 10px;
       }

       .card1_text h2,
       .card2_text h2,
       .card3_text h2 {
           font-size: 22px;
           margin-bottom: 8px;
       }

       .card1_text p,
       .card2_text p,
       .card3_text p {
           padding: 12px 8px;
           line-height: 16px;
           font-size: 13px;
       }
   }

   /* Mobile Small (320px - 480px) */
   @media (max-width: 480px) {
       .third {
           min-height: 850px;
           padding: 10px;
       }

       .third_heading {
           width: 180px;
           height: 50px;
           margin-top: 30px;
       }

       .third_heading p {
           font-size: 20px;
       }

       .services_card {
           margin-top: 120px;
           flex-direction: column;
           gap: 15px;
           align-items: center;
       }

       .services_card .card1,
       .services_card .card2,
       .services_card .card3 {
           width: 250px;
           height: auto;
           min-height: 260px;
       }

       .services_card .card1 img,
       .services_card .card2 img,
       .services_card .card3 img {
           width: 55px;
           margin-top: 12px;
           margin-bottom: 8px;
       }

       .card1_text,
       .card2_text,
       .card3_text {
           width: 230px;
           margin: 0 10px 12px 10px;
       }

       .card1_text h2,
       .card2_text h2,
       .card3_text h2 {
           font-size: 20px;
           margin-bottom: 5px;
       }

       .card1_text p,
       .card2_text p,
       .card3_text p {
           padding: 10px 6px;
           line-height: 15px;
           font-size: 12px;
       }
   }

   /* Extra Small Mobile (below 320px) */
   @media (max-width: 319px) {
       .third {
           min-height: 900px;
           padding: 8px;
       }

       .third_heading {
           width: 160px;
           height: 45px;
           margin-top: 25px;
       }

       .third_heading p {
           font-size: 18px;
       }

       .services_card {
           margin-top: 100px;
           flex-direction: column;
           gap: 12px;
           align-items: center;
       }

       .services_card .card1,
       .services_card .card2,
       .services_card .card3 {
           width: 220px;
           height: auto;
           min-height: 240px;
       }

       .services_card .card1 img,
       .services_card .card2 img,
       .services_card .card3 img {
           width: 50px;
           margin-top: 10px;
           margin-bottom: 6px;
       }

       .card1_text,
       .card2_text,
       .card3_text {
           width: 200px;
           margin: 0 10px 10px 10px;
       }

       .card1_text h2,
       .card2_text h2,
       .card3_text h2 {
           font-size: 18px;
           margin-bottom: 4px;
       }

       .card1_text p,
       .card2_text p,
       .card3_text p {
           padding: 8px 5px;
           line-height: 14px;
           font-size: 11px;
       }
   }

.fourth {
    background: linear-gradient(180deg, #c7e6f8 3.67%, #517c96 36.67%, #2a3c5c 72.1%, #101236 96.67%);
    justify-content: center;
    display: flex;
    height: 940px;
}


.fourth_heading {
    width: 300px;
    height: 75px;
    margin-top: 78px;
    background-color: #A1BFD2;
    justify-content: center;
    display: flex;
    position: absolute;
    z-index: 1;
    box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
    border-radius: 50px;
}

.fourth_heading p {
    font-size: 32px;
    color: #2a3c5c;
    text-align: center;
    margin: auto;
    font-weight: 600;
}

.fourth .skills {
    margin-top: 200px;
}

/* first set  */

.fourth .skills .first_set .head_ing {
    text-align: center;
    color: #fff;
    font-size: 28px;
    justify-content: center;
    display: flex;
    /* padding-top: 4px; */
    padding: 8px;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 5px 2px rgba(0, 0, 0, 0.25);
}

.fourth .skills .first_set_heading {
    position: absolute;
    /* background-color: #239BCF; */
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    border-radius: 20px;
    left: 8%;
    /* height: 45px; */
    height: auto;
    width: 300px
}

.fourth .skills .first_set_skills {
    display: flex;
    gap: 80px;
    left: 8.5%;
    position: absolute;
    margin-top: 80px;
}

.html1,
.css1,
.sql1,
.figma1,
.clanguage1,
.java1,
.python1,
.github1 {
    height: 130px;
    width: 130px;
    /* background: linear-gradient(145deg, #239BCF 88%, #000 28%); */
    background: linear-gradient(145deg, #2ab7f5 0%, #000 118%);
    /* background-color: #239BCF; */
    border-radius: 50%;
}

/* .fourth .skills .html1 .html_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

.html_img,
.css_img,
.js_img,
.figma_img,
.sql_img,
.clanguage_img,
.java_img,
.python_img,
.github_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}


/* .fourth .skills .html1 .html_text {
    font-size: 23px;
    justify-content: center;
    display: flex;
    margin-top: 15px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

.html_text,
.css_text,
.figma_text,
.sql_text,
.java_text,
.python_text,
.github_text {
    font-size: 23px;
    justify-content: center;
    display: flex;
    margin-top: 15px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.html,
.css,
.js,
.figma,
.sql,
.clanguage,
.java,
.python,
.git {
    height: 65px;
    width: 65px;
    padding-top: 15px;
}

/* .fourth .skills .html {
    height: 65px;
    width: 65px;
    padding-top: 15px;
} */



/* .fourth .skills .css1 {
    height: 130px;
    width: 130px;
 
    background: linear-gradient(145deg, #2ab7f5 0%, #000 118%);
  
    border-radius: 50%;
} */

/* .fourth .skills .css1 .css_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .css1 .css_text {
    font-size: 23px;
    justify-content: center;
    display: flex;
    margin-top: 15px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .css1 img {
    height: 65px;
    width: 65px;
    padding-top: 15px;
} */

.js1 {
    /* height: 135px; */
    height: auto;
    width: 140px;

    background: linear-gradient(145deg, #2ab7f5 0%, #000 118%);

    border-radius: 50%;
}




/* .fourth .skills .js1 .js_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

.js_text,
.clanguage_text {
    font-size: 20px;
    justify-content: center;
    display: flex;
    margin-top: 13.5px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

/* .fourth .skills .js1 img {
    height: 65px;
    width: 65px;
    padding-top: 15px;
} */


/* .fourth .skills .figma1 {
    height: 135px;
    width: 135px;
 
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);

    border-radius: 50%;
} */

/* .fourth .skills .figma1 .figma_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .figma1 .figma_text {
    font-size: 20px;
    justify-content: center;
    display: flex;
    margin-top: 15px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .figma1 img {
    height: 65px;
    width: 65px;
    padding-top: 15px;
} */


/* .fourth .skills .sql1 .sql_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .sql1 .sql_text {
    font-size: 23px;
    justify-content: center;
    display: flex;
    margin-top: 15px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .sql1 img {
    height: 65px;
    width: 65px;
    padding-top: 15px;
} */


/* second set  */

.fourth .skills .second_set .head_ing {
    text-align: center;
    color: #fff;
    font-size: 28px;
    justify-content: center;
    display: flex;
    /* padding-top: 4px; */
    padding: 8px;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 5px 2px rgba(0, 0, 0, 0.25);
}

.fourth .skills .second_set_heading {
    position: absolute;
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    border-radius: 20px;
    /* height: 45px; */
    height: auto;
    width: 400px;
    left: 8%;
    /* top: 45%; */
    margin-top: 270px;
}


.fourth .skills .second_set_skills {
    display: flex;
    gap: 80px;
    left: 8.5%;
    position: absolute;
    margin-top: 350px;

    /* top: 53%; */
}



/* .fourth .skills .clanguage1 .clanguage_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .clanguage1 .clanguage_text {
    font-size: 21px;
    justify-content: center;
    display: flex;
    margin-top: 11px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */


/* .fourth .skills .java1 .java_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .java1 .java_text {
    font-size: 23px;
    justify-content: center;
    display: flex;
    margin-top: 11px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */



/* .fourth .skills .python1 .python_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .python1 .python_text {
    font-size: 23px;
    justify-content: center;
    display: flex;
    margin-top: 11px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */



/* third set */

.fourth .skills .third_set .head_ing {
    text-align: center;
    color: #fff;
    font-size: 28px;
    justify-content: center;
    display: flex;
    padding: 8px;
    /* padding-top: 4px; */
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 5px 2px rgba(0, 0, 0, 0.25);
}

.fourth .skills .third_set_heading {
    position: absolute;
    background: linear-gradient(145deg, #239BCF 0%, #000 118%);
    border-radius: 20px;
    /* height: 45px; */
    height: auto;
    width: 400px;
    left: 8%;
    /* top: 45%; */
    margin-top: 530px;
}

.fourth .skills .third_set_skills {
    display: flex;
    gap: 80px;
    left: 8.5%;
    position: absolute;
    margin-top: 600px;

    /* top: 53%; */
}

/* .fourth .skills .github1 .github_img {
    justify-content: center;
    display: flex;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .github1 .github_text {
    font-size: 22px;
    justify-content: center;
    display: flex;
    margin-top: 11px;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
} */

/* .fourth .skills .github1 img {
    height: 65px;
    width: 65px;
    padding-top: 15px;
} */

@media (max-width: 1440px) and (min-width: 1023px) {

    .fourth .skills .first_set .head_ing {
        text-align: center;
        color: #fff;
        font-size: 24px;
        justify-content: center;
        display: flex;
        padding-top: 8px;
        text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 5px 2px rgba(0, 0, 0, 0.25);
    }

    .fourth .skills .first_set_heading {
        position: absolute;
        /* background-color: #239BCF; */
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        border-radius: 20px;
        left: 8%;
        height: 45px;
        width: 300px
    }

    .fourth .skills .first_set_skills {
        display: flex;
        gap: 55px;
        left: 8.5%;
        position: absolute;
        margin-top: 80px;
    }

    .fourth .skills .second_set .head_ing {
        text-align: center;
        color: #fff;
        font-size: 24px;
        justify-content: center;
        display: flex;
        padding-top: 8px;
        text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 5px 2px rgba(0, 0, 0, 0.25);
    }

    .fourth .skills .second_set_heading {
        position: absolute;
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        border-radius: 20px;
        height: 45px;
        width: 360px;
        left: 8%;
        /* top: 45%; */
        margin-top: 270px;
    }

    .fourth .skills .second_set_skills {
        display: flex;
        gap: 55px;
        left: 8.5%;
        position: absolute;
        margin-top: 350px;

        /* top: 53%; */
    }

    .fourth .skills .third_set .head_ing {
        text-align: center;
        color: #fff;
        font-size: 24px;
        justify-content: center;
        display: flex;
        padding-top: 8px;
        text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 5px 2px rgba(0, 0, 0, 0.25);
    }


    .fourth .skills .third_set_skills {
        display: flex;
        gap: 55px;
        left: 8.5%;
        position: absolute;
        margin-top: 600px;

        /* top: 53%; */
    }

    .fourth .skills .third_set_heading {
        position: absolute;
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        border-radius: 20px;
        height: 45px;
        width: 360px;
        left: 8%;
        /* top: 45%; */
        margin-top: 530px;
    }
}

@media (max-width: 1023px) and (min-width: 767px) {
    .fourth {
        background: linear-gradient(180deg, #c7e6f8 3.67%, #517c96 36.67%, #2a3c5c 72.1%, #101236 96.67%);
        justify-content: center;
        display: flex;
        height: 840px;
    }

    .fourth_heading {
        width: 230PX;
        height: 60PX;
        margin-top: 78px;
        background-color: #A1BFD2;
        justify-content: center;
        display: flex;
        position: absolute;
        z-index: 1;
        box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
        border-radius: 50px;
    }

    .fourth_heading p {
        font-size: 25px;
        color: #2a3c5c;
        text-align: center;
        margin: auto;
        font-weight: 600;
    }

    .fourth .skills .first_set_skills {
        display: flex;
        gap: 4vw;
        left: 7.5%;
        position: absolute;
        margin-top: 80px;
    }

    .fourth .skills .first_set_heading {
        position: absolute;
        /* background-color: #239BCF; */
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        border-radius: 20px;
        left: 8%;
        /* height: 45px; */
        height: auto;
        width: 255px;
    }

    .fourth .skills .second_set_skills {
        display: flex;
        gap: 4vw;
        left: 7.5%;
        position: absolute;
        margin-top: 290px;
        /* top: 53%; */
    }

    .fourth .skills .second_set_heading {
        position: absolute;
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        border-radius: 20px;
        /* height: 45px; */
        height: auto;
        width: 325px;
        left: 8%;
        /* top: 45%; */
        margin-top: 215px;
    }

    .fourth .skills .third_set_skills {
        display: flex;
        gap: 4vw;
        left: 7.5%;
        position: absolute;
        margin-top: 510px;
    }

    .fourth .skills .third_set_heading {
        position: absolute;
        background: linear-gradient(145deg, #239BCF 0%, #000 118%);
        border-radius: 20px;
        /* height: 45px; */
        height: auto;
        width: 325px;
        left: 8%;
        /* top: 45%; */
        margin-top: 430px;
    }


    .html,
    .css,
    .js,
    .figma,
    .sql,
    .clanguage,
    .java,
    .python,
    .git {
        /* height: 65px; */
        height: auto;
        /* width: 65px; */
        width: 45px;
        padding-top: 7px;
    }

    .html1,
    .css1,
    .sql1,
    .figma1,
    .clanguage1,
    .java1,
    .python1,
    .github1 {
        /* height: 130px; */
        height: auto;
        width: 75px;
        padding: 6px;
        /* background: linear-gradient(145deg, #239BCF 88%, #000 28%); */
        background: linear-gradient(145deg, #2ab7f5 0%, #000 118%);
        /* background-color: #239BCF; */
        border-radius: 50%;
    }

    .js1 {
        padding: 7px;
        height: auto;
        width: 80px;
        background: linear-gradient(145deg, #2ab7f5 0%, #000 118%);
        border-radius: 50%;
    }

    .js_text,
    .clanguage_text {
        font-size: 20px;
        justify-content: center;
        display: flex;
        margin-top: 7.5px;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    }

    .html_text,
    .css_text,
    .figma_text,
    .sql_text,
    .java_text,
    .python_text,
    .github_text {
        font-size: 14px;
        justify-content: center;
        display: flex;
        margin-top: 8px;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    }

    .js_text,
    .clanguage_text {
        font-size: 14px;
        justify-content: center;
        display: flex;
        margin-top: 7.5px;
        filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    }

    .fourth .skills .first_set .head_ing,
    .fourth .skills .second_set .head_ing,
    .fourth .skills .third_set .head_ing {
        text-align: center;
        color: #fff;
        font-size: 23px;
        justify-content: center;
        display: flex;
        /* padding-top: 4px; */
        padding: 8px;
        text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25), 0 5px 2px rgba(0, 0, 0, 0.25);
    }
}





/* fifth */

.fifth {
    background: linear-gradient(180deg,
            #101236 2.1%,
            #2a3c5c 32.6%,
            #517c96 69.1%,
            #c7e6f8);
    justify-content: center;
    display: flex;
    height: 1300px;
}


.fifth_heading {
    width: 300px;
    height: 75px;
    margin-top: 80px;
    background-color: #A1BFD2;
    justify-content: center;
    display: flex;
    position: absolute;
    z-index: 1;
    box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
    border-radius: 50px;
}

.fifth_heading p {
    font-size: 32px;
    color: #2a3c5c;
    text-align: center;
    margin: auto;
}

/* project 1  */
.fifth .projects {
    margin-top: 40px;
}

.fifth .projects .project1_half {
    margin-top: 40px;
}

.fifth .projects .project1 {
    height: fit-content;
    width: 1200px;
    display: flex;

    background: linear-gradient(145deg, #2bbfff 0%, #1d1b1b 132%);
    position: absolute;
    left: 10%;
    margin-top: 180px;
    border-radius: 14px;
    padding-bottom: 50px;

    /* box-shadow: 9px 8px 0 5px rgba(0, 0, 0, 1); */
    box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
    border: 2px solid black;
}

.fifth .projects .project1 .project1_img {
    width: 580px;
    height: 320px;
    /* background-color: #101236; */
    border-radius: 10px;
    margin-left: 50px;
    margin-top: 53px;

}

.fifth .projects .project1 .project1_img img {
    width: 580px;
    height: 320px;
    border-radius: 10px;
}

.fifth .projects .project1 .project1_heading {

    margin-top: 20px;
    margin-left: 35px;
    font-size: 36px;
}

.fifth .projects .project1 .project1_about {
    margin-top: 10px;
    margin-left: 35px;
    margin-right: 23px;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
}

.fifth .projects .project1 .project1_bottom {
    margin-top: 5px;
    margin-left: 35px;
    display: flex;
    gap: 70px;
}

.fifth .projects .project1 .project1_bottom .visit {
    margin-top: 10px;
}

/* .fifth .projects .project1 .project1_bottom button {

    justify-content: center;
    display: flex;
    align-items: center;
    height: 44px;
    width: 160px;
    color: #000;
    border-radius: 8px;
    font-size: 18px;
    border: none;

}

.fifth .projects .project1 .project1_bottom button:hover {
    cursor: pointer;
    background-color: #479bc1;
    color: white;
    transition: 0.3s;
}  */

.project1_bottom a {
    text-decoration: none;
}

.project1_bottom a:active {
    text-decoration: none;
}

.project1_bottom a:hover {
    text-decoration: none;
}

.project1_bottom a:active {
    text-decoration: none;
}

.button1 {
    height: 20px;
    width: 165px;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    margin: auto;
    /* margin-top: 15px; */
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    padding: 1em 2em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 1px solid black;
    box-shadow: 0 0 0 0 black;

}

.button1:hover {
    transform: translateY(-4px) translateX(-2px);
    box-shadow: 2px 5px 0 0 black;
    background-color: #479bc1;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}


.button1:active {
    transform: translateY(2px) translateX(1px);
    box-shadow: 0 0 0 0 black;
    background-color: #479bc1;
    color: white;
    transition: 0.3s
}


.fifth .projects .project1 .project1_bottom img {
    height: 50px;
    width: 50px;
    /* margin-top: 5px; */
    position: absolute;
    /* right: 10%; */
}


.fifth .projects .projects_middle {
    margin-top: 680px;
    display: flex;
    left: 10%;
    position: absolute;
}


/* project 2  */
.fifth .projects .project2 {
    /* height: 475px; */
    height: fit-content;
    width: 560px;
    /* background: #239BCF; */
    background: linear-gradient(200deg, #2bbfff 0%, #1d1b1b 132%);
    position: absolute;
    padding-bottom: 30px;
    /* margin-top: 180px; */
    border-radius: 14px;
    /* box-shadow: 9px 7.5px 0 7px rgba(0, 0, 0, 1); */
    /* box-shadow: 9px 8px 0 5px rgba(0, 0, 0, 1); */
    box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
    border: 2px solid black;
}

.fifth .projects .project2 .project2_img {
    width: 500px;
    height: 270px;
    /* background-color: #101236; */
    border-radius: 10px;
    margin-left: 30px;
    margin-top: 30px;

}

.fifth .projects .project2 .project2_img img {
    width: 500px;
    height: 270px;
    border-radius: 10px;
}

.fifth .projects .project2 .project2_heading {

    margin-top: 20px;
    margin-left: 35px;
    font-size: 20px;
}

.fifth .projects .project2 .project2_about {
    margin-top: 8px;
    margin-left: 35px;
    margin-right: 23px;
    line-height: 20px;
}

.fifth .projects .project2 .project2_bottom {
    margin-top: 5px;
    margin-left: 35px;
    display: flex;
}

.fifth .projects .project2 .project2_bottom .visit {
    margin-top: 10px;
}

.fifth .projects .project2 .project2_bottom img {
    height: 40px;
    width: 40px;
    position: absolute;
    right: 5%;
}

/* project 3  */

.fifth .projects .project3 {
    /* height: 475px; */
    height: fit-content;
    width: 560px;
    /* background: #239BCF; */
    background: linear-gradient(200deg, #2bbfff 0%, #1d1b1b 132%);
    position: absolute;
    /* left: 54%; */
    /* margin-top: 180px; */
    margin-left: 640px;
    padding-bottom: 30px;
    border-radius: 14px;
    /* box-shadow: 9px 7.5px 0 7px rgba(0, 0, 0, 1); */
    /* box-shadow: 9px 8px 0 5px rgba(0, 0, 0, 1); */
    box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
    border: 2px solid black;
}

.fifth .projects .project3 .project3_img {
    width: 500px;
    height: 270px;
    /* background-color: #101236; */
    border-radius: 10px;
    margin-left: 30px;
    margin-top: 30px;

}

.fifth .projects .project3 .project3_img img {
    width: 500px;
    height: 270px;
    border-radius: 10px;
}

.fifth .projects .project3 .project3_heading {

    margin-top: 20px;
    margin-left: 35px;
    font-size: 20px;
}

.fifth .projects .project3 .project3_about {
    margin-top: 8px;
    margin-left: 35px;
    margin-right: 23px;
    line-height: 20px;
}

.fifth .projects .project3 .project3_bottom {
    margin-top: 5px;
    margin-left: 35px;
    display: flex;
}

.fifth .projects .project3 .project3_bottom .visit {
    margin-top: 10px;
}

.fifth .projects .project3 .project3_bottom img {
    height: 40px;
    width: 40px;
    position: absolute;
    right: 5%;
}


@media (max-width: 1440px) and (min-width: 1023px) {

    .fifth .projects .project1 {
        /* height: 420px; */
        height: fit-content;
        /* width: 1200px; */
        width: 85vw;
        display: flex;
        padding-bottom: 15px;

        background: linear-gradient(145deg, #2bbfff 0%, #1d1b1b 132%);
        position: absolute;
        left: 8%;
        margin-top: 180px;
        border-radius: 14px;

        /* box-shadow: 9px 8px 0 5px rgba(0, 0, 0, 1); */
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
        border: 2px solid black;
    }

    .fifth .projects .project1 .project1_heading {

        margin-top: 20px;
        margin-left: 35px;
        font-size: 30px;
    }

    .fifth .projects .project1 .project1_img img {
        /* width: 580px; */
        width: 38vw;
        /* height: 320px; */
        height: auto;
        border-radius: 10px;
    }

    .fifth .projects .project1 .project1_img {

        border-radius: 10px;
        margin-left: 50px;
        margin-top: 53px;
    }

    .fifth .projects .project1_half {
        /* margin-top: 30px; */
        margin: auto;
    }

    .fifth .projects .project1 .project1_about {
        margin-top: 10px;
        margin-left: 35px;
        margin-right: 23px;
        font-size: 16.5px;
        font-weight: 500;
        line-height: 25px;
    }

    .fifth .projects .projects_middle {
        margin-top: 620px;
        display: flex;
        left: 8%;
        position: absolute;
    }

    .fifth .projects .project2 {
        /* height: 475px; */
        height: fit-content;
        width: 40vw;
        background: linear-gradient(200deg, #2bbfff 0%, #1d1b1b 132%);
        position: absolute;
        border-radius: 14px;
        padding-bottom: 30px;
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
        border: 2px solid black;
    }

    .fifth .projects .project2 .project2_img {
        width: 37vw;
        height: auto;
        /* height: 270px; */
        /* background-color: #101236; */
        border-radius: 10px;
        margin: 24px;
    }

    .fifth .projects .project2 .project2_img img {

        width: 36vw;
        height: auto;
        border-radius: 10px;
    }

    .fifth .projects .project3 .project3_heading {

        margin-top: 20px;
        margin-left: 35px;
        font-size: 20px;
    }

    .fifth .projects .project3 {
        /* height: 475px; */
        height: auto;
        width: 40vw;
        background: linear-gradient(200deg, #2bbfff 0%, #1d1b1b 132%);
        position: absolute;
        margin-left: 45vw;
        border-radius: 14px;
        padding-bottom: 30px;
        /* box-shadow: 9px 8px 0 5px rgba(0, 0, 0, 1); */
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
        border: 2px solid black;
    }

    .fifth .projects .project3 .project3_img {
        width: 37vw;
        height: auto;
        border-radius: 10px;
        margin: 24px;
    }

    .fifth .projects .project3 .project3_img img {
        /* width: 500px; */
        width: 36vw;
        height: auto;
        /* height: 270px; */
        border-radius: 10px;
    }
}

@media (max-width: 1023px) and (min-width: 767px) {
    .fifth .projects .project1 {
        /* height: 420px; */
        height: fit-content;
        /* width: 1200px; */
        width: 77vw;
        display: inline-block;
        padding-bottom: 15px;

        background: linear-gradient(145deg, #2bbfff 0%, #1d1b1b 132%);
        position: absolute;
        left: 10%;
        margin-top: 180px;
        border-radius: 14px;

        /* box-shadow: 9px 8px 0 5px rgba(0, 0, 0, 1); */
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
        border: 2px solid black;
    }

    .fifth_heading p {
        font-size: 25px;
        color: #2a3c5c;
        text-align: center;
        margin: auto;
        font-weight: 600;
    }

    .fifth_heading {
        width: 230px;
        height: 60px;
        margin-top: 80px;
        background-color: #A1BFD2;
        justify-content: center;
        display: flex;
        position: absolute;
        z-index: 1;
        box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
        border-radius: 50px;
    }

    .fifth .projects .project1 .project1_heading {

        margin-top: 20px;
        margin-left: 35px;
        font-size: 25px;
        font-weight: 700;
    }

    .fifth .projects .project1 .project1_img img {
        /* width: 580px; */
        width: 65vw;
        /* height: 320px; */
        height: auto;
        border-radius: 10px;
    }

    .fifth .projects .project1 .project1_img {

        border-radius: 10px;
        margin-left: 48px;
        margin-top: 40px;
        height: auto;
    }

    .fifth .projects .project1_half {
        /* margin-top: 30px; */
        margin: auto;
        width: 75vw;
    }



    .fifth .projects .project1 .project1_about {
        margin-top: 10px;
        margin-left: 35px;
        margin-right: 23px;
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
    }

    .fifth .projects .project1 .project1_bottom button {
        /* margin-left: 50px; */
        justify-content: center;
        display: flex;
        align-items: center;
        height: 40px;
        width: 135px;
        color: #000;
        border-radius: 8px;
        font-size: 18px;
        border: none;
    }

    .fifth .projects .project1 .project1_bottom img {
        height: auto;
        width: 46px;
        margin-top: 5px;
        position: absolute;
        /* right: 10%; */
    }



    .fifth .projects .projects_middle {
        margin-top: 815px;
        /* display: flex; */
        left: 10%;
        position: absolute;
    }

    .fifth .projects .project2 {
        /* height: 475px; */
        height: fit-content;
        width: 40vw;
        background: linear-gradient(200deg, #2bbfff 0%, #1d1b1b 132%);
        position: absolute;
        border-radius: 14px;
        padding-bottom: 30px;
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
        border: 2px solid black;
    }

    .fifth .projects .project2 .project2_heading {
        margin-top: 20px;
        margin-left: 35px;
        font-size: 20px;
        font-weight: 700;
    }

    .fifth .projects .project2 .project2_img {
        width: 37vw;
        height: auto;
        /* height: 270px; */
        /* background-color: #101236; */
        border-radius: 10px;
        margin: 24px;
    }

    .fifth .projects .project2 .project2_img img {

        width: 36vw;
        height: auto;
        border-radius: 10px;
    }

    .fifth .projects .project2 .project2_about {
        margin-top: 8px;
        margin-left: 35px;
        margin-right: 23px;
        line-height: 20px;
        font-size: 15px;
    }

    .fifth .projects .project3 .project3_heading {

        margin-top: 20px;
        margin-left: 35px;
        font-size: 20px;
        font-weight: 700;
    }

    .fifth .projects .project3 {
        /* height: 475px; */
        height: auto;
        width: 40vw;
        background: linear-gradient(200deg, #2bbfff 0%, #1d1b1b 132%);
        position: absolute;
        margin-left: 45vw;
        border-radius: 14px;
        padding-bottom: 30px;
        /* box-shadow: 9px 8px 0 5px rgba(0, 0, 0, 1); */
        box-shadow: 8px 5px 0 3px rgba(0, 0, 0, 1);
        border: 2px solid black;
    }

    .fifth .projects .project3 .project3_img {
        width: 37vw;
        height: auto;
        border-radius: 10px;
        margin: 24px;
    }

    .fifth .projects .project3 .project3_img img {
        /* width: 500px; */
        width: 36vw;
        height: auto;
        /* height: 270px; */
        border-radius: 10px;
    }

    .fifth .projects .project3 .project3_about {
        margin-top: 8px;
        margin-left: 35px;
        margin-right: 23px;
        line-height: 20px;
        font-size: 15px;
    }
}

/* sixth page  */

.sixth {
    background: linear-gradient(180deg, #c7e6f8 3.67%, #517c96 36.67%, #2a3c5c 72.1%, #101236 96.67%);
    justify-content: center;
    display: flex;
    height: 940px;
}

.sixth_heading {
    width: 300px;
    height: 75px;
    margin-top: 80px;
    background-color: #A1BFD2;
    justify-content: center;
    display: flex;
    position: absolute;
    z-index: 1;
    box-shadow: inset 0px 1px 9px rgb(0, 0, 0);
    border-radius: 50px;
}

.sixth_heading p {
    font-size: 32px;
    color: #2a3c5c;
    text-align: center;
    margin: auto;
}

/* .sixth .sixth_info_left {
    margin-top: 25px;
    
}


.sixth .sixth_info_left .location {
    width: 490px;
    height: 80px;
    display: flex;
    background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
    border-radius: 20px;
    margin-top: 202px;
    position: absolute;
    left: 10%;
}

.sixth .sixth_info_left .location .location_icon img {

    width: 48px;
    margin-top: 13px;
    margin-left: 10px;
}

.sixth .sixth_info_left .location .location_info p {
    font-size: 26px;
    margin-top: 18px;
    width: 370px;
    height: 53px;
    margin-left: 23px;
    filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
  
}


.sixth .sixth_info_left .phone {
    width: 490px;
    height: 80px;
    display: flex;
    background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
    border-radius: 20px;
    margin-top: 306px;
    position: absolute;
    left: 10%;
}

.sixth .sixth_info_left .phone .phone_icon img {

    width: 48px;
    margin-top: 13px;
    margin-left: 10px;
}

.sixth .sixth_info_left .phone .phone_info p {
    font-size: 26px;
    margin-top: 23px;
    width: 370px;
    height: 53px;
    margin-left: 23px;
    filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
   
}


.sixth .sixth_info_left .gmail {
    width: 490px;
    height: 80px;
    display: flex;
    background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
    border-radius: 20px;
    margin-top: 410px;
    position: absolute;
    left: 10%;
}

.sixth .sixth_info_left .gmail .gmail_icon img {

    width: 48px;
    margin-top: 13px;
    margin-left: 10px;
}

.sixth .sixth_info_left .gmail .gmail_info p {
    font-size: 26px;
    margin-top: 23px;
    width: 370px;
    height: 53px;
    margin-left: 23px;
    filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
}


.sixth .sixth_info_left .github {
    width: 490px;
    height: 80px;
    display: flex;
    background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
    border-radius: 20px;
    margin-top: 514px;
    position: absolute;
    left: 10%;
}

.sixth .sixth_info_left .github .github_icon img {

    width: 48px;
    margin-top: 13px;
    margin-left: 10px;
}

.sixth .sixth_info_left .github .github_info p {
    font-size: 26px;
    margin-top: 23px;
    width: 370px;
    height: 53px;
    margin-left: 23px;
    filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));

}



.sixth .sixth_info_left .linkedin {
    width: 490px;
    height: 80px;
    display: flex;
    background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
    border-radius: 20px;
    margin-top: 618px;
    position: absolute;
    left: 10%;
}

.sixth .sixth_info_left .linkedin .linkedin_icon img {

    width: 48px;
    margin-top: 13px;
    margin-left: 10px;
}

.sixth .sixth_info_left .linkedin .linkedin_info p {
    font-size: 26px;
    margin-top: 23px;
    width: 370px;
    height: 53px;
    margin-left: 23px;
    filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
    text-shadow: 0px 4px 1px rgba(0, 0, 0, 0.25);
} */

.sixth_info_left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* This ensures each div is separated by 24px */
    /* width: 430px; */
    margin-top: 225px;
    margin-right: 70px;
}

.mailto,
.githubto,
.linkedinto {
    /* list-style: none; */
    text-decoration: none;
}

.location,
.phone,
.gmail,
.github,
.linkedin {
    display: flex;
    align-items: center;
    width: 415px;
    background: linear-gradient(145deg, #239BCF 0%, #2f2c2c 132%);
    border-radius: 14px;
    padding: 8px;
    box-shadow: inset 1px 1px 9px rgb(0, 0, 0, 0.5);
}

.location_icon,
.phone_icon,
.gmail_icon,
.github_icon,
.linkedin_icon {
    margin-right: 16px;

}

.location_icon img,
.phone_icon img,
.gmail_icon img,
.github_icon img,
.linkedin_icon img {
    width: 48px;
    /* height: 48px; */
}

.location_info,
.phone_info,
.gmail_info,
.github_info,
.linkedin_info {
    display: flex;
    align-items: center;
    flex: 1;

}

.phone_info a {
    text-decoration: none;
    color: inherit;
}

.location_info p,
.phone_info p,
.gmail_info p,
.github_info p,
.linkedin_info p {
    margin: 0;
    width: 350px;
    font-size: 23px;
    filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
}

.sixth .sixth_info_right .message_box {
    width: 530px;
    /* height: 634px; */
    height: auto;
    background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
    margin-top: 225px;
    /* margin-left: 620px; */
    padding-bottom: 20px;
    border-radius: 30px;
}

.sixth .sixth_info_right .message_box input {

    margin-top: 40px;
    margin-left: 50px;
    width: 400px;
    height: 60px;
    border: none;
    border-radius: 20px;
    font-size: 26px;
    padding-left: 20px;
    color: #000;
}

.sixth .sixth_info_right .message_box input::placeholder {
    color: #5c5c5c;

}

.sixth .sixth_info_right .message_box textarea {

    margin-top: 40px;
    margin-left: 50px;
    width: 400px;
    height: 60px;
    border: none;
    border-radius: 20px;
    font-size: 26px;
    padding-left: 20px;
    padding-top: 20px;
    color: #000;
    max-height: 120px;
    min-height: 50px;
    resize: vertical;
}

.sixth .sixth_info_right .message_box textarea::placeholder {
    color: #5c5c5c;

}

.sixth .sixth_info_right .message_box button {
    width: 168px;
    /* height: 64px; */
    height: auto;
    padding: 15px;
    border-radius: 12px;
    border: none;
    color: black;
    font-size: 24px;
    margin-left: 180px;
    margin-top: 35px;
}

.sixth .sixth_info_right .message_box button:hover {
    cursor: pointer;
    background-color: #479bc1;
    color: white;
    transition: 0.3s;
}



@media (max-width: 1440px) and (min-width: 1023px) {

    .sixth_info_left {
        display: flex;
        flex-direction: column;
        gap: 24px;
        /* width: 430px; */
        margin-top: 225px;
        margin-right: 70px;
    }

    .location,
    .phone,
    .gmail,
    .github,
    .linkedin {
        display: flex;
        align-items: center;
        width: 370px;
        background: linear-gradient(145deg, #239BCF 0%, #2f2c2c 132%);
        border-radius: 14px;
        padding: 6px;
        box-shadow: inset 1px 1px 9px rgb(0, 0, 0, 0.5);
    }

    .location_info p,
    .phone_info p,
    .gmail_info p,
    .github_info p,
    .linkedin_info p {
        margin: 0;
        width: 300px;
        font-size: 20px;
        filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
    }

    .location_icon img,
    .phone_icon img,
    .gmail_icon img,
    .github_icon img,
    .linkedin_icon img {
        width: 42px;
        /* height: 48px; */
    }

    .sixth .sixth_info_right .message_box {
        width: 470px;
        /* height: 634px; */
        height: auto;
        background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
        margin-top: 225px;
        /* margin-left: 620px; */
        padding-bottom: 20px;
        border-radius: 30px;
    }

    .sixth .sixth_info_right .message_box input {
        margin-top: 40px;
        margin-left: 25px;
        width: 400px;
        height: 60px;
        border: none;
        border-radius: 20px;
        font-size: 23px;
        padding-left: 20px;
        color: #000;
    }

    .sixth .sixth_info_right .message_box textarea {
        margin-top: 40px;
        margin-left: 25px;
        width: 400px;
        height: 60px;
        border: none;
        border-radius: 20px;
        font-size: 23px;
        padding-left: 20px;
        padding-top: 20px;
        color: #000;
        max-height: 120px;
        min-height: 50px;
        resize: vertical;
    }

    .sixth .sixth_info_right .message_box button {
        width: 140px;
        /* height: 64px; */
        height: auto;
        padding: 14px;
        border-radius: 12px;
        border: none;
        color: black;
        font-size: 23px;
        margin-left: 180px;
        margin-top: 35px;
    }
}

@media (max-width: 1023px) and (min-width: 767px) {
    .sixth_info_left {
        display: flex;
        flex-direction: column;
        gap: 24px;
        /* width: 430px; */
        margin-top: 225px;
        margin-right: 40px;
    }

    .location,
    .phone,
    .gmail,
    .github,
    .linkedin {
        display: flex;
        align-items: center;
        width: 265px;
        background: linear-gradient(145deg, #239BCF 0%, #2f2c2c 132%);
        border-radius: 14px;
        padding: 6px;
        box-shadow: inset 1px 1px 9px rgb(0, 0, 0, 0.5);
    }

    .location_info p,
    .phone_info p,
    .gmail_info p,
    .github_info p,
    .linkedin_info p {
        margin: 0;
        /* width: 250px; */
        width: 215px;
        font-size: 16px;
        filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.25));
    }

    .location_icon img,
    .phone_icon img,
    .gmail_icon img,
    .github_icon img,
    .linkedin_icon img {
        width: 36px;
        /* height: 48px; */
    }

    .sixth .sixth_info_right .message_box {
        width: 425px;
        /* height: 634px; */
        height: auto;
        background: linear-gradient(145deg, #239BCF 0%, #1d1b1b 132%);
        margin-top: 225px;
        /* margin-left: 620px; */
        padding-bottom: 20px;
        border-radius: 30px;
    }

    .sixth .sixth_info_right .message_box input {
        margin-top: 40px;
        margin-left: 25px;
        width: 345px;
        /* height: 60px; */
        height: fit-content;
        padding: 14px;
        border: none;
        border-radius: 20px;
        font-size: 19px;
        padding-left: 20px;
        color: #000;
    }

    .sixth .sixth_info_right .message_box textarea {
        margin-top: 40px;
        margin-left: 25px;
        width: 345px;
        /* height: 60px; */
        height: fit-content;
        padding: 14px;
        border: none;
        border-radius: 20px;
        font-size: 19px;
        padding-left: 20px;
        padding-top: 20px;
        color: #000;
        max-height: 120px;
        min-height: 50px;
        resize: vertical;
    }

    .sixth .sixth_info_right .message_box button {
        width: 125px;
        /* height: 64px; */
        height: auto;
        padding: 11px;
        border-radius: 12px;
        border: none;
        color: black;
        font-size: 23px;
        margin-left: 165px;
        margin-top: 35px;
    }

}