 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            font-family: "Montserrat", sans-serif;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            background: rgba(0, 0, 0, 0.9) !important;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            color: white !important;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 10px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #0088a9 !important;
            transform: translateY(-2px);
        }

        .contact-btn {
            background-color: #0088a9;
            color: white !important;
            border-radius: 25px;
            padding: 8px 25px !important;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #015e75;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            min-height: 110vh;
            display: flex;
            align-items: center;
            padding: 100px 0 50px;
            background-image: url(../img/Home\ Page\ \(2\).png);
        }

        .hero-title {
            color: white;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .dev-highlight {
            color: #0088a9;
        }

        .hero-buttons .btn {
            margin: 10px;
            padding: 15px 40px;
            border-radius: 35px;
            font-weight: 700;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .btn-hire {
            background-color: #0088a9;
            color: white;
            border: 2px solid #0088a9;
        }

        .btn-hire:hover {
            background-color: transparent;
            color: #0088a9;
            transform: translateY(-3px);
        }

        .btn-cv {
            background-color: #32363f;
            color: white;
            border: 2px solid #32363f;
        }

        .btn-cv:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-3px);
        }

        /* Section Styles */
        .section1 {
            padding: 80px 0;
            min-height: 110vh;
            display: flex;
            align-items: center;
            background-image: url(../img/About\ Me\ Page\ \(1\).png);
        }
        .section3 {
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image:url(../img/Projects\ Page.png);
            background-size: cover;
            background-repeat: no-repeat;
        }
        .section {
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-image: url(../img/Contact\ Page.png);
        }

        .section-title {
            color: white;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 40px;
            position: relative;
            animation: fadeInLeft 1s ease;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: #0088a9;
        }

        .about-text {
            color: white;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .info-item {
            color: white;
            margin: 20px 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }

        .info-item i {
            color: #0088a9;
            margin-right: 15px;
            font-size: 1.3rem;
        }

        /* Skills Section */
        .skills-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .skill-badge {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .skill-badge:hover {
            background: #0088a9;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 136, 169, 0.3);
        }

        .skill-badge i {
            font-size: 1.3rem;
        }

        /* Projects Section */
        .project-card {
            background: rgba(57, 62, 70, 0.9);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .project-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-img {
            transform: scale(1.1);
        }

        .project-body {
            padding: 20px;
            text-align: center;
        }

        .project-link {
            background-color: #0088a9;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            background-color: #015e75;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            margin-left:350px ;
            width: 100%;
        }

        .form-group label {
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .form-control {
            background: rgba(57, 62, 70, 0.8);
            border: none;
            border-radius: 10px;
            color: white;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: rgba(57, 62, 70, 1);
            box-shadow: 0 0 0 3px rgba(0, 136, 169, 0.3);
            color: white;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-send {
            background-color: #0088a9;
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-send:hover {
            background-color: #015e75;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 136, 169, 0.3);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #0088a9;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 17%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none !important;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            pointer-events: auto;
        }

        .back-to-top:hover {
            background: #015e75;
            color: white;
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section {
                text-align: center;
            }

            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .skills-container {
                justify-content: center;
            }

            .contact-form {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }

            .skill-badge {
                font-size: 0.9rem;
                padding: 8px 15px;
            }
        }













/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url(../img/Portfolio\ Website\ Design\ \(Community\)\ \(1\).png);
    height: 5150px;
    background-size: cover;
}

nav{
    position: fixed;
    top: 0;
    width: 100%;
}
ul {
    text-align: right;
    position: relative;
    top: 15px;
}

ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 20px;
    margin-top: 15px;
    color: white;
}

ul a:hover {
    color: #0088a9;
}

ul a {
    text-decoration: none;
    color: white;
    padding: 14px 16px;
    transition: all 0.5s ease 0s;
    font-family: "Montserrat", sans-serif;
}

.first {
    float: left;
    clear: both;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
}

.btn {
    color: white;
    margin-top: 10px;
    background-color: #0088a9;
    border: none;
    border-radius: 10px;
    padding: 7px;
    transition: all 0.3s ease 0s;
    font-family: "Montserrat", sans-serif;
}

.btn:hover {
    background-color: #015e75;
}

li a:hover:not(.active) {
    background-color: #111;
}

.active {
    background-color: #0088a9;
}

header {
    background-size: cover;
    height: 800px;
}

.cre {
    margin-top: 334px;
    margin-left: 185px;
    margin-bottom: 50px;
    color: white;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;

}

.dev {
    color: #0088a9;
}

.bot {
    margin-left: 185px;
}

.fir {
    background-color: #0088a9;
    border-radius: 35px;
    font-weight: 700;
    padding-left: 30px;
    padding-right: 30px;
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2px;
}

.sac {
    background-color: #32363f;
    border-radius: 35px;
    font-weight: 700;
    padding-left: 60px;
    padding-right: 60px;
    color: white;
    text-decoration: none;
    padding: 14px 16px;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    margin-left: 10px;
    letter-spacing: 2px;
}

.fir:hover {
    background-color: #32363f;
    transition: all 0.5s ease 0s;
}

.sac:hover {
    background-color: #0088a9;
    transition: all 0.5s ease 0s;
}


.section h2 {
    color: white;
    margin-top: 465px;
    margin-left: 90px;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
}

.section p {
    color: white;
    margin-left: 90px;
    margin-top: 50px;
    letter-spacing: 2px;
    line-height: 35px;
    word-spacing: 2px;
    font-family: "Montserrat", sans-serif;
}

.section h4 {
    color: white;
    margin-left: 90px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
}

.edu h2 {
    margin-top: 500px;
    margin-left: 90px;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    color: white;
}

.edu p {
    color: white;
    margin-left: 90px;
    letter-spacing: 2px;
    line-height: 35px;
    word-spacing: 2px;
    font-family: "Montserrat", sans-serif;
}

.edu h4 {
    margin-left: 90px;
    margin-top: 100px;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    color: white;
}

.edu h5 {
    color: white;
    display: inline-block;
    margin-left: 90px;
    margin-top: 30px;
    font-size: 20px;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
}

.edu h3 {
    margin-left: 90px;
    margin-top: 100px;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    color: white;
}


.recent h2 {
    margin-top: 350px;
    margin-left: 90px;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    color: white;
}

.img1 {
    width: 368px;
    height: 280px;
    background-color: #393E46;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    align-items: center;
    align-content: center;
    margin-left: 90px;
    margin-top: 100px;
}

.img1:hover {
    scale: 1.07;
    transition: all .5s;
}

.img2 {
    width: 368px;
    height: 280px;
    background-color: #393E46;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    align-items: center;
    align-content: center;
    margin-left: 90px;
    margin-top: 100px;
}

.img2:hover {
    scale: 1.07;
    transition: all .5s;
}

.img3 {
    width: 368px;
    height: 280px;
    background-color: #393E46;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    align-items: center;
    align-content: center;
    margin-left: 90px;
    margin-top: 100px;
}

.img3:hover {
    scale: 1.07;
    transition: all .5s;
}

.recent a {
    display: inline-block;
}

.an1 {
    margin-top: 60px;
    margin-left: 200px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    background-color: #0088a9;
    padding: 15px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
}

.an1:hover {
    background-color: #015e75;
    transition: all .5s;
}

.an2 {
    margin-top: 60px;
    margin-left: 295px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    background-color: #0088a9;
    padding: 15px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
}

.an2:hover {
    background-color: #015e75;
    transition: all .5s;
}

.an3 {
    margin-top: 60px;
    margin-left: 320px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    background-color: #0088a9;
    padding: 15px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
}

.an3:hover {
    background-color: #015e75;
    transition: all .5s;
}

.contact h2 {
    margin-top: 250px;
    margin-left: 120px;
    font-size: 70px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    color: white;
}

.user {
    margin-left: 900px;
    width: 350px;
    height: 57px;
    color: white;
    background-color: #393E46;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.user1 {
    margin-left: 900px;
    color: white;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.mail {
    margin-left: 900px;
    width: 350px;
    height: 57px;
    color: white;
    background-color: #393E46;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.mail1 {
    margin-left: 900px;
    color: white;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.mess {
    margin-left: 900px;
    width: 567px;
    height: 252px;
    color: white;
    background-color: #393E46;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.mess1 {
    margin-left: 900px;
    color: white;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.send {
    margin-left: 900px;
    width: 200px;
    height: 57px;
    color: white;
    background-color: #0088a9;
    border: none;
    border-radius: 30px;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.send:hover {
    background-color: #015e75;
    transition: all .5s;
}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
} */