* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.menu-toggle {
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 50vh;
  background: url("home.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
  position: relative;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  max-width: 650px;
}

.hero h4 {
  color: #ff5c33;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s ease;
}

.primary {
  background: #ff5c33;
  color: #fff;
}

.primary:hover {
  background: #e14b25;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.secondary:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .hero {
    padding: 0 20px;
    text-align: left;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

}
.services-section {
  padding: 60px 20px;
  background: #f3f3f3;
}

/* VIEW ALL BUTTON */
.view-all {
  text-align: center;
  margin-bottom: 40px;
}

.view-all a {
  display: inline-block;
  padding: 15px 40px;
  border: 3px solid #e4572e;
  color: #e4572e;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
}

/* SERVICE CARD */
.service-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-top: 30px;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-content {
  padding: 40px;
}

.service-content h2 {
  font-size: 32px;
  color: #3b4a5a;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-link {
  font-weight: 700;
  color: #e4572e;
  text-decoration: none;
  letter-spacing: 1px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .service-content {
    padding: 25px;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 15px;
  }

}
.gallery-section {
  padding: 70px 20px;
  background: #f3f3f3;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #2c3e50;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay Text */
.view-all .overlay-text {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}
.location-section {
    padding: 50px 30px;
    background-color: #3b4a5a;
}

.location-box {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.location-details {
    flex: 1;
    text-decoration-color: black;
}

.location-details h3 {
    margin-bottom: 15px;
}

.location-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.location-map {
    flex: 1;
}

.location-buttons {
    margin-top: 15px;
}

.location-buttons a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.call-btn {
    background: #ff5e2c;
    color: white;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .location-box {
        flex-direction: column;
    }
}
.card {
    background: white(137, 117, 117);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
   
}
/* Services */
.services {
    list-style: none;
    padding: 0;
    text-decoration-color: black;
}
.a{
    color: black;
}
.b{
    color: black;
}
.c{
    color: black;
}
.d{
    color: black;
}
.e{
    color: black;
}
.f{
    color: black;
}
.g{
    color: black;
}
.h{
    color: black;
}
.i{
    color: black;
}
.man{
    color:#1500ff;
}
.reviews-section {
    padding: 70px 20px;
    text-align: center;
    background: #f5f5f5;
}

.google-rating-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.google-logo {
    width: 120px;
    margin-bottom: 10px;
}

.review-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #1a73e8;
    color: white;
    text-decoration: none;
    border-radius: 30px;
}

.review-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(109, 98, 98, 0.767);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: auto;
}

.review-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-content h4 {
    margin-bottom: 5px;
}
.re{
color: black;
}
.ulu{
    text-align: center;
    color:#3b4a5a ;
    margin-bottom: 20px;
}
/* ===== WHY CHOOSE SECTION ===== */

.why-choose{
    background:#4b6584;
    color:white;
    padding:80px 20px;
    text-align: center;
    
}

.why-container{
    max-width:900px;
    margin:auto;
}

.why-small{
    color:#ff7f50;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:10px;
}

.why-choose h2{
    font-size:36px;
    margin-bottom:25px;
}

.why-text{
    font-size:18px;
    line-height:1.8;
    color:#eaeaea;
    margin-bottom:40px;
}

.why-features{
    margin-bottom:40px;
}

.feature-item{
    font-size:18px;
    margin-bottom:18px;
}

.about-btn{
    display:inline-block;
    padding:14px 30px;
    background:white;
    color:#2c3e50;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
    transition:0.3s;
}

.about-btn:hover{
    background:#ff7f50;
    color:white;
}

/* RESPONSIVE */
@media(max-width:768px){

    .why-choose{
        padding:50px 15px;
    }

    .why-choose h2{
        font-size:24px;
    }

    .why-text{
        font-size:15px;
    }

    .feature-item{
        font-size:15px;
    }

}
