*{
    margin: 0;
    padding: 0;
}

.container-frist{
    background-image: 
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url('/img/codegopal.jpg');

    background-size: cover;
    background-position: center center;
    min-height: 120vh;
    background-position-y: bottom;
    color: white;
    position: relative;
}

.h1{
    position: absolute;
    margin: 20px 20px;
    font-family: "Lora", serif;
    font-weight: 100;
}
.spn{
    position: absolute;
    margin: 25px;
    margin-top: 75px;
}


.myport {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-40%);
    width: 45%;
    text-align: left;
}

.myport .h3 {
    font-size: 30px;
    font-family: "Lora", serif;
    margin-bottom: 15px;
}
.myport .hd{
    line-height: 1.5;
    font-size: 60px;
    font-family: "Lora", serif;
}

.myport .portspn {
    font-size: 22px;
    line-height: 1.6;
    display: block;
}
.sky-blue{color: #00e5ff; font-weight: bold;}
.gold-word { color: #FFD700; font-weight: bold; } 
.pink-word { color: #f951aa; font-weight: bold;}

.side-nav {
    position: absolute;
    top: 40px;
    right: 40px;

    display: flex;
    gap: 35px;

    z-index: 10;
}

.side-nav a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-family: "Lora", serif;
    font-weight: 500;
    transition: 0.3s ease;
}

.side-nav a:hover {
    color: #00e5ff;
}


.social-bar {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 15px;

    padding: 12px 8px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;

    z-index: 1000;
}

.social-bar a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 25px;

    text-decoration: none;
    border-radius: 50%;

    transition: all 0.3s ease;
}

.social-bar a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.15);
    color: white;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Arrows */
.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    margin-bottom: 8px;
}

.scroll-arrows span {
    display: block;
    width: 18px;
    height: 18px;

    border-right: 4px solid white;
    border-bottom: 4px solid white;

    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
}

.scroll-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

/* SCROLL DOWN Text */
.scroll-text {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: white;
    white-space: nowrap;
    margin-top: 20px;

    animation: textGlow 2s ease-in-out infinite;
}

/* Arrow Animation */
@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Text Animation */
@keyframes textGlow {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
}


/*Section 2nd*/
.h2{
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
    font-size: 40px;
    font-family: "Lora", serif;
}
.second,.third{
    padding: 15px 30px;
    background: linear-gradient(
        135deg,
        #0B1020,
        #15102B
    );
    color: white;
}

.services {
    padding: 80px 8%;
    text-align: center;
}

.services h2 {
    font-size: 40px;
    margin-bottom: 50px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.service-item {
    width: calc(50% - 25px);

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 25px 100px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);

    transition: 0.3s ease;
}

.service-item span {
    font-size: 28px;
}

.service-item p {
    margin: 0;
    font-size: 18px;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}


.service-item span {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: white;
    font-size: 22px;

    flex-shrink: 0;
}

.icon-gold {
    background: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.icon-blue {
    background: #2196F3;
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
}

.icon-pink {
    background: #FF1493;
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.5);
}

.icon-green {
    background: #00C853;
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.5);
}

