/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
}

/* Background Slideshow */
body {
    animation: slideBackground 30s infinite; /* Infinite background animation */
    background-size: cover; /* Make sure images cover the screen */
    background-repeat: no-repeat;
    background-position: center;
}

/* Add multiple images for the slideshow */
@keyframes slideBackground {
    0% {
        background-image: url('IMAGES/mo.1.jpg');
    }
    33% {
        background-image: url('IMAGES/mo2.jpg');
    }
    66% {
        background-image: url('IMAGES/mo3.jpg');
    }
    100% {
        background-image: url('IMAGES/move6.jpg');
    }
}

/* Header Styling */
.page-header {
    position: fixed; /* Keep the header fixed on top */
    z-index: 10; /* Ensure the header stays above the background */
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent header */
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

/* Content Styling */
.page-content {
    position: relative;
    z-index: 10; 
    padding: 100px 20px; 
    color: #000;
    line-height: 1.6;
}
/* Header */
header {
    background:  #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
}
.header-content h1 {
    margin-bottom: 10px;
}
.phone img {
    width: 30px;
    vertical-align: middle;
}
.phone i {
    font-size: 30px;
    margin-right: 10px;
}

/* Menu Bars */
.menu-btn {
    font-size: 30px;
    background: none;
    color: rgb(248, 248, 252);
    border: none;
    cursor: pointer;
    display: none; /* Hide by default */
    position: absolute;
    top: 20px;
    right: 20px;
}
.menu {
    display: none; /* Hidden initially */
    background:  #007BFF;
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100vh;
}
.menu ul {
    list-style: none;
    text-align: center;
    margin-top: 50px;
}
.menu ul li {
    margin: 20px 0;
}
.menu ul li a {
    color: white;
    text-decoration: none;
}

/* Slideshow */
.slideshow img {
    width: 100%;
    height: auto;
    display: block;
    animation: slide 20s infinite;
}

/* Services */
.services {
    text-align: center;
    margin: 20px;
    color: aliceblue;
}
.service-item {
    display: inline-block;
    width: 200px;
    margin: 10px;
    background:  #007BFF;
    padding: 10px;
    animation: slide-in 2s ease-out;
}

/* Moving Steps */
.moving-steps {
    margin: 20px;
    text-align: center;
    font-size: 20px;
    letter-spacing: normal;
    padding: 10px;
    line-height: 1.8;
    color: #f5f7f8;
}
.about us {
    margin: 20px;
    text-align: center;
    font-size: 20px;
    letter-spacing: normal;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color:  #007BFF;
    border: 2px solid #007BFF;
    padding: 12px 34px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover {
    border: 2px solid #007BFF;
    background: #007BFF;
    color: #fff;
}
/* Why Us */
.why-us {
    margin: 20px;
    text-align: center;
    font-size: 20px;
    color: #f7f8fa;
}
.whatsapp-icon {
    position: fixed; 
    bottom: 10px;    
    right: 10px;     
    z-index: 1000;   
}

.whatsapp-icon a img {
    width:30px;    
    height: 30px;   
    border-radius: 40%; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s, box-shadow 0.3s; 
}

.whatsapp-icon a img:hover {
    transform: scale(1.1); 
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); 
}
/* Footer */
footer {
    background:  #007BFF;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-contact,
.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.footer-links ul li a:hover {
    color:  #007BFF;
}
.footer {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-media {
    margin: 20px 0;
}

.social-icon {
    text-decoration: none;
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color:  #007BFF;
}

.facebook:hover {
    color: #3b5998;
}

.twitter:hover {
    color: #1da1f2;
}

.instagram:hover {
    color: #e4405f;
}

.linkedin:hover {
    color: #0077b5;
}

.telegram:hover {
    color: #0088cc;
}

.tiktok:hover {
    color: #69c9d0;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
}
/* Media Queries */
@media (max-width: 768px) {
    .menu-btn {
        display: block; /* Show menu buttons */
    }
    .menu {
        display: none; /* Hidden by default */
    }
}

/* Animations */
@keyframes slide {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes slide-in {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}