
html, body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-width: 320px; 
}


.container {
    width: 100%;  
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box; 
}
@media (max-width: 768px) {
    .whatsapp-button {
        position: fixed;
        bottom: calc(10rem + env(safe-area-inset-bottom)); 
        right: 1rem;
        z-index: 999;
        animation: bounce 2s infinite;
    }
}





.hero-image {
    height: 70vh; 
    background-position: center 70%; 
    background-size: cover;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


.services-section {
    margin-top: -100px; 
    position: relative;
    z-index: 10;
    background-color: #fff; 
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


* {
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}


img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}


.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-item {
    position: relative;
}


.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    text-align: center;
}

.btn-primary {
    background-color: #0a345e;
    color: white;
}

.btn-primary:hover {
    background-color: #0a345e;
    opacity: 0.9;
}

.btn-secondary {
    background-color: #e4b37b;
    color: white;
}

.btn-secondary:hover {
    background-color: #ce702b;
}


.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}


.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}


.whatsapp-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 999; 
    animation: bounce 2s infinite;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}




body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}