.icon-orange {
    background: #FF9800;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

.icon-cyan {
    background: #00BCD4;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}

.icon-red {
    background: #F44336;
    box-shadow: 0 0 15px rgba(244, 67, 54, 0.5);
}

.icon-purple {
    background: #9C27B0;
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}
.projp{
    font-family: "Lora", serif;;
}

.Zindex{
    display: flex;
    gap: 50px;
}
.text-span{
    font-size: 25px;
    font-weight: 100;
}

/* =========================
   PROJECTS SECTION
========================= */

.third {
    padding: 60px 8%;
    background: #0B1020;
    color: white;
}

.projects-title {
    text-align: center;
    font-family: "Lora", serif;
    font-size: 42px;
    margin-bottom: 80px;
}


/* Project Row */

.project-row {
    max-width: 1100px;
    margin: 0 auto 100px;

    display: flex;
    align-items: center;
    gap: 70px;
}


/* Reverse row */

.project-row.reverse {
    flex-direction: row-reverse;
}


/* Project Image */

.project-image {
    width: 52%;
    overflow: hidden;
    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.4);
}

.project-image img {
    width: 108%;
    height: 315px;

    display: block;
    object-fit: cover;

    transition: 0.5s ease;
}

.project-image:hover img {
    transform: scale(1.05);
}


/* Project Info */

.project-info {
    width: 48%;
}

.project-number {
    font-size: 18px;
    color: #ff1493;
    font-weight: bold;
    letter-spacing: 3px;
}

.project-info h3 {
    margin: 10px 0 15px;

    font-size: 32px;
    font-family: "Lora", serif;

    color: #FFD700;
}

.project-info p {
    font-size: 17px;
    line-height: 1.8;

    color: rgba(255,255,255,0.75);
}


/* View Project */

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 15px;

    color: #ff1493;
    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.project-link:hover {
    color: #FFD700;
    gap: 15px;
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    padding: 10px 8% 80px;
    background: linear-gradient(
        135deg,
        #0B1020,
        #15102B
    );

    color: white;
    position: relative;
    overflow: hidden;
}


/* Background Glow */

.about-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -180px;
    right: -150px;

    background: #ff1493;
    opacity: 0.08;

    border-radius: 50%;
    filter: blur(100px);
}

.about-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -150px;
    left: -120px;

    background: #00e5ff;
    opacity: 0.06;

    border-radius: 50%;
    filter: blur(100px);
}


/* Title */

.about-title {
    position: relative;
    z-index: 2;

    text-align: center;

    font-family: "Lora", serif;
    font-size: 42px;

    margin-bottom: 70px;

    color: white;
}

.about-title::after {
    content: "";

    display: block;

    width: 70px;
    height: 3px;

    margin: 15px auto 0;

    background: linear-gradient(
        90deg,
        #FFD700,
        #f951aa
    );

    border-radius: 5px;
}


/* Main Container */

.about-container {
    position: relative;
    z-index: 2;

    max-width: 1150px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 70px;
}


/* Left Content */

.about-content {
    width: 58%;
}

.about-tag {
    color: #f951aa;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;
}


.about-content h3 {
    font-family: "Lora", serif;

    font-size: 40px;

    margin: 12px 0;
}

.about-content h3 span {
    color: #FFD700;
}


.about-content h4 {
    color: #00e5ff;

    font-size: 17px;

    margin-bottom: 25px;

    font-weight: 500;
}


.about-content p {
    color: rgba(255,255,255,0.75);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 15px;

    max-width: 650px;
}


/* Skills */

.about-skills {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 25px;
}


.skill-box {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    border-radius: 25px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    font-size: 14px;

    transition: 0.3s ease;
}


.skill-box i {
    color: #f951aa;
}


.skill-box:hover {
    transform: translateY(-3px);

    border-color: #f951aa;

    background: rgba(255,20,147,0.08);
}


/* Button */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 13px 23px;

    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #f951aa,
        #9c27b0
    );

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}


.about-btn:hover {
    color: white;

    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(249,81,170,0.3);
}


.about-btn i {
    transition: 0.3s ease;
}


.about-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   VIDHYA CARD
========================================= */

.vidhya-card {
    width: 42%;

    padding: 40px 35px;

    text-align: center;

    border-radius: 25px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.3);

    transition: 0.4s ease;
}


.vidhya-card:hover {
    transform: translateY(-8px);

    border-color: rgba(249,81,170,0.5);

    box-shadow:
        0 20px 50px rgba(249,81,170,0.12);
}


/* Vidhya Icon */

.vidhya-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #FFD700,
        #f951aa
    );

    color: white;

    font-size: 30px;

    box-shadow:
        0 0 25px rgba(249,81,170,0.3);
}


.vidhya-card .about-tag {
    font-size: 11px;
}


.vidhya-name {
    margin: 15px 0 5px;

    font-family: "Lora", serif;

    font-size: 32px;
}


.vidhya-name span {
    color: #f951aa;
}


