/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f0f0f0; /* Light background */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed; /* Keep it fixed at the top */
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.8); /* Darker background for better visibility */
    z-index: 1000; /* Make sure it stays on top */
    backdrop-filter: blur(5px); /* Optional blur effect */
    transition: top 0.3s; /* Smooth transition */
}

.header.visible {
    top: 0; /* Show header */
}

.header.hidden {
    top: -100px; /* Hide header */
}

.logo {
    width: 180px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f00;
}
.header.scrolled {
    background: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    color: white;
    margin-top: 68px; /* Match header height */
}

.background-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.background-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.background-slide.active {
    opacity: 1;
}

.content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #f00;
}
 /* Gallery Section Styles */
 .gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: #7f8c8d;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.caption-title {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.caption-description {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
}

/* About Us Section */
.about-section {
    padding: 5rem 2rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.8rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #3b82f6;
}

.location-badge {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.location-badge li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 0.5rem;
}

.location-badge li::before {
    content: "•";
    color: #3b82f6;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.company-name {
    font-size: 2rem;
    color: #1e293b;
    margin: 1.5rem 0;
    font-weight: 700;
}

.about-text {
    color: #475569;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.read-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: blue;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.read-more:hover {
    background-color: red;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

/* Services Section */
.services {
    padding: 40px 20px;
    text-align: center;
    background-color: white; /* White background for the section */
}

.services h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
    gap: 20px; /* Space between cards */
}

.service-card {
    background-color: #fff;
    border: 1px solid #ccc; /* Light border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 300px; /* Fixed width for cards */
    overflow: hidden; /* Prevents overflow of content */
    transition: transform 0.3s; /* Smooth hover effect */
}

.service-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.service-card img {
    width: 100%; /* Full width image */
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Cover image to fit */
}

.service-card h3 {
    font-size: 24px;
    margin: 10px 0;
}

.service-card p {
    font-size: 14px;
    padding: 0 15px;
}

.view-details {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #007bff; /* Primary button color */
    color: white;
    text-decoration: none;
    border-radius: 5px; /* Rounded corners for buttons */
}

.view-details:hover {
    background-color: #f00; /* Darker blue on hover */
}

/* FAQs Section */
.faq {
    padding: 40px 20px;
    background-color: white; /* White background for the section */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 800px; /* Max width for the section */
    margin: auto; /* Center the section */
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center; /* Center the heading */
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #007bff; /* Blue border */
    border-radius: 5px; /* Rounded corners */
    overflow: hidden; /* Prevent content overflow */
}

.question {
    background-color: #007bff; /* Blue background for questions */
    color: white; /* White text color */
    padding: 15px; /* Padding for question */
    font-weight: bold; /* Bold text for question */
    cursor: pointer; /* Pointer cursor for clickable area */
}

.answer {
    padding: 15px; /* Padding for answer */
    background-color: #f7f7f7; /* Light gray background for answers */
    display: none; /* Initially hide answers */
}

/* Sustainability Section */
.sustainability {
    background-color: #e0f7fa; /* Light green/blue background */
    border-radius: 10px; /* Rounded corners */
    padding: 40px 20px; /* Padding for the section */
    max-width: 800px; /* Max width */
    margin: 20px auto; /* Center the section */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center the text */
}

.sustainability h2 {
    font-size: 28px; /* Font size for heading */
    margin-bottom: 20px; /* Space below the heading */
    color: #007bff; /* Blue color for the heading */
}

.sustainability p {
    font-size: 16px; /* Font size for paragraph */
    margin-bottom: 30px; /* Space below the paragraph */
    color: #333; /* Dark color for text */
}

.learn-more {
    display: inline-block; /* Block for padding */
    padding: 10px 20px; /* Padding for button */
    background-color: #007bff; /* Blue background for button */
    color: white; /* White text color */
    text-decoration: none; /* No underline */
    border-radius: 5px; /* Rounded corners for button */
    transition: background-color 0.3s; /* Transition for hover effect */
}

.learn-more:hover {
    background-color: #f00; /* Darker blue on hover */
}

/* Contact Section */
.contact {
    background-color: #ffffff; /* White background for the section */
    border-radius: 10px; /* Rounded corners */
    padding: 40px 20px; /* Padding for the section */
    max-width: 600px; /* Max width */
    margin: 40px auto; /* Center the section */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center the text */
}

.contact h2 {
    font-size: 28px; /* Font size for heading */
    margin-bottom: 15px; /* Space below the heading */
    color: #007bff; /* Blue color for the heading */
}

.contact p {
    font-size: 16px; /* Font size for paragraph */
    margin: 10px 0; /* Space above and below paragraphs */
    color: #333; /* Dark color for text */
}

.contact-info {
    line-height: 1.6; /* Line height for better readability */
}

.contact-info a {
    color: #007bff; /* Blue color for links */
    text-decoration: none; /* No underline */
}

.contact-info a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Footer */
 /* ========== LUXURY FOOTER ========== */
 .footer {
    background: rgb(49, 46, 46);
    color: white;
    padding: 4rem 6% 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--sky-blue);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: var(--gold-accent);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-media {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-media a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }

    .service-cards {
        flex-direction: column;
    }
}