        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        /* Navbar Styling */
        .navbar {
            background-color: black;
            color: white;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar .logo {
            font-size: 20px;
            font-weight: bold;
        }

        .navbar .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar .nav-links li {
            margin: 0 15px;
        }

        .navbar .nav-links a {
            text-decoration: none;
            color: white;
            font-size: 16px;
        }

        .navbar .nav-links a:hover {
            color: #ccc;
        }

        .services-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.service {
  text-align: center;
}

.circle-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f0f0f0; /* Light gray background */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

.circle-icon img {
  width: 100%;
  height: 100%;
  object-fit:fill;
  cursor: pointer;
}
  .form-container {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            z-index: 1000;
            width: 300px;
        }

        .form-container h2 {
            text-align: center;
        }

        .form-container input,
        .form-container button {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            border-radius: 5px;
        }

        .form-container button {
            background-color: #007bff;
            color: white;
            border: none;
            cursor: pointer;
        }

        .form-container button:hover {
            background-color: #0056b3;
        }


.service p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.form-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 1000;
  width: 300px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-container h2 {
  text-align: center;
}

.form-container input,
.form-container button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.form-container button {
  cursor: pointer;
  background-color: #007bff;
  color: white;
  border: none;
}

.form-container button:hover {
  background-color: #0056b3;
}


        /* Product Card Styling */
        .card {
  perspective: 1000px;
  margin: 20px 0;
}

.card-inner {
  width: 100%;
  height: 300px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card-front {
  background: white;
  text-align: center;
}

.card-front img {
  width: 100%;
  height: 150px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.card-back {
  background-color: darkslategrey;
  color: white;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
}

.card-back p {
  margin-bottom: 20px;
}

        /* About Kia Section Styling */
        .about-kia {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 40px 20px;
            background-color: #f0f0f0;
            margin-top: 40px;
        }

        .about-kia .content {
            flex: 1;
            padding-left: 20px;
        }

        .about-kia img {
            max-width: 45%;
            height: auto;
        }

        @media (max-width: 768px) {
            .about-kia {
                flex-direction: column;
                text-align: center;
            }

            .about-kia .content {
                padding-left: 0;
                margin-top: 20px;
            }

            .about-kia img {
                max-width: 100%;
            }
        }

        /* Footer Section Styling */
        .footer {
            background-color:black;
            color: white;
            padding: 40px 20px;
        }

        .footer h5 {
            margin-bottom: 20px;
        }

        .footer .row {
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin: 5px 0;
        }

        .footer ul li a {
            color: white;
            text-decoration: none;
        }

        .footer ul li a:hover {
            color: #ccc;
        }

        .footer .social-media a {
            color: white;
            margin-right: 15px;
            font-size: 20px;
        }

        .footer .social-media a:hover {
            color: #ccc;
        }

        .footer .footer-bottom {
            text-align: center;
            margin-top: 20px;
        }

        /* Newsletter Form */
        .footer .newsletter input[type="email"] {
            width: 70%;
            padding: 10px;
            margin-right: 10px;
            border-radius: 5px;
            border: none;
            font-size: 16px;
        }

        .footer .newsletter button {
            padding: 10px 15px;
            background-color: #f39c12;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
        }