.vidhya-card h4 {
    color: #FFD700;

    font-size: 17px;

    margin-bottom: 20px;
}


.vidhya-card p {
    color: rgba(255,255,255,0.7);

    font-size: 15px;

    line-height: 1.7;
}


/* Vidhya Skills */

.vidhya-skills {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 8px;

    margin-top: 20px;
}


.vidhya-skills span {
    padding: 7px 12px;

    border-radius: 20px;

    font-size: 12px;

    color: #00e5ff;

    border: 1px solid rgba(0,229,255,0.3);

    background: rgba(0,229,255,0.05);
}


/* Collaboration Line */

.collab-line {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.1);

    color: rgba(255,255,255,0.6);

    font-size: 12px;
}


.collab-line i {
    color: #f951aa;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.about-highlights {
    position: relative;
    z-index: 2;

    max-width: 1000px;

    margin: 70px auto 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.highlight {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 18px;

    border-radius: 15px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.1);
}


.highlight > i {
    font-size: 25px;

    color: #FFD700;
}


.highlight div {
    display: flex;

    flex-direction: column;
}


.highlight strong {
    color: white;

    font-size: 16px;
}


.highlight span {
    color: rgba(255,255,255,0.55);

    font-size: 12px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .about-section {
        padding: 70px 20px 60px;
    }


    .about-title {
        font-size: 34px;

        margin-bottom: 45px;
    }


    .about-container {
        flex-direction: column;

        gap: 40px;
    }


    .about-content,
    .vidhya-card {
        width: 100%;
    }


    .about-content h3 {
        font-size: 32px;
    }


    .about-content h4 {
        font-size: 15px;

        line-height: 1.6;
    }


    .about-content p {
        font-size: 15px;
    }


    .about-skills {
        justify-content: center;
    }


    .about-btn {
        display: flex;

        width: fit-content;

        margin-left: auto;
        margin-right: auto;
    }


    .vidhya-card {
        padding: 35px 25px;
    }


    .about-highlights {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 12px;

        margin-top: 45px;
    }


    .highlight {
        padding: 15px 10px;
    }


    .highlight > i {
        font-size: 20px;
    }

}


@media (max-width: 400px) {

    .about-highlights {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    position: relative;

    padding: 60px 8% 90px;

    background: #080D1C;

    color: white;

    overflow: hidden;
}


/* Background Glow */

.contact-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -220px;
    left: -180px;

    background: #ff1493;

    opacity: 0.07;

    border-radius: 50%;

    filter: blur(100px);
}


.contact-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -220px;
    right: -150px;

    background: #00e5ff;

    opacity: 0.05;

    border-radius: 50%;

    filter: blur(100px);
}


/* =========================================
   TITLE
========================================= */

.contact-title {
    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px;
}


.contact-title span {
    color: #ff1493;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 4px;
}


.contact-title h2 {
    margin: 12px 0;

    font-family: "Lora", serif;

    font-size: 44px;
}


.contact-title h2 b {
    color: #FFD700;
}


.contact-title p {
    color: rgba(255,255,255,0.65);

    font-size: 20px;

    line-height: 1.7;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.contact-container {
    position: relative;

    z-index: 2;

    max-width: 1100px;

    margin: auto;

    display: flex;

    gap: 70px;

    align-items: stretch;
}


/* =========================================
   LEFT CONTACT INFO
========================================= */

.contact-info {
    width: 42%;

    padding: 35px 10px;
}


.contact-info h3 {
    font-family: "Lora", serif;

    font-size: 32px;

    margin-bottom: 15px;
}


.contact-intro {
    color: rgba(255,255,255,0.65);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* Contact Item */

.contact-item {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 25px;
}


.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: white;

    font-size: 19px;
}


.email-icon {
    background: #ff1493;

    box-shadow:
        0 0 18px rgba(255,20,147,0.25);
}


.phone-icon {
    background: #FFD700;

    color: #111;

    box-shadow:
        0 0 18px rgba(255,215,0,0.2);
}


.location-icon {
    background: #00BCD4;

    box-shadow:
        0 0 18px rgba(0,188,212,0.2);
}


.contact-item span {
    display: block;

    color: rgba(255,255,255,0.5);

    font-size: 16px;

    letter-spacing: 1px;

    margin-bottom: 4px;
}


.contact-item a,
.contact-item p {
    margin: 0;

    color: white;

    text-decoration: none;

    font-size: 15px;

    transition: 0.3s ease;
}


.contact-item a:hover {
    color: #ff1493;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.contact-social {
    margin-top: 35px;
}


.contact-social > span {
    color: rgba(255,255,255,0.5);

    font-size: 16px;

    letter-spacing: 2px;
}


.contact-social-icons {
    display: flex;

    gap: 12px;

    margin-top: 15px;
}


.contact-social-icons a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    text-decoration: none;

    transition: 0.3s ease;
}


