body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column; /* Keeps the footer at the bottom */
    overflow-x: hidden;
}

/* Main content area */
.container {
    flex: 1; /* Allows the content to expand and fill the remaining space */
    max-width: 80%;
    margin: 3px auto;
    padding: 20px;
    background-color: #ffffff;
/*    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
*/    animation: fadeInContent 1s ease-in-out forwards;
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    width: 100%;
    bottom: 0;
}

/* General image responsiveness */
img {
    max-width: 100%; /* Ensures the image never exceeds the width of its container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes bottom space that may occur due to inline image elements */
    object-fit: cover; /* Ensures the image covers its container properly without stretching */
}

/* Carousel Image Styling */
.carousel-item img {
    width: 100%; /* Ensures the image covers the full width of its container */
    height: auto; /* Keeps the aspect ratio */
    max-height: 60vh; /* Limits the image height to 60% of the viewport height */
    object-fit: cover; /* Ensures the image fits the container without distortion */
}

/* Project Image Styling */
.project-item img {
    width: 100%; /* Ensures the image fills the container's width */
    height: auto; /* Maintains aspect ratio */
    max-height: 400px; /* Limits the height of project images */
    object-fit: cover; /* Ensures the image covers its container without distortion */
    border-radius: 8px; /* Adds rounded corners */
    margin-bottom: 15px;
    transition: transform 0.3s ease; /* Adds a smooth hover transition */
}

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 600px) {
    .carousel-item img {
        max-height: 40vh; /* Reduces the image height for smaller screens */
    }

    .project-item img {
        max-height: 300px; /* Smaller image height for project images on mobile */
    }

    /* Further reduce the margin and padding for mobile devices */
    .container {
        padding: 10px;
    }
}


/* Service List Styling */
ul.centered-list {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    text-align: center;
}

ul.centered-list li {
    display: block; /* Make each list item take up the full width */
    margin: 10px 0;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fafafa;
    transition: background-color 0.3s, transform 0.3s;
}

ul.centered-list li:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.details {
    display: none; /* Hidden by default */
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

ul.centered-list li.active .details {
    display: block; /* Show details when the parent <li> is active */
}

.details p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

/* Other Styles */
.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    opacity: 0;
    animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.intro-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: black;
    opacity: 1;
    transition: opacity 3s ease-out, transform 3s ease-out;
}

.intro-video.hidden {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
    display: none;
}

.center-icon.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    display: none;
}

/* Content Styling */
h1, h2 {
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    font-family: 'Helvetica', sans-serif;
    animation: fadeInHeaders 1s ease-in-out;
}

@keyframes fadeInHeaders {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.package {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin: 15px 0;
    background-color: #fafafa;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.package:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.package p {
    margin: 5px 0;
    text-align: center;
    color: #555;
    font-size: 16px;
    animation: fadeInText 1s ease-in-out;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    animation: fadeInProjects 1s ease-in-out forwards;
}

@keyframes fadeInProjects {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .projects {
        grid-template-columns: 1fr;
    }

    .carousel-item img {
        max-height: 50vh; /* Ensure the image doesn’t take up too much vertical space on smaller screens */
    }
}

/* Contact Form Styling */
.contact-form {
    background-color: #f9f9f9; /* Light background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 600px; /* Limit the form width */
    margin: 0 auto; /* Center the form */
    animation: fadeInContent 1.2s ease-in-out;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; /* Clean white background */
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #007bff; /* Highlight color for focused fields */
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2); /* Slight shadow to indicate focus */
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Allows the textarea to be resized vertically */
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff; /* Primary blue color for the button */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
}

/* Media Query for Small Screens */
@media screen and (max-width: 600px) {
    .contact-form {
        padding: 15px; /* Slightly smaller padding for mobile */
        box-shadow: none; /* Remove shadow for mobile for a flat look */
    }

    .contact-form button {
        font-size: 16px; /* Smaller button font size for mobile */
    }
}



 .event {
      max-width: 800px;
      margin: 40px auto;
      background: #ffffff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
/*      border-left: 8px solid #pu;
*/    }

    .event h2 {
      font-size: 28px;
      color: #00796b;
      margin-bottom: 10px;
    }

    .event p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .event strong {
      color: #333;
    }

    .checklist {
      list-style: none;
      padding-left: 0;
      margin: 15px 0 20px 0;
    }

    .checklist li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      font-size: 16px;
    }

    .checklist li::before {
      content: "✅";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 16px;
      color: #00c853;
    }

    .event a.button {
      display: inline-block;
      background-color: #2e7d32;
      color: #ffffff;
      padding: 14px 24px;
      text-decoration: none;
      font-size: 16px;
      border-radius: 6px;
      font-weight: bold;
      margin-top: 10px;
      transition: background-color 0.3s ease;
    }

    .event a.button:hover {
      background-color: #43a047;
    }

    .event img {
      margin-top: 25px;
      max-width: 100%;
      border-radius: 8px;
    }

    .event .hashtags {
      font-size: 13px;
      color: #888;
      margin-top: 15px;
    }

    @media screen and (max-width: 600px) {
      .event {
        padding: 20px;
      }

      .event h2 {
        font-size: 24px;
      }