/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div {
    text-align: justify;
    text-justify: inter-word;
  }

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo img {
    width: 100px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        text-align: center;
    }

    nav ul li {
        display: block;
        padding: 10px 0;
    }

    nav ul li a {
        padding: 15px;
        display: block;
        border-radius: 0;
    }
}

/* Blinking Call Button in Header */
.blinking-call-button {
    display: inline;
    background-color: #0bcf0b;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 20px;
    animation: blinker 1.5s linear infinite;
    float: right;
}

.blinking-call-button i {
    margin-right: 5px;
}

@keyframes blinker {
    50% {
        opacity: 0.5;
    }
}

/* Slider Section */
.slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.slider .slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h2 {
    font-size: 36px;
}

/* Services Section */
#services {
    padding: 50px 0;
    text-align: center;
}

#services h2 {
    margin-bottom: 20px;
}

.service {
    margin-bottom: 20px;
}

/* About Us Section */
#about {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

/* Counting Section */
#counting {
    padding: 50px 0;
    text-align: center;
}

.count-box {
    display: inline-block;
    margin: 20px;
}

.count-box h3 {
    font-size: 48px;
    margin-bottom: 10px;
}

/* Contact Form */
#contact {
    padding: 50px 0;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: left;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #feb47b;
}

.footer-bottom {
    background-color: #222;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin: 10px 0;
    }
}

/* Floating Call and WhatsApp Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-buttons a {
    display: inline-block;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.call-button {
    background-color: #ff7e5f;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .blinking-call-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}
