*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        /* Navigation Header */
header {
            background-color: #1a252f;
            color: #fff;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

header .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #33bbff;
        }

header nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
            font-weight: 500;
            transition: color 0.3s;
        }

header nav a:hover {
            color: #ff6600;
        }

        /* Hero Banner */
.hero {
            background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.85)), url('https://unsplash.com') no-repeat center center/cover;
            color: #fff;
            padding: 80px 5%;
            text-align: center;
        }

.hero h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }

.hero p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: #cfd8dc;
        }

.cta-btn {
            background-color: #ff6600;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: background 0.3s;
            display: inline-block;
        }

.cta-btn:hover {
            background-color: #0097a7;
        }

        /* Services Section */
.services {
            padding: 60px 5%;
            text-align: center;
        }

.services h2 {
            margin-bottom: 40px;
            font-size: 2rem;
            position: relative;
        }

.services h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #ff6600;
            margin: 10px auto 0;
        }

.services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

.service-card {
            background: #fff;
            padding: 30px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

.service-card:hover {
            transform: translateY(-5px);
        }

.service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
.service-card h3 {
            margin-bottom: 10px;
            color: #1a252f;
        }

        /* Contact & Info Section */
.contact-section {
            background-color: #ffffff;
            padding: 60px 5%;
            border-top: 1px solid #e0e0e0;
			border-bottom: 1px solid #e0e0e0;
        }

.contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

.contact-info h3, .hours h3 {
            font-size: 1.5rem;
            color: #1a252f;
            margin-bottom: 20px;
            border-left: 4px solid #ff6600;
            padding-left: 10px;
        }

.contact-details p, .hours p {
            margin-bottom: 12px;
			margin-right: 30px;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }

.contact-details strong {
            width: 100px;
            display: inline-block;
            color: #555;
        }

.phone-link {
            color: #ff6600;
            text-decoration: none;
            font-weight: bold;
        }

.phone-link:hover {
            text-decoration: underline;
        }

        /* Footer */
footer {
            background-color: #1a252f;
            color: #b0bec5;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }

        /* Responsive Design Map Out */
@media (max-width: 600px) {
            header {
                flex-direction: column;
                text-align: center;
            }
header nav {
                margin-top: 15px;
            }
header nav a {
                margin: 0 10px;
            }
.hero h1 {
                font-size: 2rem;
            }
        }
 
/* CSS Styles for the Button */
.whatsapp-rect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366; /* Official WhatsApp Green */
  color: #FFFFFF;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 4px; /* Slight curve for clean layout rectangle */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

/* Hover Effect */
.whatsapp-rect-btn:hover {
  background-color: #20ba5a; /* Slightly darker green */
  transform: translateY(-2px);
}

/* Active/Click Effect */
.whatsapp-rect-btn:active {
  transform: translateY(0);
}

/* Icon Sizing */
.wa-icon {
  width: 20px;
  height: 20px;
}
 
	/* Base Section Styling */
.repair-brands-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

.brands-container {
  max-width: 1000px;
  margin: 0 auto;
}

.repair-brands-section h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
}

.brands-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Responsive Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual Brand Card Styling */
.brand-card {
  background-color: #faf6f2;
  padding: 25px 15px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #522709;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  
}

/* Hover Effect for Better UX */
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-color: #ffc296; /* Subtle blue highlight on hover */
}

/* Legal Disclaimer Styling */
.brands-disclaimer {
  font-size: 0.65rem;
  color: #888;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.brands-container h2::after {
            content: '';
            display: block;
            width: 150px;
            height: 3px;
            background-color: #ff6600;
            margin: 10px auto 0;
        }
 