@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  font-family: "Poppins";
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: #770f05;
    border-radius: 0;
}

::-webkit-scrollbar-track {
    background: #d2a87a;
}


/* Navbar starts here */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #770f05;
  border-radius: 2px;
}
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.responsive-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  display: none;
}

.responsive-logo img {
  height: 50px;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  box-shadow: 2px 2px 5px gray;
}

.logo-info {
  display: flex;
  width: 50%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.logo-info .logo-info-text {
  font-size: 0.8rem;
  color: rgb(119, 15, 5);
  /* font-weight: bold; */
}

.navigations-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.navigations-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.navigations-links ul li {
  list-style: none;
}

.navigations-links ul li a {
  text-decoration: none;
  color: #770f05;
  transition: all 0.4s ease-in-out;
}

.navigations-links li a:hover {
  color: #8d261d;
}

.nav-sep {
width: 2px; 
height: 30px;
background-color: #f4ce8e;
}
.social-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 500px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 2px solid #f4ce8e;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  cursor: pointer;
}

.icon img {
  height: 24px;
  width: 24px;
  transition: transform 0.3s ease;
}

.icon:hover {
  background-color: #770f05;
  border-color: transparent;
}

.icon:hover img {
  transform: scale(1.2);
  filter: brightness(0) invert(1);
}

.contact-info {
  background-color: #770f05;
  color: white;
  width: 35%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
/* Navbar ends here */

/* Hero Section Styles goes here*/
.hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  transition: background-image 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hero hr {
  width: 50px;
  margin: 10px auto;
  border: 1px solid white;
}
.hero h1 {
  font-size: 3rem;
  margin: 20px 0;
}
.buttons {
  margin-top: 20px;
}
.buttons #back-btn {
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 1rem;
  border: 2px solid white;
  background: none;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.buttons #back-btn:hover {
  background: #ffffff90;
}

.buttons #peach-btn {
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #c49a6c;
  outline: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.buttons #peach-btn:hover {
  background-color: #c79056;
}

.dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dot {
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #c49a6c;
}
/* Hero Section ends here */

/* Info Cards between hero and about starts */
.info-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  top: -100px;
  flex-wrap: wrap;
}

.card {
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 250px;
  height: 250px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#card1 {
  background-color: #c49a6c;
}
#card2 {
  background-color: #d2a87a;
}
#card3 {
  background-color: #770f05;
}
/* Info Cards between hero and about ends */

/* About Content Section Starts here */
.content-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  gap: 40px;
  margin-bottom: 100px;
}

.text-content {
  flex: 1;
  text-align: left;
}

.text-content .small-para {
  font-size: 18px;
  color: #c49a6c;
  margin-bottom: 10px;
}

.text-content hr {
  width: 182px;
  border: 1px solid #c49a6c;
  margin: 10px 0 20px 0;
}

.text-content h2 {
  font-size: 36px;
  color: #770f05;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.button-group {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.button-group .btn {
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
}

.primary-btn {
  background-color: #770f05;
  color: white;
  border: none;
  outline: none;
  transition: all 0.4s ease-in-out;
}
.primary-btn:hover {
  background-color: #8d261d;
}
.secondary-btn {
  margin: 0 10px;
  border: 2px solid #c49a6c;
  background: none;
  color: #c49a6c;
  transition: all 0.4s ease-in-out;
}
.secondary-btn:hover {
  background-color: #c79056;
  color: white;
}

.image-content {
  flex: 1;
}

.image-content img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* About Content Section ends here */

/*Middle starts between about and services sections */
.middle-banner {
  position: relative;
  width: 80%;
  margin: -80px auto;
  text-align: center;
}

.middle-banner img {
  width: 100%;
  height: 180px;
  display: block;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 90%;
  text-align: center;
}

.banner-text h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 16px;
}
/* Middle banner ends between about and services sections */

/* Services section starts here */
.services {
  text-align: center;
  padding: 150px 5px;
  background-color: #fff3e0;
}

.service-heading {
  margin-bottom: 10px;
  padding: 60px;
}

.service-description {
  font-size: 1.2rem;
  color: #c49a6c;
  margin-bottom: 5px;
}

.service-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
  color: #770f05;
}

.my-hr {
  margin: 20px 0;
  width: 50%;
  border: 0;
  border-top: 2px solid #c49a6c;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background-color: #f4e4ca;
  padding: 30px;
  width: 330px;
  height: 300px;
  text-align: center;
  gap: 25px;
}

.card-header {
  color: #770f05;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px; 
  margin-bottom: 15px;
}

.card-header svg {
  margin-right: 10px;
}

.card-title {
  font-size: 1rem;
  text-align: left;
  font-weight: bold;
  text-align: left;
}