.contact-social-icons a:hover {
    background: #ff1493;

    border-color: #ff1493;

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(255,20,147,0.25);
}


/* =========================================
   FORM BOX
========================================= */

.contact-form-box {
    width: 58%;

    padding: 40px;

    border-radius: 24px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.3);
}


/* Form Row */

.form-row {
    display: flex;

    gap: 20px;
}


.form-row .form-group {
    width: 50%;
}


/* Form Group */

.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,0.7);

    font-size: 16px;

    font-weight: 500;
}


.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(0,0,0,0.2);

    color: white;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: 0.3s ease;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff1493;

    box-shadow:
        0 0 0 3px rgba(255,20,147,0.08);
}


.form-group textarea {
    resize: vertical;

    min-height: 140px;
}


/* =========================================
   SEND BUTTON
========================================= */

.send-btn {
    border: none;

    outline: none;

    cursor: pointer;

    padding: 14px 25px;

    border-radius: 30px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: white;

    font-size: 14px;

    font-weight: 600;

    background: linear-gradient(
        135deg,
        #ff1493,
        #9c27b0
    );

    box-shadow:
        0 10px 25px rgba(255,20,147,0.2);

    transition: 0.3s ease;
}


.send-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(255,20,147,0.3);
}


.send-btn i {
    transition: 0.3s ease;
}


.send-btn:hover i {
    transform: translateX(5px) rotate(-10deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-section {
        padding: 70px 20px;
    }


    .contact-title {
        margin-bottom: 45px;
    }


    .contact-title h2 {
        font-size: 34px;
    }


    .contact-title p {
        font-size: 14px;
    }


    .contact-container {
        flex-direction: column;

        gap: 25px;
    }


    .contact-info,
    .contact-form-box {
        width: 100%;

        box-sizing: border-box;
    }


    .contact-info {
        padding: 10px 0;
    }


    .contact-form-box {
        padding: 25px 20px;
    }


    .form-row {
        flex-direction: column;

        gap: 0;
    }


    .form-row .form-group {
        width: 100%;
    }


    .send-btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================
   FOOTER
========================================= */

.footer {
    position: relative;

    padding: 55px 8% 20px;

    background: #060A15;

    color: white;

    border-top: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;
}


/* Subtle Pink Glow */

.footer::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -150px;
    bottom: -180px;

    background: #ff1493;

    opacity: 0.05;

    border-radius: 50%;

    filter: blur(80px);
}


/* Main Footer */

.footer-content {
    position: relative;

    z-index: 2;

    max-width: 1100px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* Brand */

.footer-brand h3 {
    margin: 0 0 5px;

    font-family: "Lora", serif;

    font-size: 25px;
}

.footer-brand h3 span {
    color: #ff1493;
}

.footer-brand p {
    margin: 0;

    color: rgba(255,255,255,0.5);

    font-size: 13px;
}


/* Links */

.footer-links {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.65);

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}


/* Social */

.footer-social {
    display: flex;

    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: white;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.1);

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-social a:hover {
    color: white;

    background: #ff1493;

    border-color: #ff1493;

    transform: translateY(-3px);
}


/* Bottom */

.footer-bottom {
    position: relative;

    z-index: 2;

    max-width: 1100px;

    margin: 35px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.4);

    font-size: 12px;
}

