* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #cce3ec;
  border-bottom: 1px solid #ccc;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  
}

 

body {
  font-family: Arial, sans-serif;
}

/* Header styling */




/* Phone styling */
.phone {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.phone i {
  margin-right: 5px;
}

/* Hamburger menu */
.hamburger i {
  font-size: 1.5rem;
  cursor: pointer;
}



.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.social-icons a {
  font-size: 16px;
  margin: 0 3px;
}

/* Brand-specific colors */
.social-icons .fa-instagram {
  color: #E1306C; /* Instagram pink */
}

.social-icons .fa-whatsapp {
  color: #25D366; /* WhatsApp green */
}

.social-icons .fa-telegram {
  color: #0088cc; /* Telegram blue */
}

.social-icons .fa-facebook-f {
  color: #1877F2; /* Facebook blue */
}

.social-icons .fa-youtube {
  color: #FF0000; /* YouTube red */
}


.service-btn {
  background-color: #1544e2;
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  padding: 6px 10px;
}

/* Mobile Nav Menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #f0f0f0;
  padding: 10px 20px;
}

/*.mobile-nav a {
  padding: 10px 0;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #ddd;
}

.mobile-nav.active {
  display: flex;
}

/* Services Dropdown */
.services-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 999;
  width: 280px;
  max-height: 400px;
  overflow-y: auto;
}

.services-dropdown.active {
  display: block;
}

.services-dropdown ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}

.services-dropdown li {
  position: relative;
  padding: 6px;
  cursor: pointer;
  font-weight: bold;
}

.services-dropdown li span {
  display: block;
  padding: 6px 8px;
  transition: background 0.3s;
}

.services-dropdown li:hover > span {
  background: #f0f0f0;
}

/* Submenus */
.services-dropdown li ul {
  display: none;
  position: absolute;
  top: 0;
  right: 100%;
  background: #fafafa;
  border: 1px solid #ccc;
  width: 250px;
  z-index: 1000;
  white-space: nowrap;
}

.services-dropdown li:hover > ul {
  display: block;
}

.services-dropdown li ul li {
  font-weight: normal;
  padding: 6px 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .social-icons a {
    font-size: 14px;
  }

  .service-btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  .services-dropdown {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
  }

  .services-dropdown li ul {
    position: static;
    border: none;
    background: #eee;
  }

  .services-dropdown li:hover > ul {
    display: none;
  }

  .services-dropdown li span::after {
    content: " ▼";
    float: right;
  }

  .services-dropdown li.open > ul {
    display: block;
  }
}
.hero-section {
  background: #f8f8f8;
  padding: 50px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.hero-text {
  flex: 1 1 500px;
  padding: 20px;
}

.hero-text h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text .blue-text {
  color: #1544e2;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1544e2;
  font-weight: bold;
}

.hero-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero-call,
.hero-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #1544e2;
  font-size: 16px;
}

.hero-image {
  flex: 1 1 400px;
  padding: 20px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}
.services-section {
  background-color: #0c111d;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #f8f405;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service-box {
  background: #fff;
  color: #000;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.service-box h3 {
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  gap: 30px;
  justify-items: center;
}
/* Tablet (2 per row) */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 per row) */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-table {
  max-width: 1000px;
  margin: auto;
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
}

