* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #222;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: white;
  color: #333;
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: #d4d4d4; /* thoda dark shade scroll par */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .logo img {
  height: 50px;
  width: 150px;
  object-fit: contain;
  overflow: visible;
  /* border: 1px solid red; */
}
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  /* color: #B12C00; */
  color: #e0643a;
}

.enquire-btn, .hero .hero-text .hero-btn {
  color: #333;
  background-color: #B12C00;
  color: white;
  padding: 7px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;

}

.enquire-btn:hover, .hero .hero-text .hero-btn:hover {
  box-shadow:  0 0 10px #B12C00;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
}

/* Disable scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  background: url('images/pexels-manfred-irmer-184952-587063.jpg') no-repeat center/cover;
  height: auto;
  display: flex;
  /* align-items: center;
  justify-content: center;
  text-align: center; */
  color: #fff;
  position: relative;
  /* border: 1px solid red; */
  margin: 100px 20px 0;
  border-radius: 20px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
  /* border: 1px solid red; */
  padding: 20px;
}


.hero h1 {
  font-size: 2rem;
  margin: 15px 0;
  color: white;
}
.hero p {
  margin-bottom: 20px;
}

/* Sections */
section {
  padding: 80px 8%;
}

.about-heading {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-heading h1 {
  margin-bottom: 0;
}
.about {
  display: flex;
  gap: 20px;
}
.about-heading {
  color: #a88350;
}
.container2 {
  /* border: 1px solid red; */
  width: 700px;
}
.about img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.about .container2 h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #B12C00;
}

/* -------services------- */
.services {
  background: #f8470c3b;
}

.services .container h1 {
  color: #B12C00;
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  
}


.services {
  padding: 60px 10%;
}
#services {
  margin-top: 20px;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.services h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.intro {
  text-align: center;
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto 40px auto;
  color: #555;
}

.service-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #B12C00;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-box ul {
  list-style: none;
  padding-left: 0;
}

.service-box li {
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
}

.service-box li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #B12C00;
  position: absolute;
  left: 0;
  top: 2px;
}


/* Footer Styling */
.footer {
  background: linear-gradient(135deg, #4A1300 0%, #B12C00 100%);
  padding: 60px 0 0 0;
  color: #fff;
}
.container8 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  width: 22%;
  padding: 0 15px;
}
.footer-col p {
  color: #bbb;
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 50px;
  background: #d53600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 15px;
  text-decoration: none;
  color: #bbb;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-col .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-links i {
  display: inline-block;
  height: 40px;
  width: 40px;
  border: 1px solid #bbb;
  margin: 0 8px 0 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #bbb;
  transition: all 0.3s ease;
}
.social-links a {
  text-decoration: none;
  color: #bbb;
  font-size: 20px;
  /* border: 1px solid red; */
}

.social-links i:hover, .social-links a:hover {
  color: white;
}
.footer .copyright {
  padding: 20px;
  margin-top: 10px;
}

.copyright .copyright-text {
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
}
.copyright .copyright-text p {
  color: #bbb;
}
.copyright .copyright-text .links {
  text-decoration: none;
  color: white;
  display: flex;
  gap: 30px;
}
.copyright .copyright-text .links a{
  text-decoration: none;
  color: #bbb;
}
.copyright .copyright-text .links a:hover{
  color: white;
}


#contact {
  margin-top: 30px;
}

.contact-section {
  padding: 50px 10%;
}

.contact-section .contact-des {
  text-align: center;
}
.contact-section .contact-des h1{
  margin-bottom: 10px;
}
 .contact-section .contact-des p {
  margin-bottom: 70px;
 }
.contact-container {
  display: flex;
  gap: 50px;
  align-items: center;
  /* border: 1px solid red; */
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  color: #d53600;
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #e77751;
}

.contact-form {
  flex: 1.5;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #d53600;
  outline: none;
  background: transparent;
  font-size: 14px;
}

form textarea {
  margin-top: 20px;
  resize: none;
}

.contact-section .contact-form .btn {
  /* margin-top: 20px; */
  padding: 12px 25px;
  background: #d53600;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-section .contact-form .btn:hover {
  background: #e0643a;
}

.map iframe {
  width: 100%;
  border-radius: 8px;
  margin-top: 40px;
}


@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    /* background: #111; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: right 0.4s ease-in-out;
    z-index: 2000;
  }
  .contact-container {
    flex-direction: column;
  }

  form .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-links.active {
    right: 0;
    background-color: white;
  }

  .hamburger {
    display: block;
    font-size: 1.8rem;
    z-index: 2100;
  }

  .enquire-btn {
    display: none;
  }
}
@media (max-width: 800px) {
  .about img {
    display: none;
  }
}


@media (max-width: 768px) {
  .footer-col {
    width: 45%;
    margin-bottom: 30px;
  }
  .services {
    padding: 40px 20px;
  }

  h1 {
    font-size: 28px;
  }

  .service-box h2 {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 15px;
  }
  .copyright .copyright-text {
   display: flex;
   flex-direction: column-reverse;
  }
  .copyright .copyright-text .links {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .copyright .copyright-text p {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-col {
    width: 100%;
    text-align: start;
  }
  /* .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  } */
}