.footer-bottom span {
    color: #ff1493;

    font-weight: 600;
}


/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 768px) {

    .footer {
        padding: 45px 20px 20px;
    }

    .footer-content {
        flex-direction: column;

        text-align: center;

        gap: 25px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: center;

        text-align: center;

        gap: 8px;
    }

}

/**MOBILE VIEW**/

/* =========================================================
   MOBILE RESPONSIVE DESIGN
   ========================================================= */

   @media (max-width: 768px) {

    /* =========================================
       FIRST SECTION - MOBILE FIX
    ========================================= */

    .container-frist {
        min-height: 100svh;

        height: 100svh;

        background-size: cover;

        background-position: center center;

        background-repeat: no-repeat;

        overflow: hidden;
    }


    /* Header */

    .h1 {
        margin: 12px 15px;

        font-size: 25px;
    }

    .spn {
        margin: 15px 18px;

        margin-top: 52px;

        font-size: 11px;
    }


    /* Navigation */

    .side-nav {
        top: 20px;

        right: 15px;

        gap: 18px;
    }

    .side-nav a {
        font-size: 17px;
    }


    /* Main Portfolio Text */

    .myport {
        position: absolute;

        left: 22px;

        right: 18px;

        top: 50%;

        transform: translateY(-50%);

        width: auto;

        text-align: left;
    }

    .myport .h3 {
        font-size: 21px;

        margin-bottom: 12px;
    }

    .myport .hd {
        font-size: 35px;

        line-height: 1.4;
    }


    /* Social Bar */

    .social-bar {
        left: 17px;

        top: 50%;

        gap: 7px;

        padding: 7px 5px;

        border-radius: 25px;
    }

    .social-bar a {
        width: 35px;

        height: 35px;

        font-size: 18px;
    }


    /* Scroll Down */

    .scroll-down {
        bottom: 18px;
    }

    .scroll-arrows span {
        width: 13px;

        height: 13px;

        border-right-width: 3px;

        border-bottom-width: 3px;
    }

    .scroll-text {
        font-size: 8px;

        letter-spacing: 3px;

        margin-top: 12px;
    }



    /* =========================================
       SERVICES - MOBILE
    ========================================= */

    .second {
        padding: 0 15px 45px;
    }

    .services {
        padding: 45px 0 20px;
    }

    .services h2,
    .h2 {
        font-size: 34px;

        margin-bottom: 35px;
    }

    .services-list {
        display: flex;

        flex-direction: column;

        gap: 15px;

        margin-bottom: 15px;
    }

    .service-item {
        width: 100%;

        box-sizing: border-box;

        padding: 16px 15px;

        gap: 14px;
    }

    .service-item span {
        width: 45px;

        height: 45px;

        min-width: 45px;

        font-size: 20px;
    }

    .service-item p {
        font-size: 13px;

        line-height: 1.55;

        text-align: left;
    }

}

/* =========================================================
   SMALL MOBILE — 400px AND BELOW
   ========================================================= */

   @media (max-width: 400px) {

    .container-frist {
        min-height: 100svh;

        height: 100svh;

        background-position: 58% center;
    }

    .myport {
        left: 20px;

        right: 15px;

        top: 49%;
    }

    .myport .h3 {
        font-size: 19px;
    }

    .myport .hd {
        font-size: 30px;

        line-height: 1.4;
    }

    .side-nav {
        gap: 12px;
    }

    .side-nav a {
        font-size: 15px;
    }

    .services {
        padding-top: 40px;
    }

    .services h2,
    .h2 {
        font-size: 32px;

        margin-bottom: 30px;
    }

}

/**Double Media**/

