body {
  margin: 0;
  font-family: Arial, sans-serif;
}

   

.social-icons {
  position: fixed;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 1000;
}

.social-icons a {
  display: block;
  margin: 5px 0;
  color: white;
  background-color: #333;
  padding: 8px;

  text-align: center;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: #b08c5a;
}


/* slider  */
.carousel-item img {
  height: 87vh;
  width: 100%;
  object-fit: cover;
}

/* Desktop and large screens */
@media (min-width: 768px) {
  .carousel-item img {
    height: 87vh;
  }
}

/* Tablets */
@media (max-width: 767.98px) {
  .carousel-item img {
    height: 60vh;
  }
}

/* Small mobiles */
@media (max-width: 575.98px) {
  .carousel-item img {
    height: 50vh;
  }
}


@media (max-width: 768px) {
  .get-quote {
    margin-top: 10px;
    display: block;
  }

.social-icons{
  display: none;
}
  .carousel-item img {
    height: 45vh;
    object-fit: cover;
  }
}


/* about section  */

/* About Section */
.about-container {
  position: relative;
  display: flex;
  height: 120vh;
  overflow: hidden;
  margin-top: 100px;
  padding: 0 2rem;
}

.left,
.right {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.left {
  flex: 1;
  transform: translateX(-100%);
}

.right {
  position: absolute;
  top: 15%;
  right: 50px;
  width: 55%;
  background-color: #fdfcfa;
  padding: 4rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
}

.show-left {
  transform: translateX(0);
  opacity: 1;
}

.show-right {
  transform: translateX(0);
  opacity: 1;
}

.left img {
  width: 60%;
  height: 60%;
  object-fit: cover;
}

.right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #1d1c1a;
  margin-bottom: 1rem;
}

.right p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d6c3b0;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  color: #a47d57;
  font-size: 1rem;
  gap: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
  text-decoration: none;
  margin-top:-100px !important;
}

.read-more::before {
  content: "\2022";
  color: #d6a97e;
  font-size: 1.5rem;
}

.support {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.support-icon {
  font-size: 2.5rem;
}

.support-text {
  font-family: 'Playfair Display', serif;
  color: #1d1c1a;
  font-size: 1.3rem;
}

.support-number {
  color: #d6a97e;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.2rem;
}

.circle-container {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spin 10s linear infinite;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(0deg);
  font-size: 0.8rem;
  color: #888;
}

.circle-text span {
  position: absolute;
  transform-origin: center;
  font-weight: bold;
}

.circle-dot {
  width: 15px;
  height: 15px;
  background-color: #a47d57;
  border-radius: 50%;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  /* Container styling */
  .about-container {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 0rem 1rem; /* Enhanced padding for better spacing */
    gap: 2rem; /* Space between elements */
    margin-top: 20px;
    background-color: #f9f9f9; /* Light background for contrast */
  }

  /* Left and right sections */
  .left,
  .right {
    position: relative;
    transform: translateX(0) !important;
    opacity: 1 !important;
    transition: none;
  }

  .left {
    order: 2;
    display: flex;
    justify-content: center;
    /* margin-top: 2rem; */
  }

  .left img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for images */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
    margin-bottom:20px;
  }

  .right {
    order: 1;
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 2rem 1.5rem;
    background-color: #fff; /* White background for content */
    border-radius: 12px; /* Rounded corners for the content box */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Light shadow */
  }

  /* Text styling */
  .right h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    text-align: center;
    color: #333; /* Darker color for the header */
  }

  .right p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    color: #555; /* Softer color for body text */
  }
