/* ================= HERO SECTION ================= */
.hero-section {
  padding: 120px 0 90px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #e0e7ff;
  color: #1d4ed8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Heading */
.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #1d4ed8;
}

/* Description */
.hero-content p {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.btn-call {
  background: #dc2626;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-call:hover {
  background: #b91c1c;
}

.btn-book {
  background: #1d4ed8;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-book:hover {
  background: #0f3abf;
}

/* Trust Line */
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #334155;
}

/* Right Highlights */
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.highlight-card h3 {
  font-size: 32px;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 14px;
  color: #475569;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 100px 0 70px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}

/* COMMON SECTIONS */
section{
  padding:80px 20px;
}

.container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

/* ABOUT */
.home-about{
  background:#f8f9fa;
}

.home-about h2{
  font-size:36px;
  margin-bottom:20px;
}

/* SERVICES */
.home-services{
  text-align:center;
}


/* WHY US */
/* ================= WHY CHOOSE US ================= */

.why-section {
  padding: 90px 0;
  background: #f8fafc;
}

/* Centered Header */
.section-header.center {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.why-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Highlight Card */
.why-card.highlight {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
}

.why-card.highlight h3,
.why-card.highlight p {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= TESTIMONIALS ================= */

.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Slider */
.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* Card */
.testimonial-card {
  min-width: 100%;
  background: #f8fafc;
  padding: 40px 35px;
  border-radius: 16px;
  text-align: center;
}

.review {
  font-size: 18px;
  font-style: italic;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 25px;
}

.customer-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.customer-info span {
  font-size: 14px;
  color: #64748b;
}

.stars {
  color: #facc15;
  font-size: 18px;
  margin-top: 10px;
}

/* Dots */
.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #cbd5f5;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #1d4ed8;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .review {
    font-size: 16px;
  }
}
/* CONTACT CTA */
.home-contact{
  background:#007bff;
  color:#fff;
  text-align:center;
}

.home-contact p{
  margin:15px 0 25px;
}

.home-contact .btn-outline{
  border-color:#fff;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h2{
    font-size:32px;
  }
}
/* ================= ABOUT SECTION ================= */

.about-section {
  padding: 80px 0;
  background: #f8fafc;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Badge */
.section-badge {
  display: inline-block;
  background: #e6f0ff;
  color: #1d4ed8;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* Content */
.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #1d4ed8;
}

.about-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Features List */
.about-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.about-features li {
  font-size: 15px;
  color: #334155;
  margin-bottom: 10px;
}

/* Buttons */
.about-actions {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #1d4ed8;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0f3abf;
}

.btn-outline {
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #1d4ed8;
  color: #fff;
}

/* Stats Cards */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-card h3 {
  font-size: 32px;
  color: #1d4ed8;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #475569;
}

.stat-card.highlight {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff;
}

.stat-card.highlight h3,
.stat-card.highlight p {
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .about-actions {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}
/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Section Header */
.section-header {
  max-width: 750px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: #1d4ed8;
}

.section-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #f8fafc;
  padding: 35px 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 34px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card a {
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

/* Emergency Card */
.service-card.emergency {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
}

.service-card.emergency h3,
.service-card.emergency p {
  color: #ffffff;
}

.emergency-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ffffff;
  color: #dc2626;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.emergency-btn:hover {
  background: #fee2e2;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}
/* ================= NAVBAR ================= */

/* ================= NAVBAR ================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
}

.logo span {
  color: #1d4ed8;
}

/* Desktop Menu */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
}

/* Call Button */
.nav-call {
  background: #dc2626;
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0f172a;
  border-radius: 3px;
}

/* Mobile Menu (IMPORTANT FIX) */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  z-index: 9998;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu a {
  padding: 16px 20px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-call {
  background: #dc2626;
  color: #ffffff !important;
  text-align: center;
}

/* ACTIVE STATE */
.mobile-menu.active {
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
/* ================= FOOTER ================= */

.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* Brand */
.footer-brand h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-brand span {
  color: #60a5fa;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  background: #1e293b;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #1d4ed8;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #60a5fa;
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #60a5fa;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #1d4ed8;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #1d4ed8;
}

.nav-links a:hover::after {
  width: 100%;
}
.hamburger span {
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: #1d4ed8;
}
/* ===== Brands We Service ===== */
.brands-section {
  background: #ffffff;
  padding: 70px 20px;
  overflow: hidden;
}

.brands-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.brands-container h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.brands-container p {
  color: #6b7280;
  margin-bottom: 40px;
}

/* Slider */
.brands-slider {
  position: relative;
  overflow: hidden;
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollBrands 30s linear infinite;
}

.brands-track img {
  height: 70px;
  margin: 0 35px;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* Hover interaction */
.brands-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Animation */
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brands-track img {
    height: 50px;
    margin: 0 22px;
  }
}
/* =========================
   MOBILE UI FIXES
   ========================= */
@media (max-width: 768px) {

  /* Global container */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* NAVBAR */
  .navbar {
    padding: 12px 16px;
  }

  .navbar-brand {
    font-size: 18px;
  }

  /* HERO SECTION */
  .hero {
    padding: 24px 0 32px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero p,
  .hero ul {
    margin-bottom: 16px;
  }

  /* HERO BUTTONS */
  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons a,
  .hero-buttons button {
    padding: 14px;
    font-size: 16px;
  }

  /* REMOVE EXTRA MARGINS */
  section {
    padding: 40px 0;
  }

  /* CARDS */
  .card,
  .service-card,
  .why-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  /* STATS / COUNTERS */
  .stat-box {
    padding: 20px;
  }

}
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}