/* =========================================================
   MOBILE VIEW
   ========================================================= */

   @media (max-width: 768px) {

    /* =========================================
       FIRST SECTION
    ========================================= */

    .container-frist {
        width: 100%;
        height: 100svh;
        min-height: 100svh;

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;

        overflow: hidden;
    }


    /* =========================================
       WEBSITE NAME
    ========================================= */

    .h1 {
        position: absolute;

        left: 15px;
        top: 12px;

        margin: 0;

        font-size: 24px;

        line-height: 1.2;

        z-index: 20;
    }


    /* Subtitle */

    .spn {
        position: absolute;

        left: 17px;
        top: 47px;

        margin: 0;

        font-size: 10px;

        white-space: nowrap;

        z-index: 20;
    }


    /* =========================================
       NAVIGATION
    ========================================= */

    .side-nav {
        position: absolute;

        top: 85px;
        left: 12px;
        right: 12px;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 16px;

        z-index: 20;
    }


    .side-nav a {
        font-size: 15px;

        white-space: nowrap;
    }


    .side-nav a:hover {
        color: #00e5ff;
    }


    /* =========================================
       MAIN PORTFOLIO TEXT
    ========================================= */

    .myport {
        position: absolute;

        right: 18px;
        left: auto;

        top: 52%;

        transform: translateY(-50%);

        width: 62%;

        text-align: left;

        z-index: 5;
    }


    .myport .h3 {
        font-size: 19px;

        line-height: 1.3;

        margin-bottom: 12px;
    }


    .myport .hd {
        font-size: 34px;

        line-height: 1.4;
    }


    .myport .portspn {
        font-size: 15px;

        line-height: 1.5;
    }


    /* =========================================
       SOCIAL BAR
    ========================================= */

    .social-bar {
        position: absolute;

        left: 12px;

        top: 58%;

        transform: translateY(-50%);

        display: flex;

        flex-direction: column;

        gap: 7px;

        padding: 8px 5px;

        background: rgba(0, 0, 0, 0.35);

        backdrop-filter: blur(8px);

        -webkit-backdrop-filter: blur(8px);

        border: 1px solid rgba(255,255,255,0.2);

        border-radius: 25px;

        z-index: 15;
    }


    .social-bar a {
        width: 34px;
        height: 34px;

        font-size: 18px;
    }


    .social-bar a:hover {
        transform: scale(1.1);
    }


    /* =========================================
       SCROLL DOWN
    ========================================= */

    .scroll-down {
        position: absolute;

        bottom: 13px;

        left: 50%;

        transform: translateX(-50%);

        z-index: 20;
    }


    .scroll-arrows {
        gap: 0;

        margin-bottom: 3px;
    }


    .scroll-arrows span {
        width: 12px;
        height: 12px;

        border-right: 3px solid white;
        border-bottom: 3px solid white;
    }


    .scroll-text {
        font-size: 8px;

        letter-spacing: 3px;

        margin-top: 10px;
    }


}


/* =========================================================
   SMALL MOBILE
   400px AND BELOW
   ========================================================= */

@media (max-width: 400px) {

    .container-frist {
        height: 100svh;
        min-height: 100svh;

        background-position: 58% center;
    }


    /* Website Name */

    .h1 {
        left: 15px;
        top: 12px;

        font-size: 22px;
    }


    .spn {
        left: 17px;
        top: 44px;

        font-size: 9px;
    }


    /* Navigation */

    .side-nav {
        top: 82px;

        gap: 13px;
    }


    .side-nav a {
        font-size: 14px;
    }


    /* Main Text */

    .myport {
        right: 15px;

        width: 63%;

        top: 52%;
    }


    .myport .h3 {
        font-size: 18px;

        margin-bottom: 10px;
    }


    .myport .hd {
        font-size: 30px;

        line-height: 1.4;
    }


    .myport .portspn {
        font-size: 13px;
    }


    /* Social */

    .social-bar {
        left: 10px;

        top: 58%;

        gap: 5px;

        padding: 7px 4px;
    }


    .social-bar a {
        width: 31px;
        height: 31px;

        font-size: 16px;
    }


    /* Scroll */

    .scroll-down {
        bottom: 10px;
    }


    .scroll-arrows span {
        width: 11px;
        height: 11px;

        border-width: 3px;
    }


    .scroll-text {
        font-size: 7px;

        letter-spacing: 2.5px;

        margin-top: 8px;
    }

}

