/* Default Styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: 'Mukta', sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;

}
/*end of default styles*/

/* Container */
.container {
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
 
}

/*Navigation */
.navbar {
    position: fixed;
    top:0;
    left:0;
    z-index: 10;
    width: 100%;
    height:12rem;
    padding: 0 15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.navbar.sticky{
    height: 8rem;
    background-color: #fff;
    box-shadow: 0 1rem 10rem rgba(130, 162, 235, 0.6);
}

/*Logo */
.logo {
    display: flex;
    flex-direction: column;
    font-family: "Mooli", cursive;
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
    display: inline; /* Ensures the text stays on the same line */

}

.logo span{
    display: flex;
    flex-direction: column;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    display: inline; /* Keeps the span inline with the text */
    text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3)

}

.sticky .logo {
    color: #453333;
    text-shadow: none;
}

.sticky .logo span {
    color: #453333;
    text-shadow: none;
}

/*End of Logo*/

/*Nav items*/
.nav-items{
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}

.sticky .nav-link {
    color: #453333;
    text-shadow: none;
}

.sticky .nav-item {
    color: #453333;
    text-shadow: none;
}

.nav-item{
    list-style: none;
}


.nav-link{
    font-size: 2rem;
    text-transform: uppercase;
    display: flex;
    color: #ffffff;
    letter-spacing: 0.2rem;
    transition: transform 0.3s;
}

.nav-link:hover {
    transform: translateY(-0.2rem);
}


/*End of Navigation */


/* header */
header {
    width: 100%;
    height: 100vh;
    position: relative;
}

/*banner*/
.banner {
    position: absolute;
    top: 18%;
    left: 20%;
    z-index: 4;
}

.banner h1 {
    font-family: "Mooli", cursive;
    font-size: 90px;
    color: #f7a6b0;
    text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3)

}

.banner h1 span{
    font-family: "Mooli", cursive;
    font-size: 90px;
    color: #fff;
    text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3)

}

.banner h3 {
    font-size: 3rem;
    font-weight: 300;
    color: #453333;
    text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    margin: 2rem 0 3rem 0;

}


/* end of banner */




/* backgrounds */
.backgrounds div {
    position: absolute;
}

