/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #007bff;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #007bff;
        padding: 20px;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .logo h1 {
        font-size: 1.2rem;
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 20px 50px; /* Adjusted for fixed header */
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 20px;
}

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #0056b3;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    height: auto;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 30px;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-image img {
        width: 100%;
        max-width: 400px;
    }
}

.services {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Responsive Services */
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    .service-item {
        padding: 15px;
    }
    .service-item img {
        width: 80px;
        height: 80px;
    }
}

.about, .stats, .contact {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
}

.about h2, .stats h2, .contact h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.special-notes ul {
    list-style: none;
    padding: 0;
}

.special-notes li {
    margin-bottom: 10px;
}

/* Responsive About */
@media (max-width: 768px) {
    .about h2, .stats h2, .contact h2 {
        font-size: 1.5rem;
    }
    .about p {
        font-size: 1rem;
    }
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    background-color: #007bff;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    min-width: 150px;
    flex: 1;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-item {
        min-width: 200px;
        margin: 10px 0;
    }
    .stat-item h3 {
        font-size: 1.5rem;
    }
}

.contact-info {
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-form {
        max-width: 100%;
        padding: 0 20px;
    }
    .contact-info p {
        font-size: 0.9rem;
    }
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Additional responsive adjustments for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .service-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .stats-container {
        justify-content: center;
    }
    .stat-item {
        min-width: 120px;
    }
}

.float-call,
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 26px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.float-call,
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 26px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 12px rgba(0,0,0,0.3);
    transition: 0.3s ease;
}

/* Right side Call */
.float-call {
    right: 20px;
    background: #25D366;
}

/* Left side WhatsApp */
.float-whatsapp {
    left: 20px;
    background: #25D366;
}

.float-call:hover,
.float-whatsapp:hover {
    transform: scale(1.12);
}