/* =========================================================
   FINAL MOBILE HERO FIX
   Fixes:
   1. Background image showing behind the navbar
   2. Large empty space before portfolio heading
   3. Portfolio heading sitting too low
   4. Better 360px mobile layout
   ========================================================= */

@media (max-width: 768px) {

    .container-frist {
        width: 100%;
        height: 100svh;
        min-height: 100svh;
        overflow: hidden;

        /* Keep navbar area clean and dark */
        background-image:
            linear-gradient(
                to bottom,
                #061832 0px,
                #061832 105px,
                rgba(0, 0, 0, 0.45) 105px,
                rgba(0, 0, 0, 0.45) 100%
            ),
            url('/img/codegopal.jpg');

        background-size: 100% 100%, cover;
        background-position: center, center center;
        background-repeat: no-repeat;
    }

    /* Website name */
    .h1 {
        left: 15px;
        top: 12px;
        margin: 0;
        font-size: 24px;
        line-height: 1.2;
        z-index: 30;
    }

    /* Subtitle */
    .spn {
        left: 17px;
        top: 47px;
        margin: 0;
        font-size: 10px;
        white-space: nowrap;
        z-index: 30;
    }

    /* Navbar */
    .side-nav {
        top: 82px;
        left: 10px;
        right: 10px;
        gap: 14px;
        justify-content: center;
        align-items: center;
        z-index: 30;
    }

    .side-nav a {
        font-size: 15px;
        white-space: nowrap;
    }

    /* Portfolio content */
    .myport {
        position: absolute;
        top: 34%;
        right: 15px;
        left: auto;
        width: 64%;
        transform: none;
        text-align: left;
        z-index: 5;
    }

    .myport .h3 {
        font-size: 19px;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .myport .hd {
        font-size: 31px;
        line-height: 1.28;
        margin: 0;
    }

    .myport .portspn {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Social bar */
    .social-bar {
        left: 10px;
        top: 58%;
        transform: translateY(-50%);
        gap: 5px;
        padding: 7px 4px;
        z-index: 15;
    }

    .social-bar a {
        width: 31px;
        height: 31px;
        font-size: 16px;
    }

    /* Scroll down */
    .scroll-down {
        bottom: 10px;
        z-index: 30;
    }

    .scroll-arrows span {
        width: 11px;
        height: 11px;
        border-right-width: 3px;
        border-bottom-width: 3px;
    }

    .scroll-text {
        font-size: 7px;
        letter-spacing: 2.5px;
        margin-top: 8px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE — 400px AND BELOW
   ========================================================= */

@media (max-width: 400px) {

    .container-frist {
        height: 100svh;
        min-height: 100svh;

        background-image:
            linear-gradient(
                to bottom,
                #061832 0px,
                #061832 102px,
                rgba(0, 0, 0, 0.45) 102px,
                rgba(0, 0, 0, 0.45) 100%
            ),
            url('/img/codegopal.jpg');

        background-size: 100% 100%, cover;
        background-position: center, 58% center;
    }

    .h1 {
        left: 15px;
        top: 12px;
        font-size: 22px;
    }

    .spn {
        left: 17px;
        top: 44px;
        font-size: 9px;
    }

    .side-nav {
        top: 80px;
        gap: 12px;
    }

    .side-nav a {
        font-size: 14px;
    }

    .myport {
        top: 34%;
        right: 15px;
        width: 64%;
    }

    .myport .h3 {
        font-size: 18px;
        margin-bottom: 9px;
    }

    .myport .hd {
        font-size: 30px;
        line-height: 1.28;
    }

    .myport .portspn {
        font-size: 13px;
    }

    .social-bar {
        left: 10px;
        top: 58%;
        gap: 5px;
        padding: 7px 4px;
    }

    .social-bar a {
        width: 31px;
        height: 31px;
        font-size: 16px;
    }

    .scroll-down {
        bottom: 10px;
    }

    .scroll-arrows span {
        width: 11px;
        height: 11px;
        border-width: 3px;
    }

    .scroll-text {
        font-size: 7px;
        letter-spacing: 2.5px;
        margin-top: 8px;
    }
}