* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* Common */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

h1, h2 {
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.call { background: #0000ff; }
.whatsapp { background: #25D366; }
.submit { background: #0d6efd; border: none; }

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #0d6efd;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Slider */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slider {
  height: 100%;
  width: 100%;
  position: relative;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  text-align: center;
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero {
    height: 380px;
  }

  .hero-content h1 {
    font-size: 22px;
  }
}


/* Services */
.services {
  padding: 50px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

/* About */
.about {
  background: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

/* Gallery */
.gallery {
  padding: 50px 0;
  background: #f4f6f9;
  text-align: center;
}

.gallery-text {
  margin-bottom: 25px;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.08);
}

/* Mobile Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.contact {
  padding: 50px 0;
  background: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-info a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: bold;
}

/* Contact Form Box */
.contact-form-box {
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form h3 {
  text-align: center;
  font-size: 22px;
  color: #2e7d32; /* mehndi green */
  margin-bottom: 10px;
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form textarea {
  resize: none;
  min-height: 90px;
}

/* Focus Effect */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46,125,50,0.15);
}

/* Button */
.contact-form .btn.submit {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* Button Hover */
.contact-form .btn.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(46,125,50,0.4);
}


/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* Footer */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* Floating Buttons */
.float-btn {
  position: fixed;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
}

.float-btn.call {
  bottom: 80px;
  background: #0000ff;
}

.float-btn.whatsapp {
  bottom: 20px;
  background: #25D366;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border: 1px solid #ddd;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer */
.footer {
  background: #111;
  color: #ddd;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.footer-box h3,
.footer-box h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #25D366;
}

.footer-box a {
  color: #25D366;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
