/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

/* Header & Navigation */
header {
    background-color: #1a252f;
    color: white;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #f39c12;
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://placehold.co/1200x600?text=Transport+Banner') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
}

/* Container & Cards */
.container {
    padding: 40px 50px;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #1a252f;
}

.grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 30%;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

button:hover {
    background-color: #d68910;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Naye Buttons ki Styling */
.btn-primary {
    background-color: #f39c12;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #d68910;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.feature-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    width: 30%;
    text-align: center;
    border: 1px solid #eee;
}

.feature-box h3 {
    margin-bottom: 10px;
}

/* Call To Action Section */
.cta-section {
    background-color: #1a252f;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #f39c12;
}