* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}
nav{
    display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 20px;
  background-color:lavenderblush; /* Black with 50% opacity */
  color: #fff;
  /* position: fixed; */
  width: 100%;
  /* top: 0;
  left: 0; */
  z-index: 1000;
}
nav button{
    border: 0px !important;
}
.nav-item{
    margin: 0px 10px;
}
.nav-item .nav-link{
    color: #3d567a;
}
.nav-item .nav-link:hover{
    /* font-weight: bold; */
    background-color: #3d567a;
    color: #f2eeee;
}
#logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}
#logo img {
  height: 80px;
  width: auto;
}
#drop{
    margin: 0px;
    background-color:#f2eeee;
}
#drop .dropdown-item{
    background-color: #f2eeee;
    padding: 10px 10px;
    border:1px solid white;
}
#drop .dropdown-item:hover{
    background-color: white;

}
/* mobilemenu */
@media (max-width:480px){
#logo{
    width: 100%;
    font-size: small;
}
#logo img{
    height: 40px;
}
}
/* ---------------------------parallalax------------------------------- */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Parallax section */
.parallax {
  background-image:url("../Interior_Designs/Project/bg_1.png"); /* Replace with your construction image */
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Optional second parallax with different image */
.parallax.second {
  background-image: url("../Interior_Designs/Project/bg_2.png");
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Foreground content section */
.content {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 100%;
  justify-content: space-between;
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}
.content h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.content p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}
.contents {
  display: flex;
  flex-direction: column;
  /* margin: auto !important; */
  width: 100%;
  /* justify-content: space-between; */
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}
.contents h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.contents p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}
#carousel_image .carousel-item img{
  width: 100%;
  height: auto;
}
/*------------------------------------- parallaxtext --------------------------------------------------------*/
/* <style> */
    /* Full-screen section with background image */
    .hero-section {
      position: relative;
      /* height: 100vh; */
      /* background-image: url('https://images.unsplash.com/photo-1581092334934-22addeb81d38'); Replace with your own */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      overflow: hidden;
    }

    /* Text container */
    .hero-text {
      z-index: 1;
      max-width: 90%;
      animation: fadeInUp 1.5s ease forwards;
      opacity: 0;
      transform: translateY(30px);
    }
    .hero-text p{
        font-size: 15px;
    }

    /* Background overlay for better readability */
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
      z-index: 0;
    }

    /* Animation keyframes */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1.25rem;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }
      p {
        font-size: 1rem;
      }
    }



  /* textanimationinbackground */
  
    .text-container {
      position: relative;
      height: 80px;
      overflow: hidden;
    }

    .text-container h1 {
      position: absolute;
      width: 100%;
      text-align: center;
      color: #82b530;
      font-size: 1.5rem;
      opacity: 0;
      animation: fallText 12s infinite;
    }
    

    .text-container h1:nth-child(1) {
      animation-delay: 0s;
    }

    .text-container h1:nth-child(2) {
      animation-delay: 4s;
    }

    .text-container h1:nth-child(3) {
      animation-delay: 8s;
    }

    @keyframes fallText {
      0% {
        transform: translateY(-100px);
        opacity: 0;
      }
      10% {
        transform: translateY(0);
        opacity: 1;
      }
      30% {
        transform: translateY(0);
        opacity: 1;
      }
      40% {
        transform: translateY(100px);
        opacity: 0;
      }
      100% {
        opacity: 0;
      }
    }

    @media (max-width: 600px) {
      .text-container h1 {
        font-size: 1.6rem;
      }
    }


    /*------------------------ hire inside content class container-------------------------------------- */