/* General Body Styles */ 
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: #000;
    width: 100%;
}

h1, h2, h3 {
    font-weight: bold;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

/* Header */

.hero {
    height: 90vh;
    color: white;
    position: relative;
    background: #000; /* Solid black color */
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.logo {
    height: 60px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffd700;
}

/* Header CTA Button */
.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #ffd700; /* Gold background for button over image */
    color: black; /* Black text for contrast */
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-right: 40px;
    
}

.cta-button:hover {
    background: #ffd90074; 
    color:white ;
    transform: scale(1.1);
}

/* Hero Overlay CTA Button */
.hero-overlay .cta-button {
    font-size: 1.1rem;
    background: transparent; /* Black background for header button */
    color: #fff; /* White text */
    font-weight: bold;
    border: solid;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-right: 0px;
}

.hero-overlay .cta-button:hover {
    background: #ffc700; /* Slightly brighter gold on hover */
    transform: scale(1.1);
}


/* Hero Section */
.hero-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
 
    .hero-banner {


        opacity: 0;
        transform: scale(1.1); /* Start slightly zoomed in */
        animation: fadeZoom 1.5s ease-out forwards;
        animation-delay: 0.2s; /* Animates just before the text starts */
    }
    
    @keyframes fadeZoom {
        0% {
            opacity: 0;
            transform: scale(1.1); /* Slight zoom */
        }
        100% {
            opacity: 1;
            transform: scale(1); /* Back to original size */
        }
    }
    

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title,
.hero-subtitle,
.cta-button {
    opacity: 0;
    transform: translateY(50px); /* Start below the final position */
    animation: popup 1s ease-out forwards;
}

.hero-title {
    animation-delay: 0.5s; /* Title animates first */
}

.hero-subtitle {
    animation-delay: 1s; /* Subtitle animates next */
}

.cta-button {
    animation-delay: 1.5s; /* Button animates last */
}

@keyframes popup {
    0% {
        opacity: 0;
        transform: translateY(50px); /* Element starts lower */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Element ends at its original position */
    }

    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo {
        height: 50px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}
/* About Section */
/* About Section */
#about {
    padding: 4rem 2rem;
    background-color: #111;
    color: #fff;
    opacity: 0;
    transform: translateY(50px); /* Start below */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#about.active {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.about-content {
    flex: 1;
    text-align: left;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-content.active {
    opacity: 1;
    transform: translateX(0);
}

.about-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.about-img.active {
    opacity: 1;
    transform: translateX(0);
}

.why-choose-us {
    padding: 4rem 1rem; /* Reduced horizontal padding for smaller screens */
    background: linear-gradient(135deg, #000, #111);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem; /* Adjust gap for better responsiveness */
    max-width: 100%; /* Ensure no overflow */
    margin: 0 auto; /* Center the content */
    overflow-x: hidden; /* Avoid accidental overflow */

}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffd700;
    margin: 0.5rem auto;
}

.why-choose-us ul {
    list-style-type: none;
    padding: 0;
}

.why-choose-us ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.why-choose-us ul li::before {
    content: '\2022'; /* Unicode Bullet */
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.why-choose-us ul li:hover {
    color: #ffd700;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-img img {
        width: 100%;
    }

    #services li {
        flex: 1 1 calc(50% - 1rem);
    }

}
@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 1rem;
    }
    

    .content {
        flex-direction: column; /* Stack content vertically */
        gap: 1rem;
    }

    .column {
        max-width: 100%; /* Full width for smaller screens */
    }
}
@media (max-width: 720px) {
    .emblem {
        display: block;
        margin-left: 0; /* No margin on left */
        margin-right: 0; /* Reset the right margin */
        width: 40px;
        height: auto;
        margin: 0 auto; /* Center the emblem horizontally */
    }

    .why-choose-us .content {
        flex-direction: column; /* Stacks content vertically on small screens */
        align-items: center; /* Aligns content to the center */
    }

    .why-choose-us .column {
        text-align: left; /* Aligns text to the left */
        margin-bottom: 20px; /* Add some space between columns */
    }

    /* Adjust bullet point alignment */
    .why-choose-us .reasons {
        padding-left: 1.5rem; /* Adjust padding for better alignment */
        text-align: left; /* Ensure text aligns to the left */
        list-style-position: inside; /* Ensure bullets are inside the list items */
    }
}


@media (max-width: 480px) {
    .about-container, #services li {
        flex: 1 1 100%;
    }
}/* Services Section */
#services {
    padding: 4rem 2rem;
    color: #fff;
    background-color: #111;
    text-align: center;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.service-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* Services Section */