.bg-main {
    width:150%;
    height: 150%;
    background: linear-gradient(to left, transparent, #d3baf6, #b486f5);
    top: -95%;
    left: -10%;
    transform: rotateZ(-15deg)skewX(30deg);
    border-radius: 0 0 0 10rem;
    opacity: 0.9;
    z-index: 1;

}

.bg-1 {
    width: 50%;
    height: 100%;
    background: linear-gradient(transparent 60%,#fce1e4, #f7a6b0);
    top: -40%;
    right: -10%;
    transform: rotateZ(-15deg)skewX(30deg);
    border-radius: 0 0 0 5rem;
}

.bg-2 {
    width: 50%;
    height: 100%;
    background: linear-gradient(transparent 63%, #f9c0c6, #ffd863);
    top: -60%;
    right: 10%;
    transform: rotateZ(-15deg)skewX(30deg);
    border-radius: 0 0 0 5rem;
    z-index: 2;
    opacity: 0.4;
    box-shadow: 7rem 4rem 6rem rgb(85, 52, 119, 0.9);
}

.scroll-indicator {
  position: absolute;
  bottom: 5vh;  /* Adjusts based on the viewport height */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
  
  .arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    animation: moveDown 1s infinite ease-in-out;
  }
  
  /* Bouncing animation for the arrow */
  @keyframes moveDown {
    0% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(10px) rotate(45deg); }
    100% { transform: translateY(0) rotate(45deg); }
  }
  


.about {
    width: 100%;
    height: auto; /* Let the height adapt naturally */
    padding-top: 5rem; /* Add some padding to the top */
    position: relative;
  }

.about h1 {
    font-family: "Mukta", cursive;
    font-size: 7rem;
    font-weight: bold;
    color: #453333;
    margin-bottom: 4rem;
    margin-top: 5rem;
    margin-left: 10rem;

}

/*overview */

.overview {
    width:100%;
    position: relative;
    display: flex; /* Use flexbox to center children */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
  }

.overview-wrapper {
    width: 60%;
    background-color: #f7a6b0;
    box-shadow:0 2rem 6rem rgba(130, 162, 235, 0.3);
    padding: 2rem 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.overview-wrapper h1 {
    font-family: "Mukta", cursive;
    font-size: 3rem;
    font-weight: bold;
    color: #453333;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

.intro {
    font-family: "Mooli", cursive;
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    margin: 0 0 3rem 1rem;
    text-align: center;
    
}



.about-more {
    width: 100%;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    padding-top: 8rem;

  }
  
  .about-more-wrapper {
    width: 70%;
    background-color: #ffe0e5; /* Light complementary background */
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1); /* Subtle depth */
    padding: 2.5rem;
    border-radius: 1rem;
    color: #453333;
    font-family: "Mooli", cursive;
   
  }
  
  .about-more-wrapper h2 {
    font-family: "Mukta", cursive;
    font-size: 3rem;
    font-weight: bold;
    color: #453333;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .about-more-wrapper p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    display: block;
    align-items: unset;
    gap: 1rem;
  }
  
  .about-more-wrapper a {
    display: inline-block; /* Keeps the link on the same line */
    white-space: nowrap;   /* Prevents wrapping inside the link */
    color: #453333;
    text-decoration: underline;
    font-weight: bold;
  }
  
  .about-more-wrapper a:hover {
    color: #f76c82; /* Hover effect for links */
  }

  .experience {
    position: relative;
    padding-top: 8rem; /* Add some padding to the top */
    margin-left: 10rem

  }

.experience h1 {
    font-family: "Mukta", cursive;
    font-size: 7rem;
    font-weight: bold;
    color: #453333;
    margin-bottom: 4rem;
}


.experiments-projects {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .projects-wrapper {
    
    width: 80%;
    background-color: #dbc0fa;
    box-shadow: 0 3rem 4rem rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 1rem;
    color: #453333;
    font-family: "Mooli", cursive;
    
  }
  
  .projects-wrapper h2 {
    font-family: "Mukta", cursive;
    font-size: 3rem;
    font-weight: bold;
    color: #453333;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .projects-wrapper .project {
    margin-bottom: 2rem;
  }
  
  .projects-wrapper h3 {
    font-size: 2rem;
    color: #453333;
    margin-bottom: 1rem;
  }
  
  .projects-wrapper p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  
  .projects-wrapper a {
    color: #453333;
    text-decoration: underline;
    font-weight: bold;
  }
  
  .projects-wrapper a:hover {
    color: #f76c82; /* Link hover effect */
  }

  .contact {
    width: 100%;
    position: relative;
    padding-top: 10rem;
  }

  .contact-wrapper {
  
    width: 100%;
    height:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .contact-header {
    text-align:center;
  }

  .contact-header h1 {
    font-family: "Mukta", cursive;
    font-size: 7rem;
    font-weight: bold;
    color: #453333;
  }

  .contact-content {
    display: flex;
  }

  .contact-content-wrapper {
    width: 45rem;
    height: 60rem;
    background-color: #fff;
    box-shadow: 0 1rem 5rem rgba(130, 162, 235, 0.3);
    padding: 4rem 2rem;
    border-radius: 1rem;
    margin: 0 3rem;
    text-align: center;
  }

  .contact-content-wrapper h4 {
    font-family: "Mooli", cursive;
    font-size: 1.6rem;
    font-weight: 300;
    color: #f76c82;
    letter-spacing: 0.1rem;
    margin: 3rem 0 1rem 0;
  }

  .contact-content-wrapper form {
    display: flex;
    flex-direction: column;
  }

  .contact-content-wrapper input,
  .contact-content-wrapper textarea {
    width: 100%;
    margin: 2rem 0;
    background-color: #f0f2f4;
    padding: 1rem 1rem 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 300;

  }

  .contact-content-wrapper input {
    height: 5rem;
  }

  .contact-content-wrapper textarea {
    height: 10rem;
    resize: none;
  }


  .contact-content-wrapper input::placeholder,
  .contact-content-wrapper textarea::placeholder {
    color: #3a3242;
  }

  .contact-content-wrapper button {
    height: 5rem;
    background: linear-gradient(to right, #fce1e4, #f7a6b0);
    border: none;
    border-radius: 5rem;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: #3a3242;
    cursor: pointer;
  }

  footer {
    text-align: center; /* Center-align the footer content */
    position: relative;
    width: 100%; /* Ensure it spans the full width of the page */
    box-sizing: border-box; /* Include padding in width calculations */
    margin-top: 5rem;
    margin-bottom: 4rem;
  }
  
  footer a{
    display: inline-block;
    margin-bottom: 1rem;
  }

  .linkedin-logo {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    transition: transform 0.2s; /* Add a hover effect */
  }
  
  .linkedin-logo:hover {
    transform: scale(1.1); /* Slightly enlarge the logo on hover */
  }

  footer p {
    margin: 0;
    font-family: "Mooli", cursive;
    font-size: 2rem;
    color: #453333;
  }
  



/* end of container */


/*responsive */
@media(max-width: 1600px) {
  html {
    font-size: 60%;
  }
  
  .navbar {
    padding: 0 10rem;

  }

  .overview-wrapper {
    width: 70%;
  }
}

@media(max-width: 1440px) {
  html {
    font-size: 58%;
  }

  .nav-items {
    width: 60%;
  }
}

@media(max-width: 1366px) {
  html {
    font-size: 56%;
  }
  
}

@media(max-width: 1280px) {
  html {
    font-size: 52%;
  }
  
}


@media(max-width: 1024px) {
  html {
    font-size: 48%;
  }

  .banner {
    top: 16%;
    left: 18%;
  }

  .banner h1 {
    font-size: 9rem;
  }

  .banner h1 span{
    font-size: 9rem;
  }

  .about-more-wrapper {
    width: 80%;
  }

  .bg-main {
    left: -25%;
  }

  .bg-1 {
    right: -5%;
  }

  .bg-2 {
    width: 60%;
  }
  
}
  

@media(max-width: 820px) {

  html {
    font-size: 44%;
  }

  .about-more-wrapper {
    width: 90%;
  }

.hamburger .nav-bar {
  background-color: #fff;
}

.hamburger .navbar .logo span{
  text-shadow: none;

}

.nav-items {
  display: none;
}

  .hamburger .nav-items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 12rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 12rem);
    background-color: #f2f4f5;
  }

  .hamburger .nav-item {
    width: 100%;
    height: 12rem;
    display: flex;
    align-items: center;
    padding-left: 3rem;
  }

  .hamburger .nav-item a {
    color: #092627;
    text-shadow: none;
  }

  .menu-icon {
    width: 4rem;
    height: 2rem;
    position: aboslute;
    top: 5rem;
    right: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all.3s;
  }

  .position.menu-icon {
    top: 4rem;
    transform: translateY(-50%);
  }

  .line {
    width: 100%;
    height: 0.4rem;
    background-color: #fff;
    transition: transform .3s ease;
  }

  .navbar.sticky .line {
    background-color: #453333;
  }

  .hamburger .line {
    background-color: #453333;

  }

  .hamburger .line-1 {
    transform: rotate(45deg)translateY(1.2rem);
  }

  .hamburger .line-2 {
    transform: rotate(-45deg)translateY(-1.2rem);
  }

  header {
    height: 70vh;
  }

  .bg-main {
    width: 250%;
    top: -105%;
    left: -50%;
  }

  .overview-wrapper {
    width: 80%;
  }
  
}

@media (max-width: 768px) {
  .about-more-wrapper {
    width: 95%;

  }

  a {
    float: none; /* Removes float */
    white-space: normal;


    display: inline-block; /* Prevents wrapping while keeping inline behavior */
  }
  

}

@media (max-width: 430px) {

  html{
    font-size: 45%;
  }

  .banner {
    left: 8%;
  }

  .bg-main {
    top: -75%;
    left: -120%;
    background-color: linear-gradient(to left, #d3baf6, #b486f5);
  }

  .bg-2 {
    left: 20%
  }

  .about h1 {
    margin-left: 3rem;
    font-size: 5rem;
  }

  .experience {
    margin-left: 3rem
  }
  .experience h1 {
    font-size: 5rem;
}

.contact-header{
  font-size: 5rem;
}
}

@media(max-width: 375px) {
  .logo {
    font-size: 3rem;
  }
  .logo span {
    font-size: 4rem;
  }
}
