 body, html {
  margin: 0;
  padding: 0;
  background-color: #ffeee7;
  font-family: 'Segoe UI', sans-serif;
}

.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  box-sizing: border-box;
}

.slide.active {
  display: flex;
}

.slide .content {
  width: 50%;
}

.slide .content .welcome {
  font-size: 18px;
  color: #705C53;
  margin-bottom: 20px;
}

.slide .content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0d1b3e;
  line-height: 1.2;
}

.slide img {
  width: 45%;
  height: auto;
}



/* about */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

.about-section {
  padding: 60px 10%;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image img {
  max-width: 700px;
  border-radius: 8px;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #705C53;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Tabs */
.tabs {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
}

.tab-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.tab-btn {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  cursor: pointer;
  color: #333;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #705C53;
  border-color: #705C53;
}

.tab-content {
  display: none;
  font-size: 15px;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
}

/* Features */
.features-section {
  padding: 50px 10%;
  background-color: #f9fbff;
}

.features-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-box {
  background: white;
  flex: 1 1 30%;
  min-width: 250px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-box .icon {
  font-size: 28px;
  color: #705C53;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #705C53;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}


/* Reason to choose */

.reasons-section {
  padding: 80px 10%;
  background-color: #fff;
}

.reasons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.reasons-text {
  flex: 1 1 45%;
}

.reasons-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #705C53;
  margin-bottom: 20px;
}

.reasons-text p {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.explore-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #705C53;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background-color: #705C53;
}

.reasons-cards {
  flex: 1 1 50%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reason-card {
  background-color: #fff;
  border: 1px solid #dde6ff;
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 45%;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.reason-card .icon {
  font-size: 28px;
  color: #705C53;
  margin-bottom: 10px;
}

.reason-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #705C53;
}

.reason-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.read-more {
  color: #705C53;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
}

.read-more i {
  margin-left: 5px;
}

/* Hover effect */
.reason-card:hover {
  background-color: #705C53;
  color: #fff;
}

.reason-card:hover h3,
.reason-card:hover p,
.reason-card:hover .read-more,
.reason-card:hover .read-more i {
  color: #fff;
}

.reason-card:hover .icon {
  color: #fff;
}


/* Services */

.services-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 10%;
  background: #fff;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  flex: 1 1 25%;
  gap: 20px;
}

.tab {
  background: #fff;
  border: 1px solid #dce3f5;
  padding: 18px 24px;
  border-radius: 10px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #705C53;
  transition: 0.3s;
  cursor: pointer;
}

.tab i {
  margin-right: 12px;
  color: #705C53;
}

.tab.active {
  background-color: #705C53;
  color: #fff;
}

.tab.active i {
  color: #fff;
}

.service-content {
  display: flex;
  flex: 1 1 70%;
  gap: 40px;
  align-items: flex-start;
}

.service-content img {
  max-width: 350px;
  border-radius: 10px;
}

.service-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #705C53;
}

.service-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

#service-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

#service-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

#service-points i {
  color: #705C53;
  margin-right: 8px;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #705C53;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #705C53;
}


/* contact us */

.callback-section {
  background: #ffffff;
  padding: 60px 10%;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.04);
  max-width: 900px;
  margin: auto;
}

.callback-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #705C53;
}

#callbackForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

input, textarea {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #d6dbf5;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  width: 100%;
}

input:focus, textarea:focus {
  border-color: #705C53;
  box-shadow: 0 0 5px rgba(42, 95, 255, 0.3);
}

textarea {
  resize: vertical;
}

button {
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  background-color: #705C53;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #f4cebd;
}


/* Testimonial */
.testimonials {
  padding: 60px 20px;
  background-color: #f9faff;
  text-align: center;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-mark {
  font-size: 60px;
  color: #705C53;
  position: absolute;
  top: -20px;
  left: 30px;
  opacity: 0.1;
}

.testimonial-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
}

.client {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #705C53;
  margin-bottom: 10px;
}

.client h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #705C53;
}

.client span {
  color: #777;
  font-size: 14px;
}

.testimonial-dots {
  margin-top: 30px;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background-color: #705C53;
  box-shadow: 0 0 0 3px rgba(42, 95, 255, 0.2);
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.98);}
  to {opacity: 1; transform: scale(1);}
}







