.services {
    padding: 60px 0;
    text-align: center;
    background: #f9f9f9;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-item {
    background: #fff;
    border: 2px solid #000;
    padding: 25px;
    width: 250px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-item h3 a {
    text-decoration: none;
    color: #000;
}

.service-item p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }
}
/* Dropdown menu basic styling */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown container */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #111; /* dropdown ka color */
    min-width: 300px;       /* width increase kiya */
    z-index: 9999;          /* links upar dikhein */
    border-radius: 5px;     /* thodi rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* shadow effect */
}

/* Dropdown items */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 25px 50px;     /* height aur spacing increase kiya */
    font-size: 18px;        /* font bada kiya readability ke liye */
    color: white;
    text-decoration: none;
    line-height: 1.8;     /* line-height increase kiya for taller spacing */
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #25D366; /* hover effect */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: #000; 
    color: #fff;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT SIDE (FORM) */
.footer-left {
    flex: 1;
    min-width: 320px;
    margin-bottom: 30px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form input,
.footer-form textarea {
    background: #fff;      /* white background */
    color: #000;           /* black text */
    border: 1px solid #ccc;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #555;           /* better placeholder color */
}


.footer-form button {
    background: #ff6a00;
    border: none;
    padding: 14px;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #e45f00;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* LINKS */
.footer-links a {
    display: block;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 6px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
}

/* COPYRIGHT */
.footer-copy p {
    margin: 3px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-right {
        margin-top: 20px;
    }
}


.contact-whatsapp {
    margin-top: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;          /* WhatsApp green */
    color: #fff;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* Icon size support (font-awesome) */
.btn-whatsapp i {
    font-size: 20px;
}


/* CSS */
.logo-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 120px; /* apni requirement ke mutabiq adjust karein */
    width: auto;
}



