   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;
        }
        
    

        .car-models {
  text-align: center;
  padding: 50px 0;
  background: #f8f9fa;
}

/* Car Models */
.car-models {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
}

.car-models h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #222;
  letter-spacing: 1px;
}

.model-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 0 20px;
}

.model-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.model-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid #eee;
  transition: transform 0.3s;
}

.model-card:hover img {
  transform: scale(1.05);
}

.model-info {
  padding: 20px;
  text-align: left;
}

.model-info h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
  color: #d90429;
}

.model-info p {
  margin: 5px 0;
  color: #555;
  font-size: 15px;
}

.model-info a.btn {
  display: inline-block;
  margin-top: 12px;
  background: #d90429;
  border: none;
  padding: 8px 18px;
  color: #fff;
  font-size: 15px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.model-info a.btn:hover {
  background: #a50320;
}



        /* 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%;
            }
        }
        .details-container {
            flex: 1;
            margin-left: 20px;
        }

        .details-container h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .details-container p {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .details-container ul {
            list-style: none;
            padding: 0;
        }

        .details-container ul li {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .details-container button {
            margin-top: 15px;
            padding: 10px 15px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .details-container button:hover {
            background-color: #0056b3;
        }


        /* 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;
        }