.card-description {
  font-size: 1rem;
  color: #7c766c;
  line-height: 1.6;
  text-align: left;
}

.service-cards .service-card:nth-child(3n) {
  margin-right: 0;
}
/* Services section ends here */

/* Contact section starts here */
.contact-section {
  padding: 50px 20px;
  background-color: #fef9f1;
}

.container {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
}

.left-column {
  flex: 1;
  max-width: 550px;
  text-align: left;
}

.intro-text {
  font-size: 1.2rem;
  color: #c49a6c;
  margin-bottom: 20px;
}

.section-title {
  color: #770f05;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}

.details-text {
  font-size: 1rem;
  color: #343434;
  line-height: 1.6;
}

#details-text {
  color: #c49a6c;
}

.contact-info-box {
  background-color: #f4e4ca;
  padding: 20px;
  gap: 10px;
  display: flex;
  margin-top: 30px;
}

.contact-item {
  gap: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item span {
  font-size: 1rem;
  color: #555;
}

.right-column {
  flex: 1;
  max-width: 500px;
}

.contact-form {
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group input::placeholder,
textarea::placeholder {
  color: #c49a6c;
}
.form-group input,
.form-group textarea {
  font-family: "Roboto", sans-serif;
  width: 100%;
  padding: 10px;
  color: #c49a6c;
  font-size: 1rem;
  outline: none;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: 2px dotted #c49a6c;
  background-color: #fef9f1;
}

.form-group textarea {
  resize: vertical;
}

.custom-select {
  position: relative;
  width: 200px;
  font-family: sans-serif;
}

.selected {
  background: white;
  outline: none;
  border-left: none;
  border-top: none;
  border-right: none;
  border-bottom: 2px dotted #c49a6c;
  cursor: pointer;
  width: 100%;
  padding: 10px;
  color: #c49a6c;
  font-size: 1rem;
  background-color: #fef9f1;
}

.select-options {
  color: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  border: 1px solid #ccc;
  z-index: 1;
  background: #c79662;
}

.select-options li {
  padding: 10px;
  cursor: pointer;
  list-style: none;
}

.select-options li:hover {
  background: #c79056;
  color: white;
}

.submit-button {
  display: inline-block;
  background-color: #c49a6c;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
}

.submit-button:hover {
  background-color: #c79056;
}
/* Contact section ends here */

/* footer starts here */
.footer {
  background-color: #c49a6c;
  color: white;
  text-align: center;
}

.footer .foot-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

.footer-text {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* footer ends here */

/* Responsive Styling With Media Queries */
/* Navbar Starts */
@media (max-width: 1430px) {
  .responsive-logo {
    display: block;
  }
  
  nav {
    flex-direction: column;
    align-items: center;
    padding: 8px;
    
  }

  .logo-info {
    position: static;
    width: auto;
    flex-direction: row;
    gap: 10px;
  }

  .logo-info{
    display: flex;
    align-items: center;
  }

  .hamburger {
  margin: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  padding: 10px; 
}

.hamburger img {
  width: 22px; 
  height: auto;
  transition: transform 0.3s ease;
}

 
 .navigations-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fef9f1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    z-index: 1000;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  .navigations-links.open {
    max-height: 100vh;
    opacity: 1;
  }
  
  .navigations-links ul {
    flex-direction: column;
    gap: 10px;
    width: 95%;
  }


  .nav-sep {
    height: 1px;
    width: 100%;
    /* display: none; */
  }

  .contact-info {
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    width: 45%;
  }
  
  .contact-info.my-open{
    max-height: 500px;
    }

  .social-wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* Navbar ends */

/* Info Cards between hero and about starts */
@media (max-width: 1430px) {
  .info-cards {
    flex-direction: row;
  }
}
/* Info Cards between hero and about ends*/

/* About section */
@media (max-width:1430px){
  .content-section{
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .content-section .text-content{
    max-width: 681px;
  }
}

/* Middle banner between about and services starts */
@media (max-width: 1430px) {
  .banner-text h2 {
    font-size: 1.5rem;
  }

  .banner-text p {
    font-size: 0.9rem;
  }

  .middle-banner {
    margin: px auto 0;
  }
}

/* Middle banner between about and services ends */

/* Services section starts */
@media (max-width: 1430px) {
  .service-cards {
    align-items: center;
  }

  .service-card {
    margin-bottom: 20px;
  }
}
/* Services section ends */

/* Contact section starts */

  @media (max-width: 1430px) {
    .container {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  
    .left-column,
    .right-column {
      max-width: 691px;
      width: 100%;
      margin-bottom: 40px;
    }
  
    .contact-info-box {
      flex-direction: column;
    }
  }
  

/* Contact section ends */
@media (max-width:1310px){
  .service-cards{
    flex-direction: column;
  }
}