/* header */
body {
  background-color: rgb(252, 251, 250);
  overflow-x: hidden;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: black;
  text-decoration: none;
}

.hanken-grotesk {
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.cormorant-garamond-light {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: normal;
}

.sticky {
  top: 0;
  position: sticky;
}

.nav {
  justify-content: space-between;
  padding: 50px 30px;
}

.logo {
  width: 80px;
  height: 40px;
}

.menu-item {
  gap: 20px;
  display: flex;
}

.menu-item div {
  display: flex;
  /* Enables Flexbox */
  justify-content: space-around;
  /* Ensures even spacing between items */
  align-items: center;
  /* Vertically aligns items */
  padding: 10px;
  font-size: 12px;
  font-weight: 600;

}

.social-icons {
  display: flex;
  justify-content: space-between;
  gap: 35px;

}

.social {
  width: 18px;
  height: 20px;

}

.social-insta {
  width: 15px;
  height: 15px;
}

.social-icons a {
  color: black;
  text-decoration: none;
  margin-top: -5px;
}

/* section-1 */
.section-1 {
  justify-content: center;
}

.section-1 h3 {
  font-size: 16px;
  letter-spacing: 5px;
  color: black;
  font-weight: 400;
  display: flex;
  justify-content: center;

}

.section-1 h2 {
  font-size: 120px;
  letter-spacing: -8px;
  color: black;
  font-weight: 600;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.section-1-h1 {
  font-size: 120px;
  letter-spacing: -8px;
  color: black;
  font-weight: 600;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

/* section-2 */
.sec-two-div1 {
  text-align: center;
  padding: 120px 0px 120px 0px;
}

.sec-two-div1-img {
  width: 686px;
  height: auto;


}

.sec-two-div1 h5 {
  font-weight: 600;
  font-size: 22px;
  padding-bottom: 10px;
}

.sec-two-div1 h2 {
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -2.5px;
  line-height: 50px;
  padding: 0 100px;
}

.sec-two-div1 h3 {
  font-weight: 300;
  font-size: 18px;
  padding: 20px 140px;
  line-height: 20px;
  text-align: center;
}

.sec-two-div1 .left2 {
  padding: 30px 0px 0px 0px;
}

.sec-two-div1 .left2 h5 {
  padding-left: 120px;
  text-align: left;
  font-size: 18px;
  font-weight: 100;
  line-height: 1px;
}

.sec-two-div1 .left2 h3 {
  text-align: left;
  padding-left: 130px;
  padding-right: 100px;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 50px;
  padding-bottom: 40px;
}

.sec-two-div1 .left2 h6 {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 1px;
  color: rgb(66, 65, 65);
  padding-bottom: 60px;
}

.sec-two-div1 .left2 img {
  width: 686px;
  height: 476px;
  object-fit: cover;
}

/* sec-two-div2   right side */
.sec-two-div2 {
  padding: 120px 120px 120px 0px;
}

.sec-two-div2 img {

  width: 340px;
  height: 400px;
  padding-top: 20px;
  /* margin-right: 350px; */
  object-fit: cover;

}

.sec-two-div2 h3 {
  font-size: 34px;
  font-weight: 600;
  text-align: justify;
  text-align: center;

}

.separator {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* Space between the lines */
}

.separator-line {
  flex: 1;
  margin: 0 150px;
  height: 0.3px;
  background-color: #ccc;
  /* Adjust color as needed */
}

.sec-two-div2 p {
  display: flex;
  font-weight: 300;
  font-size: 15px;
  padding: 20px 10px;
  line-height: 20px;

}

.button-box {
  display: flex;
  justify-content: center;
  /* Centers the button */
  align-items: center;
  padding: 3px 3px;
  /* Adjust as needed for spacing around the button */
  background-color: rgb(252, 251, 250);
  /* White background for the box */
  border: 1px solid rgb(121, 120, 120);
  /* Optional: Light border for definition */
  border-radius: 1px;
  /* Rounded corners for the box */
  margin: 0 90px;
}

/* Button styling */
.button-link {
  display: inline-block;
  text-decoration: none;
  /* Removes underline */
  color: black;
  /* Text color */
  /* Button background color */
  padding: 10px 0px;
  /* Adjust padding for button size */
  border-radius: 5px;
  /* Rounded corners */
  font-size: 16px;
  /* Font size */
  font-family: Arial, sans-serif;
  /* Font family */
  transition: background-color 0.3s ease, transform 0.2s ease;
  /* Smooth effects */
}

/* Button hover effect */
.button-link:hover {

  transform: scale(1.05);
  /* Slightly enlarges button on hover */
}

/*  */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 5px;
}

.no-border {
  border-bottom: none;
}

.faq-item button {
  background: none;
  border: none;
  color: #000;
  font-size: 1rem;
  text-align: left;
  width: 100%;
}

.faq-item button:focus {
  outline: none;
}

.faq-item button:hover {
  color: black;
}

.faq-item .collapse {
  padding-top: 10px;
}

.btn {
  color: #000;
  background-color: #000;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0rem rgb(57, 57, 57);
}



/*  */

/* Button text */
.button-text {
  display: inline-block;
}

.h3 {
  margin-top: 80px;
}

/* .social-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 40px;
  }
  .social-icon a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    width: 100%;
  }
  .social-icon i{
    font-size: 20px;
  }
  .icon-wrap {
    margin-right: 10px;
    font-size: 20px;
  }
  */
.iconslabel {
  text-transform: uppercase;
}

.promo-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px 0;
}

.promo-grid-item {
  width: 100%;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 1px;
  overflow: hidden;


}

.services-link {
  text-decoration: none;
  color: inherit;
}

.bg-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  /* transition: transform 0.5s ease; Smooth zoom effect */

}

