body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
.hero-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1538944570562-2c9cb7857097?auto=format&fit=crop&w=1920') no-repeat center center/cover;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(116, 63, 51, 0.6);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.content {
  max-width: 55%;
}

.content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 20px 0;
}

.sub-text {
  font-size: 20px;
  margin-bottom: 20px;
}

.phone {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.form-box {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 8px;
  max-width: 350px;
  width: 100%;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input {
  padding: 12px;
  border: none;
  border-radius: 4px;
  color: #000;
}

.form-box button {
  padding: 14px;
  background: #f5e8d3;
  color: #492820;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section .container {
    flex-direction: column;
    text-align: center;
  }

  .content {
    max-width: 100%;
  }

  .content h1 {
    font-size: 24px;
  }

  .content h2 {
    font-size: 40px;
  }

  .phone {
    font-size: 28px;
  }

  .form-box {
    margin-top: 30px;
  }
}

.about-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
}

.about-content h3 {
  font-size: 32px;
  color: #7a6248;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #56585e;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #492820;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #f5e8d3;
  color: #000;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Stats Section */
.stats {
  margin-top: 50px;
  background: #7a6248;
  color: #fff;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h3 {
    font-size: 24px;
  }

  .stat-box h2 {
    font-size: 36px;
  }
}

.services-section {
  background: #492820;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #ddd;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.service-card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #492820;
}

.service-card ul {
  padding-left: 18px;
}

.service-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #7a6248;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #1bd459;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 22px;
  }
}

 

/* Section */
.testimonials {
    background: #f1f1f1;
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Heading */
.title {
    font-size: 40px;
    font-weight: 700;
    color: #492820;
}

.subtitle {
    color: #56585e;
    margin: 15px 0 40px;
}

/* Grid */
.testimonial-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card */
.testimonial-card {
    background: #F5E8D3;
    padding: 25px;
    border-radius: 12px;
    max-width: 580px;
    text-align: left;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Stars */
.stars {
    font-size: 18px;
    margin-bottom: 10px;
}

/* User */
.user {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}

.user h4 {
    font-size: 16px;
}

.user span {
    font-size: 14px;
    color: #777;
}
.gallery-section {
  padding: 16px 0;
  background: #ffffff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Heading */
.gallery-title {
  font-size: 32px;
  color: #492820;
  margin-bottom: 10px;
      text-align: center;
    margin: 0 auto;
}

/* Subheading */
.gallery-subtitle {
  font-size: 20px;
  color: #7a6248;
  margin-bottom: 30px;
      text-align: center;
    margin: 0 auto;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery img {
  width: 280px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Description */
.gallery-desc {
  font-size: 16px;
  color: #7a6248;
  margin: 30px 0;
  line-height: 1.6;
}

/* Button */
.gallery-btn-wrap {
  text-align: center;
  margin: 0 auto;
}

.gallery-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #492820;
  border-radius: 28px;
  color: #7a6248;
  text-decoration: none;
  transition: 0.3s;
}

.gallery-btn:hover {
  background: #492820;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 24px;
  }

  .gallery-subtitle {
    font-size: 16px;
  }

  .gallery img {
    width: 100%;
  }
}
/* CTA Button */
.cta {
    margin-top: 40px;
}

.cta a {
    display: inline-block;
    padding: 14px 30px;
    background: #492820;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.cta a:hover {
    background: #1bcc68;
    color: #0d141a;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }

    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Section */
.contact-section {
    background: #ffffff;
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Title */
.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #7a6248;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* Text */
.contact-text {
    font-size: 18px;
    color: #7a6248;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 35px;
}

/* Button */
.contact-btn a {
    display: inline-block;
    padding: 14px 32px;
    background: #492820;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.contact-btn a:hover {
    background: #1bcc68;
    color: #0d141a;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 26px;
    }

    .contact-text {
        font-size: 16px;
    }
}

.footer {
  background: #492820;
  color: #fff;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Top Layout */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer h2,
.footer h3 {
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

/* Services List */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.social-icons a:hover {
  color: #f5e8d3;
}

/* Form */
.footer form {
  display: flex;
  flex-direction: column;
}

.footer input {
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  outline: none;
  color: #000;
}

.footer button {
  padding: 10px;
  border: none;
  background: #f5e8d3;
  color: #492820;
  cursor: pointer;
  font-weight: bold;
}

.footer button:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Locations */
.footer-locations {
  margin-top: 40px;
  text-align: center;
    margin: 0 auto;
}

.footer-locations h3 {
  margin-bottom: 10px;
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
}
.cta {
	margin: 0 auto;
	text-align:center;
}

* {
    padding: 0;
    margin: 0;
    color: inherit;
    font-family: 'Poppins', sans-serif;
}

#gallery{
	text-align:center;
	margin: 0 auto;
}

.footer-bottom{
	text-align:center;
	margin: 0 auto;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Box */
.popup-box {
  background: #fff;
  padding: 30px;
  width: 320px;
  border-radius: 10px;
  position: relative;
  text-align: center;
  animation: fadeIn 0.3s ease;
  
}

/* Close */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* Form */
.popup-box h2 {
  color: #492820;
  margin-bottom: 20px;
}

.popup-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.popup-box button {
  width: 100%;
  padding: 10px;
  background: #492820;
  color: #fff;
  border: none;
  cursor: pointer;
}

.popup-box button:hover {
  background: #2e1812;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}

.btn {
    border: 1px solid #7a6248;
}

.footer-col{
	margin: 0 auto;
	text-align:center;
}
.mob {
    font-size: 22px;
}

.btn-whatsapp-pulse {
    background: #e63839;
    color: white;
    position: fixed;
    bottom: 25%;
    right: 35px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function:  ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
    transform: rotate(0deg);
}

.footer-oll-now {
    bottom: 0px;
    color: #fff !important;
    font-size: 22px !important;
    cursor: pointer;
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    line-height: 56px;
    width: 100%;
    position: fixed;
    z-index: 1;
    text-align: center;
    background-color: #008000;
    color: #FDA12B;
}