   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Lora", serif;
    }

    body {
      overflow-x: hidden;
    }

    #banner {
      background: linear-gradient(rgba(0, 0, 0, 0.5),  #facc40cc),url(images/banner2.jpg);
      background-size: cover;
      background-position: center;
      height: 100vh;
      position: relative;
    }

   
   .logo {
      width: 140px;
      position: absolute;
      top: 4%;
      left: 5%;
      z-index: 10;
    }

    .banner-text {
      text-align: center;
      color: #000;
      padding-top: 230px;
      position: relative;
      z-index: 10;
    }

    .banner-text h1 {
      font-size: 60px;
      font-family: "Playfair Display", serif;
      font-weight: bold;
      text-shadow: 2px 2px white;
    }

    .banner-text p {
      font-size: 20px;
      font-style: italic;
      padding-top: 20px;
    }

    .banner-btn {
      margin: 70px auto 0;
    }

    .banner-btn a {
      display: inline-block;
      margin: 10px;
      padding: 12px 25px;
      border: 2px solid black;
      background: transparent;
      color: black;
      text-decoration: none;
      font-weight: bold;
      position: relative;
      z-index: 1;
      overflow: hidden;
      transition: color 0.5s;
    }

    .banner-btn a::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: black;
      top: 0;
      left: -100%;
      z-index: -1;
      transition: 0.5s;
    }

    .banner-btn a:hover::before {
      left: 0;
    }

    .banner-btn a:hover {
      color: white;
    }

    #sideNav {
      width: 200px;
      height: 100vh;
      position: fixed;
      right: -200px;
      top: 0;
      background: #FFD700;
      z-index: 20;
      transition: 0.5s;
    }

    nav ul li {
      list-style: none;
      margin: 40px 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: black;
      font-weight: bold;
      padding: 10px;
      display: block;
      transition: background 0.3s, color 0.3s;
    }

    nav ul li a:hover {
      background: black;
      color: white;
      border-radius: 5px;
    }

    #menuBtn {
      width: 50px;
      height: 50px;
      background: #FFD700;
      text-align: center;
      position: fixed;
      right: 30px;
      top: 20px;
      border-radius: 5px;
      z-index: 25;
      cursor: pointer;
    }

    #menuBtn img {
      width: 25px;
      margin-top: 12px;
    }

    @media screen and (max-width: 770px) {
      .banner-text h1 {
        font-size: 28px;
      }

      .banner-text p {
        font-size: 16px;
      }

      .banner-btn a {
        display: block;
        margin: 10px auto;
      }
    }

    @keyframes slideAnimation {
      0%, 100% { opacity: 1; }
    }
/* ABOUT US Section */
#About-Us {
  width: 100%;
  padding: 70px 0;
  background-color: #0d0d0d; /* Optional dark background for contrast */
}

.title-text {
  text-align: center;
  padding-bottom: 40px;
}

.title-text p {
  margin: auto;
  font-size: 20px;
  color: rgb(190, 163, 8);
  font-weight: bold;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.title-text p::after {
  content: '';
  width: 50px;
  height: 35px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), #b4911dcc);
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
  transform: rotate(10deg);
  border-top-left-radius: 35px;
  border-bottom-right-radius: 35px;
}

.title-text h1 {
  font-size: 40px;
  margin-top: 10px;
  color: #fff;
}