.overlay {
  display: flex;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 20px;
  font-weight: bold;

  z-index: 1;
  /* Keeps the text above the image */
  background-color: rgba(0, 0, 0, 0.3);
  /* Semi-transparent black background */
  align-items: center;
  /* Center content vertically */
  justify-content: center;
  /* Center content horizontally */
}

.bg-image:hover {
  /* transform: scale(1.3); Zoom in effect on hover */
  object-fit: contain;

}

.promoheading {
  font-size: 25px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -1px;
}

.ad-container {
  display: flex;
  justify-content: center;
  align-items: center;

}

.ad-container .ad-image {
  width: 100%;
  height: auto;
  display: flex;
  border: none;
  transition: transform 0.3s ease-in-out;
  /* Smooth scaling effect */

}

/*section 3  */
.follow-section {
  text-align: center;
  padding: 50px 20px;
  background-color: black;
}

.follow-heading .follow-title {
  display: block;
  font-size: 25px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0px;
  letter-spacing: 6px;
}

.follow-heading .username {
  display: block;
  font-size: 60px;
  letter-spacing: -2px;
  font-style: italic;
  color: #fff;
  padding-bottom: 10px;
}

.follow-heading .description {
  font-size: 14px;
  color: white;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-item {
  text-align: center;
}

.social-item a:hover {
  color: white;
}


.social-link {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-link li {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 10px;
}

li {
  list-style-type: none;
  /* Removes the dots */
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}
li {
  list-style: none; /* Removes dots and other styling */
}

.social-link p {
  font-size: 15px;
  color: white;
  font-weight: 800;
}

.social-link li a {
  color: white;

}

/* footer-sec */
.footer-sec {

  color: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  padding: 30px;
}

.copyright {
  display: flex;
  justify-content: center;
  color: black;
}

.logo-size {
  width: 60px;
  height: 30px;
}

.footer-icons {
  gap: 20px;
  display: flex;
}

.footer-icons a {
  color: black;
  text-decoration: none;
  padding-top: 3px
}


.footer-iconsize {
  width: 18px;
  height: 18px;
}

/* detail page */
.detail .section-2 {
  padding: 150px 0px;
  display: flex;
  width: 100%;
  margin: 0 60px;
}

.left-detail {
  width: 50%;
  text-align: center;
}

.detail-h3 {
  padding-top: 70px;
  display: flex;
  font-size: 26px;
  letter-spacing: -1px;
  justify-content: center;

}

.detail-h1 {
  display: flex;
  font-size: 73px;
  font-weight: 100;
  letter-spacing: -3px;
  line-height: 66px;
  padding: 10px 0px 30px 0px;

}

.detail-p {
  padding: 0 0px;
  text-align: left;
}

.right-detail {
  width: 50%;

}

.right-detail img {
  width: 500px;
  height: 807px;
  padding: 0 0 0 40px;
  object-fit: cover;

}



/* Responsive Design */
@media (max-width: 768px) {
  .social-links {
    flex-direction: column;
    gap: 20px;
  }




}