/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #007bff;
    height: 80px;              /* blue bar ki height */
    display: flex;
    align-items: center;
    padding: 0 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ddd;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.btn:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Services */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.service-item {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* About */
.about-image {
    width: 100%;
    max-width: 500px;
    margin: 1rem 0;
}

/* Contacts */
.contact-info {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    ul {
        margin-top: 1rem;
    }
}.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    font-size: 20px;
    color: #ffb300;
}

.logo img {
    height: 100%;        /* header ki poori height le */
    max-height: 80px;    /* header se zyada nahi */
    width: auto;
    display: block;
}
/* WHY CHOOSE US – CLEAN LIST STYLE */
.why-list {
  list-style: disc;
  padding-left: 25px;
  max-width: 900px;
  margin: 20px auto;
}

.why-list li {
  display: block;          /* force vertical */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

.why-list li strong {
  font-weight: 700;
}