#services {
    padding: 4rem 2rem;
    color: #fff;
    background-color: #111;
    text-align: center;
  }
  
  #services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
  }
  
  .service-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .service-card {
    background-color: #222;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: calc(5% - 2rem); /* Each card takes up 25% of the row minus gaps */
    min-width: 250px; /* Minimum width for responsiveness */
    opacity: 0;
    transform: translateY(50px); /* Start slightly lower */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .service-card.active {
    opacity: 1;
    transform: translateY(0); /* Slide to position */
  }
  
  .service-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  
  .service-card p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .service-card {
      width: calc(50% - 2rem); /* Two cards per row on medium screens */
    }
  }
  
  @media (max-width: 768px) {
    .service-card {
      width: calc(100% - 2rem); /* Full width on smaller screens */
    }
  }
  

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 2rem); /* Two cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .service-card {
        width: calc(100% - 2rem); /*  <p><strong>Packages:</strong> £150 per hour (minimum 3 hours) | Custom quotes available.</p> */
    }
}.packages {
    margin-top: 2rem;
    font-size: 1.2rem;
}

.packages .price {
    color: #ffd700;
    font-weight: bold;
}
/* General Body Styles */ 
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000;
}/* Hide navbar on mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide the navbar on mobile */
    }
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 2rem;
    background-color: #111;
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffd700;
    margin: 0.5rem auto;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.why-choose-us {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #000, #111);
    color: #fff;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ffd700;
    margin: 1rem auto 0;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.column {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
    text-align: left;
}

.emblem {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    animation: popIn 1s ease-in-out;
    margin-left: 100px;
}

@media (max-width: 480px) {
    /* Adjust emblem position for very small screens */
    .emblem {
        max-width: 100px; /* Further reduce emblem size */
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }

    .reasons li {
        font-size: 0.9rem; /* Make the text smaller */
        line-height: 1.4; /* Adjust line-height for better mobile readability */
    }
}

.reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reasons li {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    background: #222;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reasons li i {
    color: #ffd700;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.reasons li:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
    background: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .column {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .reasons li {
        justify-content: center;
    }
}

 /* Fleet Section */
#fleet {
    padding: 4rem 2rem;
    background-color: #111;
    color: #fff;
    text-align: center;
  }
  
  #fleet .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
  }
  
  #fleet .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ffd700;
    margin: 1rem auto 0;
  }
  
  .fleet-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  
  .fleet-gallery {
    max-width: 600px;
  }
  
  .fleet-slideshow {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust based on your desired width */
    height: 600px; /* Ensure consistent height for the container */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .fleet-image {
    width: 100%;
    display: none;
    border-radius: 10px;
  }
  
  .fleet-image.active {
    display: block;
  }
  
  .controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .controls button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
  }
  
  .controls button:hover {
    background-color: #ffd700;
  }
  
  .fleet-description {
    max-width: 600px;
    margin-top: 2rem;
    text-align: left;
  }
  
  .fleet-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-transform: uppercase;
  }
  
  .fleet-description p {
    font-size: 1rem;
    line-height: 1.8;
  }
 /* Fleet Slideshow Container */
.fleet-slideshow {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust based on your desired width */
    height: 600px; /* Ensure consistent height for the container */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  }
  
  /* Fleet Slideshow Images */
  .fleet-slideshow img {
    width: 600px; /* Make the images take the full width */
    height: 600px; /* Ensure images fill the entire container */
    object-fit: cover; /* This ensures the images maintain their aspect ratio and cover the container */
    display: none; /* Hide images by default */
    border-radius: 10px; /* Optional: adds rounded corners to the images */
  }
  
  /* Show the active image */
  .fleet-slideshow img.active {
    display: block; /* Only show the active image */
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .fleet-container {
        flex-direction: column;
        width: 200px;
    }

    .fleet-gallery {
        margin-bottom: 20px;
        width: 350px; /* Add space between gallery and description */
    }

    /* Adjust height for mobile */
    .fleet-slideshow {
        height: 370px; /* Lower the height on mobile */
        
    }

    .fleet-slideshow img {
        object-fit: cover; /* Make sure the images fit without distortion */
    }

    .fleet-description {
        text-align: center;
    }

    .controls button {
        padding: 0.8rem;
        font-size: 1rem;
    }
}
/* Contact Section */
#contact {
    padding: 4rem 2rem;
    background-color: #111;
    color: #fff;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
}

#contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #ffd700;
    margin: 1rem auto 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.contact-item:hover img {
    transform: scale(1.1);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffd700; /* Gold background */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-item img {
    width: 50%;
    height: 50%;
    filter: invert(0); /* Ensures white icons appear naturally */
}

.contact-item:hover {
    background-color: #fff;
    transform: scale(1.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: row;
        justify-content: space-around;
    }
}footer {
    background-color: #111;
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #ffd700;
}

footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer .social-media {
    margin: 1rem 0;
}

footer .credits {
    margin-top: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .fleet-container {
        flex-direction: column;
    }

    .fleet-gallery {
        margin-bottom: 20px; /* Add space between gallery and description */
    }

}
@media (max-width: 768px) {
    .fleet-gallery {
      flex-direction: column;
    }
  
    .fleet-slideshow {
      width: 100%;
    }
  
    .fleet-description {
      margin-top: 20px;
    }
  
    .controls {
      bottom: 10%;
    }
}