a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none !important;
}
  /* Read more button */
  .read-more {
    margin: 1rem auto 0 auto;
    display: block;
    text-align: center;
    background-color: #c29e7d;
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration:none !important;
  }

  .read-more:hover {
    background-color: #fff;/* Darker shade on hover */
  }

  /* Support section adjustments */
  .support {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
    gap: 1rem;
  }

  .support-icon {
    font-size: 2rem;
    color: red !important; /* Icon color for consistency */
  }

  .support-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: red; /* Clearer text */
  }
  .support-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333; /* Clearer text */
  }
  /* Circle container */
  .circle-container {
    top: 1rem;
    right: 1rem;
    width: 100px;
    height: 100px;
    /* background-color: #007bff; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 0.6rem;
  }

  .circle-text {
    font-size: 0.6rem;
  }

  .circle-dot {
    width: 10px;
    height: 10px;
    background-color: #c29e7d;
    border-radius: 50%;
  }
}


/* about section */

/* feature section  */


/* Section background and title */
.featured-section {
padding:80px  0px;
background: url('https://html.designingmedia.com/hillcrest/assets/images/service-background.jpg') no-repeat center center/cover;
position: relative;
display: flex;
flex-direction: column;
align-items: center;

}

.section-title {
font-size: 3rem;
text-align: center;
margin-bottom: 60px;
position: relative;
z-index: 1;
color: white;
font-family: 'Playfair Display', serif;
}
.hanging-lights {
position: absolute;
top: 0;
left: 50px;
z-index: 2;
display: flex;
gap: 40px;
}

.light {
width: 150px;
animation: wave 4s ease-in-out infinite, flicker 1.5s infinite alternate;
}

.light.delay {
animation-delay: 2s; /* Delay for the second light */
}

/* Wave-like Animation for Left-Right Movement */
@keyframes wave {
0%, 100% {
transform: translateX(0);
}
25% {
transform: translateX(-20px);
}
50% {
transform: translateX(20px);
}
75% {
transform: translateX(-15px);
}
100% {
transform: translateX(0);
}
}

/* Strong On/Off Flicker Effect */
@keyframes flicker {
0% {
opacity: 1;
filter: brightness(1.4);
}
20% {
opacity: 0.8;
filter: brightness(0.8);
}
40% {
opacity: 1;
filter: brightness(1.5);
}
60% {
opacity: 0.7;
filter: brightness(0.6);
}
80% {
opacity: 0.9;
filter: brightness(1.2);
}
100% {
opacity: 1;
filter: brightness(1.3);
}
}

@media (max-width: 768px) {
  .featured-section {
    padding: 50px 20px;
    background-position: center;
    background-size: cover;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .hanging-lights {
    display: none;
  }

  .light {
    display: none;
  }
}

/* feature section  */
/* why section */

.why-us-section {
  background-color: #fff;
  padding: 10px 0;
  border-top: 1px solid #ddd;
}

.why-us-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.why-box {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
  background-color: #fff;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border: 2px solid #c2a063;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 32px;
  color: #c2a063;
}

.why-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  font-family: Georgia, serif;

}

.why-box p {
  font-size: 14px;
  color: #555;
  max-width: 250px;
  margin: auto;
  
  line-height: 1.6;
}

/* mobile view section  */
@media (max-width: 768px) {
  .why-us-container {
    flex-direction: column;
    border-left: none;
    border-right: none;
  }

  .why-box {
    border-left: none;
    border-right: none;
    border-top: 1px solid #ddd;
    padding: 30px 15px;
  }

  .why-box:first-child {
    border-top: none;
  }

  .why-box p {
    max-width: 100%;
  }
}

/* why section */


/* team section */
.team-section {
  padding: 40px 20px;
  text-align: center;
  background: url('https://html.designingmedia.com/hillcrest/assets/images/service-background.jpg') no-repeat center center/cover;
  background-size: cover;
  background-position: center;
  height: auto;

}

/* Hanging Lights aligned to the right */
.hanging-lights2 {
  display: flex;
  justify-content: flex-end;

}

.hanging-lights2 img {
  height: 200px;
  width: 150px;
  margin-top:-35px
}

.team-section h1 {
  font-family: Georgia, serif;

  font-size: 48px;
  color: white;
  margin-bottom: 50px;
  margin-top:-80px;

}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top:50px;

}

.team-member {
  position: relative;
  width: 270px;
  background-color: #c29e7d;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  text-align: center;
}

.team-member::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #a37b58;
  border-radius: 50%;
}

.team-member img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.team-info {
  padding: 20px 10px;
}

.team-info h3 {
  font-size: 16px;
  font-weight: bold;
  font-family: Georgia, serif;

}

.team-info p {
  font-size: 13px;
  margin-top: 5px;
}