.service-table h2 {
  font-size: 2.2rem;
  color: #2563eb;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th, td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}

th {
  font-weight: bold;
}

.choose-btn {
  background-color: #2563eb;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.choose-btn:hover {
  background-color: #1e40af;
}
.advantages-section {
     padding: 50px 20px 20px;
      max-width: 1300px;
      margin: auto;
    }

    .advantages-section h2 {
      font-size: 2.5rem;
      color: #2d5eff;
      margin-bottom: 40px;
      font-weight: 700;
      text-align: left;
    }

    .advantages-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .advantage-group {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .advantage-box {
      display: flex;
      gap: 15px;
      align-items: flex-start;
    }

    .advantage-box i {
      font-size: 24px;
      color: #2d5eff;
      flex-shrink: 0;
      margin-top: 6px;
    }

    .advantage-box h4 {
      margin: 0;
      font-weight: 700;
      font-size: 1rem;
    }

    .advantage-box p {
      margin: 5px 0 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: #2a0466;
    }

    .advantage-center {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: visible;
      padding: 40px 0;
    }

    .advantage-center img {
      max-width: 220px;
      height: auto;
      transition: transform 0.4s ease-out;
      will-change: transform;
      transform-origin: center center;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .advantage-center {
        padding: 30px 0;
      }
    }

    @media (max-width: 992px) {
      .advantages-container {
        flex-direction: column;
        align-items: center;
      }

      .advantage-center {
        order: -1;
        margin-bottom: 30px;
      }

      .advantage-group {
        align-items: center;
        text-align: center;
      }

      .advantage-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .advantage-box i {
        margin-top: 0;
      }
    }
    
.about-section {
  padding: 40px 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 500px;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.about-text h2 span {
  color: #007bff;
}

.about-text h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text ul {
  margin: 10px 0 20px 20px;
  padding-left: 10px;
}

.about-text ul li {
  margin-bottom: 10px;
}

.about-image {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-btn {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #2c50d3;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.service-btn:hover {
  background-color: #1a39a6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text ul {
    text-align: left;
  }

  .about-image img {
    max-width: 100%;
    margin-top: 20px;
  }
}
.detailing-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.detailing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1544829099-b9a0c07fad1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.detailing-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.detailing-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #e95420;
  border-radius: 2px;
}

.detailing-section > p {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #64748b;
  position: relative;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  position: relative;
}

.service {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-left: 5px solid #1a5fb4;
  display: flex;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a5fb4;
  margin-right: 25px;
  min-width: 60px;
  height: 60px;
  background: rgba(26, 95, 180, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-content {
  flex-grow: 1;
}

.service h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.service h3::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #e95420;
  margin-left: 15px;
}

.service p {
  color: #64748b;
  line-height: 1.7;
  font-size: 1.05rem;
}

.service strong {
  color: #1a5fb4;
}

/* Service icons */
.service:nth-child(1) .service-number::before { content: "🚿"; }
.service:nth-child(2) .service-number::before { content: "🧽"; }
.service:nth-child(3) .service-number::before { content: "✨"; }
.service:nth-child(4) .service-number::before { content: "🛡️"; }
.service:nth-child(5) .service-number::before { content: "🛞"; }
.service:nth-child(6) .service-number::before { content: "🔍"; }
.service:nth-child(7) .service-number::before { content: "🔧"; }
.service:nth-child(8) .service-number::before { content: "💡"; }
.service:nth-child(9) .service-number::before { content: "⚙️"; }

/* Responsive design */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  
  .detailing-section h2 {
    font-size: 2.2rem;
  }
  
  .service {
    padding: 25px;
  }
  
  .service-number {
    font-size: 2rem;
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .detailing-section {
    padding: 20px;
  }
  
  .detailing-section h2 {
    font-size: 1.8rem;
  }
  
  .service {
    flex-direction: column;
    padding: 20px;
  }
  
  .service-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .service h3::after {
    display: none;
  }
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.services-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.services-list li {
  margin-bottom: 15px;
}

.checklist {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.checklist li {
  margin-bottom: 10px;
}

.faq-section {
  margin-top: 40px;
}

details {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  background: #f0f0f0;
}

summary {
  cursor: pointer;
  font-weight: bold;
}
.footer {
  background-color: #0d111c;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo-section {
  flex: 1 1 250px;
  text-align: center;
}

.footer-logo-section .logo {
  width: 100px;
  margin-bottom: 10px;
}

.social-icons a {
  margin: 0 5px;
  color: #000000;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #000000;
}

.footer-contact-section {
  flex: 1 1 250px;
}

.footer-contact-section h4 {
  margin-bottom: 5px;
  color: #ffffff;
}

.footer-contact-section p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-links {
  flex: 1 1 150px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f1c40f;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact-section,
  .footer-links {
    margin-top: 20px;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
html {
  scroll-behavior: smooth;
}


.submenu {
  display: none;
  animation: slideFade 0.4s ease;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.submenu li {
  list-style: none;
  padding: 10px 15px;
  border-bottom: 1px solid #ececec;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.submenu li:hover {
  background-color: #f1f1f1;
}

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content {
  border-radius: 15px;
  padding: 10px;
}

.modal-title {
  color: #0d6efd;
}

.modal-body label {
  font-weight: 500;
}
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === Service Card === */
.service-card {
  background: #F7F7F7;
  border: 1px solid #080808;
  border-radius: 12px;
  padding: 10px 10px;

  text-align: center;

}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #080808;
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.15);
}

/* === Card Titles === */
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
}

/* Submenu container */
.submenu {
  display: none;
  margin-top: 15px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  animation: slideFade 0.4s ease;
}

/* Each row inside submenu */
.submenu-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

/* Submenu items */
.submenu-item {
  flex: 1;
  background-color: #eaec61;
  padding: 12px 16px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.submenu-item:hover {
  background: linear-gradient(135deg, #cde9ff, #b6dbfc);
  transform: translateY(-2px);
}



.submenu.active {
  display: block;
}

/* === Submenu Items === */
.submenu li {
  list-style: none;
  padding: 12px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.submenu li:hover {
  background-color: #e6f0ff;
}

/* === Slide and Fade Animation === */
@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive Fix (Mobile View) === */
@media (max-width: 768px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}
