/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #007bff;
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #007bff;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
}

.social-icons a:hover {
    color: #007bff;
}

/* Hero Section with Sliding Background */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background-color:  #007BFF;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    display: flex;
    animation: slide 15s infinite;
}

.slide {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.slide1 {
    background-image: url('IMAGES/house.jpg');
}

.slide2 {
    background-image: url('IMAGES/office.jpg');
}

.slide3 {
    background-image: url('IMAGES/airport.jpg');
    
}

.slide4 {
    background-image: url('IMAGES/pet.jpg');
}

@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.company-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    justify-content: center;
    z-index: 2;
}

.company-name h1 {
        font-size: 36px; /* Adjust size as needed */
        font-weight: bold; /* Keeps it prominent */
        text-align: center; /* Centers text horizontally */
        line-height: 1.2; /* Adjust spacing between lines */
        word-wrap: break-word; /* Ensures proper word wrapping */
        white-space: nowrap; /* Keeps the text on one line */
        overflow: hidden; /* Prevents overflowing */
        text-transform: capitalize; /* Makes the first letter uppercase */
    }
.p {
    font-size: 15;
}
/* Booking Steps Section */
.steps-container {
    display: flex;
    flex-direction: column; /* Aligns items vertically */
    gap: 20px; /* Adds space between steps *
    margin: 0 auto; /* Centers the container */
    padding: 20px;
  }
  
  .step {
    text-align: left; /* Optional: aligns text to the left */
    color: #0d0d0e;
  }
.booking-steps {
    background: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
    color: #0d0d0e;
}

.booking-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 25px;
}


.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background: #007bff;
    color: #fff;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info, .quick-links {
    width: 45%;
}

.contact-info h3, .quick-links h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.quick-links ul {
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 5px;
}

.quick-links ul li a {
    text-decoration: none;
    color: #fff;
}

.quick-links ul li a:hover {
    color: #007bff;
}

@media (max-width:768px){
    .company-name h1 {
        font-size: 20px;
    }
}