
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container{
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.row>*{
    padding: 0 15px;
}
.main-head {
  background: transparent;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 30px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fe1500;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}
.banner-section{
  background: url(./Assets/modern-gray-living-room-interior\ 1\ \(1\).png) no-repeat center center/cover;
  height: calc(100vh - 60px) ;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 20px;
  position: relative;
}

.banner-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
  font-family: Poppins , sans-serif;
}

.content h1 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0D0D0D;
}

.content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.content button {
  background-color: #95A986;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  transition: all 0.3s ease;
}
.content>button>a{
    text-decoration: none;
    color: black;
}
.content button:hover {
  background-color: #9aa673;
  transform: translateY(-2px);
}
.col6{
    width: 50%;
    display: flex;
    padding: 10px;
    gap:20px
}
.about-text{
    max-width: 550px;
    padding: 20px;
}
.img1{
      border-radius: 0  0 20px 0 ;
      object-fit: cover;
      width: 100%;
      height: 100%;
      max-height: 400px;
    }
.img2{
      border-radius: 0 20px 0  0 ;
      object-fit: cover;
      width: 100%;
      height: 100%;
      max-height: 300px;
    } 
.about-images{
    display: flex;
    gap: 20px;
    align-items: center;
} 
.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 280px;
   font-family: Poppins , sans-serif;
}

.subheading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
 
}

.main-heading {
  font-family: Georgia, serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.divider-icon {
  color: #95A986;
  font-size: 18px;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.2;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
  font-family: Poppins, sans-serif;
}


.about-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
 .advantages-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #ffffff;
    }

    .advantages-section .subtitle {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 12px;
      color: #888;
      margin-bottom: 10px;
    }

    .advantages-section h2 {
      font-family: 'Georgia', serif;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .divider {
      width: 40px;
      height: 1px;
      background-color: #95A986;
      margin: 10px auto 40px auto;
      position: relative;
    }

    .divider::after {
      content: "◆";
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      color: #95A986;
      font-size: 14px;
      background: #fff;
      padding: 0 5px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      max-width: 1000px;
      margin: auto;
    }

    .feature {
      text-align: center;
      padding: 10px;
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      background-color: #d7e3d4;
      border-radius: 50%;
      margin: 0 auto 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .icon-circle:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .icon-circle img {
      width: 100px;
      height: 100px;
    }

    .feature h4 {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .feature p {
      font-size: 13px;
      color: #555;
      margin: 0;
    }

.mission-section{
    padding: 60px 20px;
    max-height: 2000px;
    background-color: #e7eded;
}
  .img3{
      max-height: 400px;
      max-width: 400px; 
      height: 100%;
      border-radius: 0  0 20px 0 ;
      position: relative;
      margin-bottom: 100px;
  }
  .img3>img{
    object-fit: contain;
    width: 100%;
  }
 .img3::after{
    content: "";
    position: absolute;
    bottom: -72px;
    right: -52px;
    height: 298px;
    width: 244px;
    background: url(./Assets/image\ \(4\).png)no-repeat center center/cover;
    border-radius: 50px 0 0px 0;
    border: 5px solid #e7eded;
    }

     footer {
      border-top: 1px solid #eee;
      padding: 40px 20px 10px;
      background-color: #fff;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 100px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-column {
      flex: 1 1 100px;
    }

    .footer-column h4 {
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 15px;
      border-bottom: 1px solid #000;
      display: inline-block;
      padding-bottom: 5px;
    }

    .newsletter p {
      font-size: 13px;
      margin-bottom: 15px;
    }

    .newsletter input[type="email"] {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 20px;
      outline: none;
      margin-bottom: 10px;
    }

    .newsletter button {
      background-color: #95A986;
      color: #0D0D0D;
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .newsletter button:hover {
      background-color: #8a987d;
    }

    .footer-links a {
      display: block;
      font-size: 13px;
      color: #333;
      margin: 6px 0;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #9ca88e;
    }

    .social-icons a {
      margin-right: 10px;
      font-size: 16px;
      color: #333;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #9ca88e;
    }

    .footer-bottom {
      text-align: center;
      font-size: 13px;
      padding: 20px 0 10px;
      border-top: 1px solid #eee;
      margin-top: 30px;
    }


/* Responsive */
@media (max-width: 1110px) {
 .hamburger {
    display: flex;
  }
.logo {
  font-size: 20px;
}

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    align-items: center;
  }

  .nav-links.active {
        display: flex;
        gap: 0px;
  }
  .nav-links a {
    margin: 10px 0;
    font-size: 16px;
  }
  .banner-section{
    padding: 2px 20px 20px;
  }
  .content {
    padding: 24px 21px;
  }
.content h1 {
    font-size: 33px;
}
.content p {
    font-size: 14px;
}
  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }
  .col6{
    width: 100%;
  }
  .about-images{
    max-width: 400px;
    align-items: center;
  }
  .img1{
    max-height: 300px;
      width: 59%;
    }
  .img2{
        max-height: 180px;
        width: 41%;
    }
    .img3{
      max-height: 400px;
      width: 100%;
    margin-bottom: 100px;
    }
    .img3::after{
        content: "";
        position: absolute;
        top: 121px;
        right: -12px;
        height: 198px;
        width: 165px;
        background: url(./Assets/image\ \(4\).png) no-repeat center center/cover;
        border-radius: 50px 0 0px 0;
        border: 5px solid #e7eded;
    }
     .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
      }
  .about-text {
     margin-top: -19px;
}
.advantages-section {
    padding: 0px 0px 20px 0px;
}
.mission-section {
    padding: 10px 20px;
}
.about-section {
    padding: 20px;
}
.features {
 gap: 15px;
}
}