/*  import google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
a{
    color: inherit;
}
section {
    padding: 100px 0;
}
.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about,
footer {
    font-family: "Poppins", sans-serif;
}

section .title {
    position: relative;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: "Ubuntu", sans-serif;
}
section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #fff;
    transform: translateX(-50%);
}
section .title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #292929;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: "Ubuntu", sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky {
    padding: 15px 0;
    background: #292929;
}
.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span {
    color: #e59c19;
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span {
    color: #fff;
}
.navbar .menu li {
    list-style: none;
    display: inline-block;
}
.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover {
    color: #e59c19;
}
.navbar.sticky .menu li a:hover {
    color: #fff;
}

/* home section styling */
.home {
    display: flex;
    background: url("images/bg1.jpg") no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: "Ubuntu", sans-serif;
}
.home .max-width {
    width: 100%;
    display: flex;
}
.home .max-width .row {
    margin-right: 0;
}
.home .home-content .text-1 {
    font-size: 27px;
}
.home .home-content .text-2 {
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}
.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-3 span {
    color: #e59c19;
    font-weight: 500;
}
.home .home-content button {
    margin-top: 1rem;
    padding: 1rem 2.5rem ;
    font-weight: 500;
}

.home .home-content button a {
    font-size: 25px;
}

/* about section styling */

.about,
.project {
    background: url("images/bg2.jpg");
    background-size: cover;
    color: #fff;
}
.about .title::after {
    content: "who i am";
}
.about div {
    padding: auto;
}
.about .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.about-content .left {
    display: flex;
    justify-content: center;
    justify-items: start;
}
.about .about-content .left {
    margin-bottom: 20px;
    width: 30%;
}
.about .about-content .left img {
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.about .about-content .right {
    width: 70%;
    padding-right: 40px;
}
.about .about-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span {
    color: #292929;
}
.about .about-content .right p {
    text-align: justify;
}
#dp {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    border: 5px double #29292950;
}
#dp:hover {
    border: 15px solid #29292960;
    transform: scale(1.2);
    transition: all 1.1s ease;
}

/* project */
.container {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    width: 250px;/* padding: 20px; */
    filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.projects-slider {
    position: relative;
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}
.slider-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.banner-image {
    background-position: center;
    background-size: cover;
    object-fit: cover;
    height: 250px;
    width: 250px;
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.255);
}
.content-wrapper{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.project-title{
    font-size: 2rem;
    margin-bottom: 1em;
    font-weight: 500;
    text-align: center;
    font-family: "Ubuntu", sans-serif;
    text-shadow: #fff;
}
.projects-flex{
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
}
.wrapper {
    width: 100%;
    height: 100%;
}
.bg-blur {
    padding: 20px 10px 40px 10px;
    background: #29292950;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #ffffff50;
}
/* button */
.menu-btn {
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.button-wrapper {
    margin-top: 18px;
}
.btn {
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 12px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
}

.btn + .btn {
    margin-left: 10px;
}

.outline {
    background: transparent;
    color: #fff;
    border: 1px solid #ffffff55;
    transition: all 0.3s ease;
}

.outline:hover {
    transform: scale(1.125);
    color: #e59c19;
    border-color: #e59c1975;
    filter: drop-shadow(0 10px 5px #e59c1955);
    transition: all 0.3s ease;
}

.fill {
    background: #e59c19;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0);
    font-weight: bold;
    transition: all 0.3s ease;
}

.fill:hover {
    transform: scale(1.125);
    border-color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 10px 5px #ffffff25);
    transition: all 0.3s ease;
}
/* Scroll Button */
.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: #292929;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover {
    filter: brightness(90%);
}

/* footer section styling */
footer {
    background: #292929;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a {
    color: #292929;
    text-decoration: none;
}
footer span a:hover {
    text-decoration: underline;
}