.social-icons2 {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons2 a {
  color: white;
  background: #1f1f1f;
  padding: 10px;
  
  font-size: 16px;
  transition: background 0.3s;
}

.social-icons2 a:hover {
  background: #333;
}

/* responsive */
@media (max-width: 768px) {
  .team-section {
    padding: 30px 15px;
    background-position: center;
    background-size: cover;
  }

  .hanging-lights2 {
    display: none; /* Hide lights on mobile */
  }

  .team-section h1 {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .team-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .team-member {
    width: 90%;
    max-width: 300px;
  }

  .team-member img {
    height: auto;
  }

  .team-info {
    padding: 15px 10px;
  }

  .team-info h3 {
    font-size: 15px;
  }

  .team-info p {
    font-size: 12px;
  }

  .social-icons2 a {
    font-size: 14px;
    padding: 8px;
  }
}


/* team section */

/* why choose us */
.why-choose-section {
display: flex;
align-items: center;
justify-content: center;
padding: 80px 50px;
overflow: hidden;
margin-bottom: 80px;
}

.why-choose-textbox,
.why-choose-image {
opacity: 0;
animation-fill-mode: forwards;
}

.why-choose-textbox.animate {
animation: fadeInLeft 1s ease forwards;
animation-delay: 0.3s;
}

.why-choose-image.animate {
animation: fadeInRight 1s ease forwards;
animation-delay: 0.6s;
}

.why-choose-textbox {
width: 700px;
background: #fff;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
padding: 40px 30px;
z-index: 10;
height: 70vh;
top: 180px;
margin-right: -100px;
position: relative;
}

.why-choose-image {
position: relative;
width: 600px;
height: auto;
}

.why-choose-image img {
width: 100%;
height: auto;
display: block;
}

.vertical-text {
position: absolute;
top: 0;
right: 0;
background-color: #b2916c;
color: white;
padding: 20px 10px;
writing-mode: vertical-rl;
text-orientation: mixed;
font-family: 'Playfair Display', serif;
font-size: 18px;
}

.why-choose-textbox h2 {
font-family: 'Playfair Display', serif;
font-size: 32px;
margin: 0 0 20px;
border-left: 3px solid #8c6239;
padding-left: 10px;
}

.why-choose-textbox p {
font-size: 14px;
color: #555;
line-height: 1.6;
margin-bottom: 20px;
}

.why-choose-textbox ul {
list-style: none;
padding: 0;
}

.why-choose-textbox ul li {
font-size: 14px;
color: #333;
margin-bottom: 10px;
position: relative;
padding-left: 24px;
}

.why-choose-textbox ul li::before {
content: '✓';
position: absolute;
left: 0;
color: #8c6239;
font-weight: bold;
}

/* Animations */
@keyframes fadeInLeft {
0% {
opacity: 0;
transform: translateX(-50px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}

@keyframes fadeInRight {
0% {
opacity: 0;
transform: translateX(50px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}

@media (max-width: 900px) {
.why-choose-section {
flex-direction: column;
padding: 40px 20px;
}

.arrow-box {
display: none;
}

.why-choose-image {
width: 100%;
margin-top: 30px;
}
}

    /* ✅ FULLY MOBILE RESPONSIVE */
    @media (max-width: 900px) {
      .why-choose-section {
        flex-direction: column;
        padding: 0;
        margin: 0;
        width: 100vw;
        height: auto;
      }

      .why-choose-textbox {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 30px 20px;
        position: static;
        box-shadow: none;
        border: none;
      }

      .why-choose-textbox h2 {
        font-size: 24px;
        padding-left: 8px;
      }

      .why-choose-textbox p,
      .why-choose-textbox ul li {
        font-size: 15px;
        line-height: 1.6;
      }

      .why-choose-image {
        width: 100%;
        margin: 0;
        padding: 20px;
      }

      .why-choose-image img {
        width: 100%;
        border-radius: 10px;
      }

      .vertical-text {
        display: none;
      }
    }


/* why chosse us */


/* form section */
.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('https://html.designingmedia.com/hillcrest/assets/images/contact-background.jpg') no-repeat center center;
  background-size: cover;
  width: 100%;
}

.quote-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 5%;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.form-box {
  flex: 1;
  max-width: 450px;
}

.form-group {
  position: relative;
  margin-bottom: 0px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 45px 14px 15px;
  border-radius: 4px;
  font-size: 14px;
}

.form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.form-box textarea {
  resize: none;
  height: 130px;
}

.submit-btn {
  display: inline-block;
  background-color: #c3a178;
  border: none;
  color: white;
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.submit-btn::before {
  content: "● ";
}

.quote-text {
  flex: 1;
  padding-top: 20px;
}

.quote-text h1 {
  font-size: 48px;
  font-weight: 500;
  color: white;
  font-family: Georgia, serif;

}

.quote-text h1 span {
  color: #c3a178;
}

.quote-text p {
  font-size: 24px;
  margin-top: 10px;
  font-family: Georgia, serif;

}

.map iframe {
  width: 100%;
  height: 220px;
  margin-top: 30px;
  border: none;
}

@media (max-width: 992px) {
  .quote-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .quote-text {
    padding-top: 40px;
  }
}


/**/
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background and Container */
.main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('https://html.designingmedia.com/hillcrest/assets/images/contact-background.jpg') no-repeat center center;
  background-size: cover;
  width: 100%;
}

.quote-section {
  display: flex;
  justify-content: space-between;
  padding: 60px 5%;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form */
.form-box {
  flex: 1;
  max-width: 450px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-box input,
.form-box textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 45px 14px 15px;
  border-radius: 4px;
  font-size: 14px;
}

.form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.form-box textarea {
  resize: none;
  height: 130px;
}

.submit-btn {
  display: inline-block;
  background-color: #c3a178;
  border: none;
  color: white;
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.submit-btn::before {
  content: "● ";
}

/* Desktop Text + Map */
.quote-text {
  flex: 1;
  padding-top: 20px;
}

.quote-text h1 {
  font-size: 48px;
  font-weight: 500;
  color: white;
  font-family: Georgia, serif;
}

.quote-text h1 span {
  color: #c3a178;
}

.quote-text p {
  font-size: 24px;
  margin-top: 10px;
  color: white;
  font-family: Georgia, serif;
}

/* Map Styling */
.map iframe {
  width: 100%;
  height: 220px;
  border: none;
  margin-top: 30px;
}

/* Responsive */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 992px) {
    
    .form-box{
        margin-top:-50px;
    }
  .quote-section {
    flex-direction: column;
    padding: 0px 20px;
    padding-top:20px;
  }

  .quote-header.mobile-only {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .quote-header h1 {
    font-size: 36px;
    font-weight: 500;
    color: white;
    font-family: Georgia, serif;
  }

  .quote-header h1 span {
    color: #c3a178;
  }

  .quote-header p {
    font-size: 20px;
    color: white;
    font-family: Georgia, serif;
  }

  .map.mobile-only {
    display: block;
  }

  .map.mobile-only iframe {
    width: 100%;
    height: 220px;
    border: none;
    margin-top: 30px;
  }

  .desktop-only {
    display: none;
  }
}

/**/

/* form section  */

/* testinomal  */

.testimonial-section {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px;
}

.testimonial-container {
  width: 100%;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}

.left-profiles {
  flex: 1 1 40%;

  color: white;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 15px;
  border-right: 2px solid #a37b58;
  justify-content: center;
}

.left-profiles img {
  border-radius: 50%;
  border: 3px solid white;
  width: 140px;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
  
}

.left-profiles img:hover {
  transform: scale(1.1);
}
.testimonial-heading {
  font-family: 'Playfair Display', serif;
text-align: center;
font-size: 2.5rem;
font-weight: 300;
margin-bottom: 20px;

color: #222;

}

.testimonial-slider {
  flex: 1 1 60%;
  padding: 40px;
  position: relative;
  min-width: 300px;
}

.testimonial-slide {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.author-info .name {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.author-info .title {
  font-size: 14px;
  color: #777;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #c3a178;
}

@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
  }
  .left-profiles, .testimonial-slider {
    flex: 1 1 100%;
    padding: 20px;
  }
}

/* testinomal */
/*  */

.auto-slider-wrapper {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 16px;
  margin: auto;
  padding: 0 10px;
}

.auto-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.auto-slide-card {
  min-width: 250px;
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.auto-slide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.auto-slide-name {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #fff;
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .auto-slide-card {
    min-width: 80%; /* bigger card on narrow screens */
    padding: 16px;
  }

  .auto-slide-image {
    height: 160px;
  }

  .auto-slide-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .auto-slide-card {
    min-width: 90%;
    padding: 14px;
  }

  .auto-slide-image {
    height: 140px;
  }

  .auto-slide-name {
    font-size: 0.95rem;
  }
}


/* project */
.section-wrap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.info-block {
  flex: 1;
}

.info-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 20px;
  color: #222;
}

.info-block p.description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #666;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.feature-box {
  flex: 1;
  min-width: 200px;
}

.feature-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #c39b77;
  margin-bottom: 10px;
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
}

.feature-box ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 30px;
  color: #444;
}

.feature-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c39b77;
  font-size: 20px;
  line-height: 1;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.highlight-grid p {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
}

.highlight-grid p::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c39b77;
  font-weight: bold;
}

.image-block {
  flex: 1;
}

.image-block img {
  max-width: 100%;
  border-radius: 12px;
  /*height: auto;*/
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .section-wrap {
    flex-direction: column;
  }
}

/* project */

/*  */



/* footer  */
