* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP HEADER */
.top-header {
  background: #0d3b5c;
  color: #fff;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h2 {
  font-size: 20px;
}

.logo p {
  font-size: 12px;
}

.contact-info {
  display: flex;
  gap: 30px;
  font-size: 14px;
}

/* NAVBAR */
.navbar {
  background: #f5f5f5;
  padding: 15px 0;
}

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

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu li {
  cursor: pointer;
  font-weight: 500;
}

.menu .active {
  color: #f9a825;
  border-bottom: 2px solid #f9a825;
  padding-bottom: 5px;
}

.btn-quote {
  background: #f9a825;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */
.hero {
  position: relative;
  height: 85vh;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 300;
}

.hero h2 {
  font-size: 60px;
  color: #f9a825;
  font-weight: 700;
  margin: 10px 0;
}

.hero p {
  margin-bottom: 20px;
}

.btn-primary {
  background: #1e5a86;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
}

/* Floating buttons */
.floating-buttons {
  position: absolute;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-info {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .nav-flex {
    flex-direction: column;
    gap: 10px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    height: 70vh;
  }

  .hero-content {
    text-align: center;
  }
}
/* ===============================
   TESTIMONIALS SECTION
=============================== */

.testimonials {
  background: #f7f7f7;
  padding: 80px 0;
  position: relative;
}

/* Header */
.testimonial-header {
  position: relative;
  margin-bottom: 40px;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.testimonial-header p {
  color: #777;
  margin-top: 10px;
}

.bg-text {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 193, 7, 0.15);
  z-index: 0;
}

/* Rating */
.rating-box {
  text-align: center;
  margin-bottom: 50px;
}

.rating-box h3 {
  font-size: 22px;
  font-weight: 700;
}

.stars {
  color: #ffb400;
  font-size: 26px;
  margin: 10px 0;
}

.stars.small {
  font-size: 18px;
}

.google {
  font-size: 22px;
  font-weight: 600;
  color: #4285f4;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

/* Avatar Colors */
.purple { background: #8e44ad; }
.blue { background: #2980b9; }
.green { background: #27ae60; }
.dark { background: #2c3e50; }

.user h4 {
  font-size: 16px;
}

.user span {
  font-size: 13px;
  color: #777;
}

/* Review */
.review {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

/* Read more */
.read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #1e5a86;
  text-decoration: none;
}

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

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

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

  .bg-text {
    font-size: 50px;
  }

  .testimonial-header h2 {
    font-size: 28px;
  }
}


.services-section {
  padding: 60px 20px;
  background: #f5f7fa;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

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

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #555;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

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

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

.maintenance-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffb400, #ffc107);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.maintenance-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.maintenance-content {
  max-width: 550px;
}

.maintenance-content h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1e2a38;
  line-height: 1.2;
  margin-bottom: 20px;
}

.maintenance-content h2 span {
  color: #ffffff;
}

.quote-btn {
  display: inline-block;
  background: #2c3e50;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #1a252f;
}

.maintenance-content p {
  font-size: 15px;
  color: #2d2d2d;
  line-height: 1.7;
}

/* RIGHT IMAGE */
.maintenance-image {
  width: 45%;
  position: relative;
}

.maintenance-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ANGLED CUT EFFECT */
.maintenance-image::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 250px;
  height: 100%;
  background: linear-gradient(135deg, #ffb400, #ffc107);
  transform: skewX(-20deg);
}

/* SIDE LABEL */
.side-text {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: rgba(255,255,255,0.25);
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .maintenance-container {
    flex-direction: column;
    text-align: center;
  }

  .maintenance-image {
    width: 100%;
  }

  .maintenance-image::before {
    display: none;
  }

  .side-text {
    display: none;
  }

  .maintenance-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .maintenance-content h2 {
    font-size: 26px;
  }
}


.why-choose {
  padding: 80px 20px;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
}

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

.section-header p {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.why-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e293b;
}

.why-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.stat {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.stat h3 {
  font-size: 28px;
  color: #f59e0b;
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  color: #64748b;
}

/* CTA */
.why-cta {
  text-align: center;
}

.cta-btn {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #d97706;
}

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

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .stats {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

.blog-section {
  padding: 80px 20px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 34px;
  color: #1e293b;
}

.section-header span {
  color: #f59e0b;
}

.section-header p {
  max-width: 700px;
  margin: 10px auto;
  color: #64748b;
  font-size: 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1e293b;
}

.blog-content p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
}

.blog-content a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #f59e0b;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  padding-top: 15px;
  font-size: 14px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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