/* Container */
.about-us-box {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* IMAGE */
.about-us-img {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(190, 163, 8, 0.5);
  transition: transform 0.3s ease;
}

.about-us-img img:hover {
  transform: scale(1.03);
}

/* TEXT */
.about-us {
  flex: 1 1 50%;
}

.about-us h1 {
  text-align: left;
  margin-bottom: 10px;
  font-weight: 600;
  color: rgb(228, 196, 13);
}

.about-us-desc {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.about-us-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid rgb(230, 201, 42);
  color: rgb(235, 207, 50);
  margin-right: 20px;
}

.about-us-icon .fa {
  font-size: 30px;
}

.about-us-text {
  flex: 1;
  text-align: left;
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
}

/* ✅ Responsive Design */
@media screen and (max-width: 992px) {
  .about-us-box {
    flex-direction: column;
  }

  .about-us-img,
  .about-us {
    flex-basis: 100%;
    width: 100%;
  }

  .about-us-img {
    order: 1;
    margin-bottom: 30px;
  }

  .about-us {
    order: 2;
  }

  .title-text h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 576px) {
  .title-text h1 {
    font-size: 28px;
  }

  .about-us-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .about-us-icon .fa {
    font-size: 20px;
  }

  .about-us-text {
    font-size: 14px;
  }
}
/* SERVICES SECTION STYLES */
/* Base styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: white;
}

#services {
  padding: 80px 0;
  background: #1a1919;
}

.title-text {
  text-align: center;
  margin-bottom: 50px;
}

.title-text p {
  color: #D4AF37;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.title-text h1 {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
}

/* Service card */
.single-service {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease;
  background: #2c2c2c;
}

.single-service img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.single-service:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(212, 175, 55, 0.7));
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}

.single-service:hover .overlay {
  opacity: 1;
}

.service-desc {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: 85%;
  z-index: 2;
  transition: bottom 0.5s ease;
}

.single-service:hover .service-desc {
  bottom: 20%;
}

.service-desc h3 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-desc p {
  font-size: 14px;
  margin: 0;
}

hr {
  height: 2px;
  background: #EECD15;
  border: none;
  width: 50%;
  margin: 10px auto;
}

/* Responsive */
@media (max-width: 767px) {
  .title-text h1 {
    font-size: 28px;
  }

  .service-desc {
    bottom: 10%;
  }

  .service-desc p {
    font-size: 12px;
  }
}
/* /TESTIMONIALS */
/* Testimonials Section */
#testimonial {
  width: 100%;
  padding: 70px 0;
  background: #0d0d0d;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

.title-text {
  text-align: center;
  margin-bottom: 50px;
}

.title-text p {
  color: #EECD15;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 18px;
}

.title-text h1 {
  font-size: 36px;
  color: #ffffff;
  margin-top: 10px;
}

.testimonial-row {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-col {
  flex: 1 1 30%;
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(238, 205, 21, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(238, 205, 21, 0.5);
}

.testimonial-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.user {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 50%;
  border: 2px solid #EECD15;
}

.user-info h4 {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
}

.user-info small {
  color: #EECD15;
  font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .testimonial-row {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-col {
    flex-basis: 100%;
    max-width: 90%;
  }
}
/* //footer */
#footer {
  background: #1a1919;
  padding: 100px 0 30px;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

.footer-row {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left,
.footer-right {
  flex: 1 1 45%;
  padding: 10px;
}

.footer-right {
  text-align: right;
}

.footer-row h1 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #EECD15;
}

.footer-row p {
  line-height: 28px;
  font-size: 15px;
  margin: 8px 0;
}

.footer-row i {
  color: #EECD15;
  margin-right: 10px;
}

.footer-row a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-row a:hover {
  text-decoration: underline;
  color: #EECD15;
}

.map-container {
  width: 85%;
  margin: 30px auto 0;
  border-radius: 10px;
  overflow: hidden;
}

.social-links {
  text-align: center;
  margin-top: 40px;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  color: #EECD15;
  border: 1px solid #EECD15;
  width: 45px;
  height: 45px;
  font-size: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(238, 205, 21, 0.3);
  vertical-align: middle;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #EECD15;
  color: #0d0d0d;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 15px rgba(238, 205, 21, 0.6);
}

.social-links a i {
  line-height: 1;
}

.social-links p {
  font-size: 13px;
  color: #999;
  margin-top: 20px;
}


/* Responsive */
@media screen and (max-width: 770px) {
  .footer-left,
  .footer-right {
    flex-basis: 100%;
    text-align: center;
  }

  .footer-right {
    margin-top: 30px;
  }

  .footer-row p {
    font-size: 14px;
  }

  iframe {
    height: 200px;
  }
}
