        body {
            font-family: "Inter", sans-serif;
            background: radial-gradient(circle at top left, #0a0f2c, #0b122d 50%, #0a0e23);
            color: white;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background-color: #0a0f2c !important;
            padding: 20px 0;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.3rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-brand span {
            background: linear-gradient(90deg, #7cb3ff, #ff9f4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link {
            color: #ccc !important;
            font-weight: 500;
            margin-right: 20px;
        }

        .nav-link:hover {
            color: #ff7a00 !important;
        }

        .book-btn {
            background: linear-gradient(90deg, #ff7a00, #ff9f4a);
            border: none;
            color: #fff;
            padding: 8px 18px;
            border-radius: 8px;
            font-weight: 600;
        }

        /* Hero Section */
        .hero-section {
            padding: 100px 0 80px;
            position: relative;
        }

        .hero-title {
    font-size: 4.3rem;
    font-weight: 800;
    line-height: 1.3;
}

.hero-title span {
    background: linear-gradient(90deg, #94b7ff, #ff9f4a, #ff9f4a, #94b7ff); /* Gradient with repeating colors */
    background-size: 200% 100%; /* Set the size of the background for smooth animation */
    -webkit-background-clip: text; /* Clip the background to the text */
    -webkit-text-fill-color: transparent; /* Make the text transparent to show the background */
    animation: shine 4s linear infinite; /* Slower animation (4s duration) */
}

/* Keyframes for shining effect */
@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


        .hero-text {
            font-size: 1.1rem;
            color: #bbb;
            margin-top: 15px;
        }

        .feature-list {
            margin-top: 25px;
        }

        .feature-list li {
            list-style: none;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }

        .feature-list li i {
            font-size: 1.2rem;
            padding: 8px;
            border-radius: 8px;
        }

        .btn-orange {
            background: linear-gradient(90deg, #ff7a00, #ff9f4a);
            color: #fff;
            border: none;
            font-weight: 600;
            border-radius: 10px;
            padding: 12px 25px;
            margin-right: 15px;
        }

        .btn-orange:hover {
            background: linear-gradient(90deg, #ff8c00, #ffb35a);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid #3b6fd9;
            color: #7cb3ff;
            border-radius: 10px;
            padding: 12px 25px;
            font-weight: 600;
        }

        /* Hero Image Box */
        .hero-img-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 0 80px 20px rgba(255, 153, 60, 0.2);
            transition: all 0.4s ease-in-out;
            position: relative;
            overflow: hidden;
        }

        .hero-img-box:hover {
            transform: scale(1.03);
            box-shadow: 0 0 100px rgba(255, 153, 60, 0.4);
        }

        .hero-img-box img {
            width: 100%;
            border-radius: 20px;
        }

        .badge-special {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1rem;
            border-radius: 28px;
            background: linear-gradient(90deg,
                    rgba(255, 138, 61, 0.09),
                    rgba(111, 160, 255, 0.03));
            border: 1px solid rgba(255, 138, 61, 0.14);
            font-weight: 600;
            color: #ff7a00;
        }

        /* Stats */
        .stats {
            margin-top: 40px;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff7a00, #7cb3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-item p {
            color: #bbb;
            margin: 0;
            font-size: 0.9rem;
        }

        .emergency-box {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(5px);
            z-index: 1;
        }

        .emergency-box h5 {
            color: #ff9650;
            font-size: 0.9rem;
            margin-bottom: 3px;
        }

        .emergency-box h4 {
            margin: 0;
            font-weight: 600;
        }

        .emergency-icon {
            background: linear-gradient(90deg, #ff7e29, #ff5500);
            border-radius: 10px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 25px rgba(255, 100, 0, 0.4);
        }

        .emergency-icon i {
            font-size: 1.5rem;
            color: white;
        }

        /* ---------- SERVICES SECTION ---------- */
        .services-section {
            background: #0a0f2c;
            padding: 100px 0;
            text-align: center;
        }

         .badge {
            background: linear-gradient(90deg, rgba(255, 138, 61, 0.09), rgba(111, 160, 255, 0.03));
            border: 1px solid rgba(255, 138, 61, 0.2);
            color: #ff7a00;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        

        .services-section h2 {
            font-weight: 800;
            font-size: 3.2rem;
        }

        .services-section h2 span {
            background: linear-gradient(90deg, #ff9f4a, #7cb3ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .services-section p.lead {
            color: #b9b9b9;
            max-width: 700px;
            margin: 15px auto 60px;
            font-size: 1.1rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 15px;
            padding: 35px 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            background: rgba(255, 255, 255, 0.07);
            box-shadow: 0 0 40px #ff7b00;
            transform: translateY(-5px);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ff7a00, #7cb3ff);
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .service-card h5 {
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff;
        }

        .service-card p {
            color: #b9b9b9;
            font-size: 0.95rem;
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .bttn {
                margin-top: 20px;
            }
        }
    

        .repair-section {
  background: #0b1320;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gradient-text {
  background: linear-gradient(90deg, #ff7b00, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0px 0px 30px #ff7b00;
}

.orange-border {
  border: 1px solid rgba(255, 123, 0, 0.3);
}

.blue-border {
  border: 1px solid rgba(30, 144, 255, 0.3);
}

.repair-image img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: 1s;
}

.repair-image img:hover{
       transform: scale(1.3);
}

.repair-image{
    border-radius: 18px;
    padding: 10px;
    background-color: #192252;
    overflow: hidden;
}

/* Curved Divider */
.custom-divider {
  position: relative;
  height: 80px;
  background: #0a0f2c;
}
.custom-divider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0b1029;
  clip-path: ellipse(70% 100% at 50% 0%);
}
.custom-divider.flip::before {
  clip-path: ellipse(70% 100% at 50% 100%);
}

/* Stats Box */
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}
.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}


/* Brand Card Styling */
.brand-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}
.brand-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: #ff7a00;
}
.brand-card.active {
  border-bottom: 3px solid linear-gradient(90deg, #1e90ff, #ff7a00);
  box-shadow: 0 0 15px rgba(255,122,0,0.3);
}
.brand-icon {
  font-size: 2rem;
  color: #1e90ff;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #1e90ff, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Coverage Card */
.coverage-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}
.coverage-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: #ff7a00;
}

/* Icon */
.coverage-icon {
  font-size: 1.8rem;
  color: #ff7a00;
}

/* Badge for response time */
.badge-time {
  background: linear-gradient(90deg, #ff7a00, #ff5500);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #1e90ff, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.response-time{
    background-color: #1b2145; padding: 9px; border-radius: 12px;
}

/* Review Card */
.review-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
  text-align: left;
}
.review-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: #1e90ff;
}

/* Quote Icon */
.review-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #1e90ff;
  opacity: 0.5;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #1e90ff, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Cards */
.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: #ff7a00;
}
.contact-card .icon {
  font-size: 2rem;
  color: #ff7a00;
}

/* Forms */
.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #1e90ff;
  box-shadow: none;
  background: rgba(255,255,255,0.08);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #ff7a00, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

input{
    color: white !important;
}

textarea{
    color: white !important;
}

option{
    background: #0a0f2c !important;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: 0.3s;
  
}
.footer-link:hover {
  color: #ff7a00;
}

.social-links a {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  transition: 0.3s;
}
.social-links a:hover {
  color: #ff7a00;
}

footer ul li{
    margin-bottom: 10px !important;
}