:root{
  --orange: #FF6B00;
  --dark-blue: #1A2B4C;
  --green: #25D366;
  --dark: #1A1A1A;
  --gray: #F5F5F5;
  --text: #333;
}

*{ margin:0; padding:0; box-sizing:border-box; font-family: 'Poppins', sans-serif; }

body{ color: var(--text); line-height: 1.6; background: #fff; }
a{ text-decoration:none; color:inherit; }

/* TOP BAR */
.top-bar{
  background: var(--dark-blue);
  color: #fff;
  display:flex;
  justify-content: space-between;
  padding: 10px 5%;
  font-size: 13px;
  flex-wrap: wrap;
}
.top-bar-left span{ margin-right:20px; }
.top-bar-right a{ color:#fff; margin-left:15px; font-size:16px; }
.top-bar-right a:hover{ color:var(--orange); }

/* HEADER */
header{
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top:0;
  z-index: 1000;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ width:45px; height:45px; object-fit: contain; }
.logo h2{ font-size:22px; font-weight:700; }
.logo span{ color: var(--orange); }

nav{ display:flex; gap:25px; }
nav a{ font-weight:500; transition: 0.3s; }
nav a:hover{ color:var(--orange); }

.call-btn{
  background: var(--orange);
  color:#fff;
  padding:10px 18px;
  border-radius: 8px;
  font-weight:600;
  transition: 0.3s;
}
.call-btn:hover{ background:#e65c00; }

.hamburger{ display: none; font-size: 24px; cursor: pointer; color: var(--dark); }

/* HERO */
.hero{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 80px 5%;
  background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
  gap:40px;
}
.hero-text{ flex:1; }
.sub-title{ color:var(--orange); font-weight:600; letter-spacing:1px; }
.hero-text h1{ font-size:48px; font-weight:800; line-height:1.2; }
.hero-text h1 span{ color:var(--orange); }
.hero-text h2{ font-size:20px; font-weight:500; margin:10px 0 20px; }
.hero-features{ display:flex; gap:15px; flex-wrap:wrap; margin:20px 0; }
.hero-features span{
  background:#fff;
  padding:8px 12px;
  border-radius:20px;
  font-size:14px;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.hero-features i{ color:var(--orange); margin-right:5px; }
.buttons{ display:flex; gap:15px; flex-wrap:wrap; margin-top:25px; }
.btn{
  padding:14px 22px;
  border-radius:10px;
  font-weight:600;
  text-align:center;
  line-height:1.3;
  transition: 0.3s;
}
.btn:hover{ transform: translateY(-2px); }
.btn span{ font-size:12px; font-weight:400; }
.btn.call{ background:var(--orange); color:#fff; }
.btn.whatsapp{ background:var(--green); color:#fff; }
.btn.repair{ background:var(--dark-blue); color:#fff; }
.hero-image{ flex:1; }
.hero-image img{ width:100%; max-width:500px; }

/* SECTIONS COMMON */
section{ padding:70px 5%; text-align:center; }
.section-tag{ color:var(--orange); font-weight:600; font-size:14px; letter-spacing:1px; }
section h2{ font-size:32px; font-weight:700; margin:10px 0 40px; }

/* SERVICES */
.services{ background: var(--gray); }
.cards{ display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:25px; }
.card{ background:#fff; padding:30px 20px; border-radius:15px; box-shadow:0 5px 20px rgba(0,0,0,0.05); transition:0.3s; }
.card:hover{ transform: translateY(-5px); }
.card i{ font-size:35px; color:var(--orange); margin-bottom:15px; }
.card h3{ font-size:18px; margin-bottom:8px; }

/* GALLERY FILTER BUTTONS */
.gallery-filter{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0 40px 0;
}
.filter-btn{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}
.filter-btn:hover, .filter-btn.active{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 15px rgba(255,107,0,0.4);
}
.gallery-item{ display: block; }

/* GALLERY SECTION - SMALL SIZE FIX */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
  justify-items: center;
}

.gallery-item { 
  text-align: center; 
  padding: 15px;
  background: #fff; /* Card ko white background diya */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 300px;   
  height: 200px;  
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  margin: 0 auto;
  transition: transform 0.3s;
}
.gallery-item img:hover { transform: scale(1.05); }

.gallery-item p { 
  margin-top: 12px; 
  font-weight: 600; 
  color: #1A2B4C; /* #fff ko dark blue kiya taaki dikhe */
  font-size: 15px;
}

@media (max-width: 768px) {
  .gallery-item img { width: 280px; height: 180px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* LIGHTBOX */
.lightbox{ display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); justify-content: center; align-items: center; }
.lightbox-content{ max-width: 90%; max-height: 80%; border-radius: 10px; }
.close{ position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; }

/* WHY US */
.why-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap:25px; }
.why-item{ padding:20px; }
.why-item i{ font-size:30px; color:var(--orange); margin-bottom:10px; }

/* REVIEWS */
.reviews{ background: var(--gray); }
.reviews-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:25px; }
.review-card{ background:#fff; padding:25px; border-radius:15px; text-align:left; box-shadow:0 5px 20px rgba(0,0,0,0.05); }
.stars{ color:#FFC107; margin-bottom:10px; }

/* ABOUT US SECTION - WITHOUT COLOR CHANGE */
.about-section{
  background: linear-gradient(135deg, #162e50 0%, #1f3d6e 100%); /* Background thoda halka kiya */
  padding: 80px 8%;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-section .sub-title{ 
  color: var(--orange); 
  text-align: center;
  letter-spacing: 2px;
  font-weight: 700;
}
.about-section h2{ 
  text-align: center;
  font-size: 42px; 
  color: #a8b8d8; /* Yehi wala grey rakha, bas thoda bright kiya */
  text-shadow: 0 2px 10px rgba(0,0,0,0.4); /* Glow add kiya taaki pop kare */
  margin-bottom: 40px;
}
/* ABOUT SECTION IMAGE FIX */
.about-image{
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img img{ width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.about-image img:hover{
  transform: scale(1.03); /* Hover pe halka zoom */
}

.about-section{
  background: linear-gradient(135deg, #162e50 0%, #1f3d6e 100%);
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 45% 55%; /* Image 45%, Text 55% */
  gap: 50px;
  align-items: center;
}


.about-text strong{ color: var(--orange); }

@media(max-width:900px){
  .about-section{ grid-template-columns: 1fr; text-align: center; }
  .about-section h2{ font-size: 32px; }
}

/* CONTACT */
.contact-container{ display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; margin-bottom: 40px; }
.contact-form{ background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.contact-form h3{ font-size: 24px; margin-bottom: 20px; color: var(--dark); }
.form-group{ margin-bottom: 15px; }
.form-group input, .form-group select, .form-group textarea{
  width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: 'Poppins', sans-serif; outline: none;
}
.form-group input, .form-group select, .form-group textarea{
  width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: 'Poppins', sans-serif; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{ border-color: var(--orange); }
.btn-submit{ width: 100%; padding: 14px; background: var(--orange); color: #fff; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-submit:hover{ background: #e65c00; }
.map-container{ border-radius:15px; overflow:hidden; }

/* FOOTER */
footer{ background:var(--dark-blue); color:#ccc; }
.footer-container{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:30px; padding:50px 5%; }
.footer-col h3, .footer-col h4{ color:#fff; margin-bottom:15px; }
.footer-col h3 span{ color:var(--orange); }
.footer-col ul{ list-style:none; }
.footer-col ul li{ margin:8px 0; }
.footer-col ul li a:hover{ color:var(--orange); }
.footer-bottom{ text-align:center; padding:20px; border-top:1px solid #333; font-size:14px; }

/* FLOATING WHATSAPP */
.floating-whatsapp{
  position:fixed; bottom:20px; right:20px; background:var(--green); color:#fff; width:55px; height:55px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:28px; box-shadow:0 5px 15px rgba(0,0,0,0.2); z-index:999;
}

/* ANIMATION */
.card, .why-item, .review-card {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}
.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE + HAMBURGER */
@media(max-width: 900px){
  .hero{ flex-direction:column; text-align:center; }
  .hero-features{ justify-content:center; }
  .buttons{ justify-content:center; }
  .contact-container{ grid-template-columns: 1fr; }
  
  nav{
    position: absolute; top: 75px; left: -100%; width: 100%; background: #fff;
    flex-direction: column; text-align: center; padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1); transition: 0.3s ease;
  }
  nav.active{ left: 0; }
  nav a{ padding: 12px 0; display: block; }
  .call-btn{ display: none; }
  .hamburger{ display: block; }
}




/* WHATSAPP GROUP BUTTON */
.whatsapp-group{
  text-align: center;
  margin-top: 25px;
}
.whatsapp-group a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.whatsapp-group a:hover{
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}
.whatsapp-group i{ font-size: 20px; }
.whatsapp-group p{ font-size: 13px; color: #aaa; margin-top: 8px; }

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.whatsapp-float:hover{ transform: scale(1.1); }


/* DESKTOP - Image Left, Text Right */
.hero{
  display: flex;
  flex-direction: row-reverse; /* Bas ye 1 line */
  align-items: center;
  gap: 40px;
  padding: 80px 8%;
}

.hero img{
  width: 100%;
  max-width: 500px;
}


/* Mobile ke liye fix */
@media (max-width: 768px){
  .hero { 
    flex-direction: column; /* Mobile: Image Upar, Text niche */
    text-align: center;
  }
  .hero img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
}

.hero {
  display: flex;
  flex-direction: row-reverse; /* Desktop: Image Left */
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
}

/* MOBILE FIX */
@media (max-width: 768px){
  .hero { 
    flex-direction: column; /* Mobile: Image Upar */
    text-align: center;
  }
  .hero img {
    width: 90%;
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
  }
}