/* General body and HTML styling */
html {
    scroll-behavior: smooth; /* Smooth scrolling */
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333; /* Dark gray text */
    overflow-x: hidden; /* Prevent horizontal scrollbar from marquee duplication */
    background-color: #00bcd4; /* Light gray background for body */
}

/* Sticky Header */
header {
    background-color: #ffdab9; /* White header background */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4; /* Cyan color for logo */
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allow navigation links to wrap on smaller screens */
    justify-content: center; /* Center navigation items when wrapped */
}

nav ul li {
    margin-left: 20px;
    margin-bottom: 5px; /* Add some space when links wrap */
}

nav ul li a {
    text-decoration: none;
    color: #333; /* Dark gray link color */
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active { /* Style for active link */
    color: #ff9800; /* Orange color on hover/active */
}

/* Main Section Styling */
section {
    padding: 60px 20px;
    text-align: center;
}

#hero {
    background: url('placeholder-hero-background.jpg') no-repeat center center/cover; /* Placeholder background image for hero */
    color: white; /* White text on hero background */
    padding: 100px 20px;
    position: relative; /* Needed for overlay */
}

#hero::before { /* Overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

#hero h1, #hero p {
    position: relative; /* Bring text above overlay */
    z-index: 2;
}


#hero h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

#hero p {
    font-size: 1.2rem;
}

/* Styling for event category sections and separation */
#event-categories .event-category {
     background-color: #f8f8f8; /* Light gray background for all event sections */
     padding: 40px 20px; /* Add padding within each event category */
     margin-bottom: 30px; /* Add space below each event category */
     border-radius: 8px; /* Optional: add rounded corners */
     box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Optional: subtle shadow */
}

/* Remove bottom margin from the last event category */
#event-categories .event-category:last-child {
    margin-bottom: 0;
}


/* Styling for the paragraph above galleries */
.event-category p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}
.event-category h3 {
    font-size: 1.5rem;
    color: #ff9800;
}

#clients {
    background-color: #ffffff; /* White background */
    overflow: hidden; /* Hide overflow for marquee */
}

#contact {
    background-color: #f8f8f8; /* Light gray background */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 5px 0;
    }

    section {
        padding: 40px 10px;
    }

    #hero {
        padding: 60px 10px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }
}

/* Image Gallery Styling */
.gallery-container {
    position: relative; /* Needed for positioning arrows */
    margin: 20px auto;
    max-width: 100%; /* Ensure container doesn't exceed parent width */
}

.gallery {
    display: flex;
    overflow-x: auto; /* Keep auto for manual drag scroll */
    gap: 15px;
    padding: 1rem 0;
    scroll-behavior: smooth; /* Smooth manual scrolling */
    /* Hide scrollbars for different browsers */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
}

/* Hide scrollbar for Chrome, Safari, and Opera */
.gallery::-webkit-scrollbar {
    display: none;
}


.gallery-item {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 350px; /* Adjust as needed */
    height: 350px; /* Adjust as needed */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area without distortion */
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Gallery Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    transition: background-color 0.3s ease;
    font-size: 1.5rem;
    color: #333;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
}

.nav-arrow.prev {
    left: 10px;
}

.nav-arrow.next {
    right: 10px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-item {
        width: 200px;
        height: 150px;
    }
     .nav-arrow {
        font-size: 1.2rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 150px;
        height: 120px;
    }
     .nav-arrow {
        font-size: 1rem;
        padding: 6px;
    }
}

/* Clients Section Styling */
#clients .client-logos {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    justify-content: center;
    /* Use CSS animation for marquee */
    animation: marquee 20s linear infinite; /* Adjust duration as needed */
}

/* CSS Keyframes for Marquee */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Half the width because we duplicate in JS */
}


.client-logo {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    border-radius: 50%; /* Make it circular */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #00bcd4; /* Cyan border for logos */
}

.client-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the whole logo is visible */
}


/* Contact Section Styling */
#contact .contact-container {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 40px; /* Add space between columns */
    max-width: 900px; /* Limit container width */
    margin: 20px auto;
    text-align: left;
}

.contact-info, .contact-form {
    flex: 1; /* Equal width for columns */
    min-width: 280px; /* Minimum width before wrapping */
}

.contact-info h3, .contact-form h3 {
    margin-top: 0;
    color: #00bcd4; /* Cyan color for subheadings */
}

.contact-info p {
    margin-bottom: 10px;
    color: #555; /* Darker gray for contact info text */
}

#contact .social-links {
    margin-top: 20px; /* Adjust margin for social links within contact info */
    text-align: left; /* Align social links to the left */
}

#contact .social-links a {
    margin: 0 10px 0 0; /* Adjust margin for social icons */
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333; /* Dark gray label text */
}

.contact-form input[type="name"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

.contact-form input[type="text"] {
    height: 150px;
    resize: vertical; /* Allow vertical resizing */
}

.contact-form button {
    background-color: #ff9800; /* Orange button background */
    color: white; /* White text on orange button */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #f57c00; /* Darker orange on hover */
}

/* Basic Animation/Transitions */
a {
    transition: color 0.3s ease, transform 0.3s ease;
}

img {
    transition: transform 0.3s ease;
}

/* Footer Styling */
footer {
    background-color: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 40px 20px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Add gap between columns */
}

.footer-logo, .footer-nav, .footer-social {
    flex: 1; /* Equal width for columns */
    min-width: 200px; /* Minimum width before wrapping */
    margin-bottom: 20px; /* Add space below columns on small screens */
}

.footer-logo .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00bcd4; /* Cyan color for logo */
    text-decoration: none;
}

.footer-logo p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc; /* Light gray text */
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #fff; /* White link color */
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ff9800; /* Orange on hover */
}

.footer-social .social-links a {
    color: #fff; /* White social icon color */
    gap: 50px;
    size: 5rem;
}

.footer-social .social-links a:hover {
    color: #ff9800; /* Orange on hover */
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #555; /* Separator line */
    font-size: 0.9rem;
    color: #ccc; /* Light gray text */
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
    }

    .footer-logo, .footer-nav, .footer-social {
        text-align: center;
    }

     .footer-social .social-links {
        justify-content: center;
        display: flex; /* Center social icons */
        size: 2rem;
    }
}

/* Final Responsive Adjustments for Navigation */
@media (max-width: 1024px) {
    nav {
        padding: 0 2rem;
    }
    nav ul {
        justify-content: center; /* Center links on medium screens if they wrap */
    }
    nav ul li {
        margin-left: 15px; /* Slightly reduce margin */
        margin-right: 15px; /* Add right margin for better spacing when wrapped */
    }
    section {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
        flex-direction: column;
        align-items: center; /* Center logo and nav links vertically */
    }
    nav .logo {
        font-size: 1.2rem;
        margin-bottom: 10px; /* Add space below logo */
    }
    nav ul {
        margin-top: 10px;
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 5px 0; /* Adjust margin for stacked links */
    }

    section {
        padding: 40px 10px;
    }

    #hero {
        padding: 60px 10px;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }
    .gallery-item {
        width: 200px;
        height: 150px;
    }
     .nav-arrow {
        font-size: 1.2rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
     nav .logo {
        font-size: 1rem;
     }
    #hero h1 {
        font-size: 1.8rem;
    }
    #hero p {
        font-size: 0.9rem;
    }
    .gallery-item {
        width: 150px;
        height: 120px;
    }
    .client-logo {
        width: 60px;
        height: 60px;
    }
    .contact-form button {
        width: 100%;
    }
}

/* Contact Section Styling */
#contact .contact-container {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 40px; /* Add space between columns */
    max-width: 900px; /* Limit container width */
    margin: 20px auto;
    text-align: left;
}

/* Styling for the two main columns */
.contact-form-box { /* This is the "Send Us a Message" box */
    flex: 1; /* Equal width for columns */
    min-width: 280px; /* Minimum width before wrapping */
}

.contact-info-boxes { /* This container holds the two smaller boxes */
    flex: 1; /* Equal width for columns */
    min-width: 280px; /* Minimum width before wrapping */
    display: flex; /* Use flexbox for the inner two boxes */
    flex-direction: column; /* Stack the inner boxes vertically */
    gap: 20px; /* Add space between the inner boxes */
}

.contact-info-box, .contact-social-box { /* Styling for the individual smaller boxes */
     background-color: #fff; /* White background for the boxes */
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


.contact-info h3, .contact-form h3, .contact-info-boxes h3 {
    margin-top: 0;
    color: #00bcd4; /* Cyan color for subheadings */
}

.contact-info p {
    margin-bottom: 10px;
    color: #555; /* Darker gray for contact info text */
}

#contact .social-links {
    margin-top: 10px; /* Adjust margin for social links within contact info box */
    text-align: left; /* Align social links to the left */
}

#contact .social-links a {
    display: inline-block; /* Ensure icons are in a line */
    margin: 0 10px 0 0; /* Adjust margin for social icons */
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333; /* Dark gray label text */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

.contact-form textarea {
    height: 150px;
    resize: vertical; /* Allow vertical resizing */
}

.contact-form button {
    background-color: #ff9800; /* Orange button background */
    color: white; /* White text on orange button */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #f57c00; /* Darker orange on hover */
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    #contact .contact-container {
        flex-direction: column; /* Stack columns vertically */
        gap: 20px; /* Reduce gap when stacked */
    }

    .contact-form-box, .contact-info-boxes {
        min-width: auto; /* Remove minimum width constraint */
        width: 100%; /* Full width when stacked */
    }

     .contact-info-boxes {
        flex-direction: row; /* Arrange inner boxes horizontally on smaller screens */
        flex-wrap: wrap; /* Allow wrapping of inner boxes */
        gap: 20px; /* Keep gap between inner boxes */
        justify-content: center; /* Center inner boxes if they wrap */
     }

     .contact-info-box, .contact-social-box {
         flex: 1; /* Allow inner boxes to grow and shrink */
         min-width: 150px; /* Minimum width for inner boxes before stacking */
         text-align: center; /* Center text in inner boxes */
     }

     #contact .social-links {
        text-align: center; /* Center social links when stacked */
    }
    #contact .social-links a {
         margin: 0 5px; /* Adjust margin for centered social icons */
    }
}

/* Adjustments for very small screens */
@media (max-width: 480px) {
     .contact-info-boxes {
        flex-direction: column; /* Stack inner boxes vertically on very small screens */
        gap: 15px; /* Adjust gap */
     }
     .contact-info-box, .contact-social-box {
         min-width: auto; /* Remove min-width */
     }
}

/* Contact Section Styling */
#contact .contact-layout { /* Use a new class for the main container */
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    gap: 40px; /* Add space between columns */
    max-width: 900px; /* Limit container width */
    margin: 20px auto;
    text-align: left;
}

/* Styling for the three individual boxes */
.contact-form-box, .contact-info-box, .contact-social-box {
     background-color: #fff; /* White background for the boxes */
     padding: 30px; /* Increased padding for 'big separate' feel */
     border-radius: 8px;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* More pronounced shadow for separation */
     flex: 1; /* Allow boxes to grow */
     min-width: 280px; /* Minimum width before wrapping */
     margin-bottom: 0; /* Remove default bottom margin if any */
}

/* Arrange boxes in two columns */
.contact-form-box {
    /* This box will be in the first column */
    flex: 2; /* Give the form box more flex basis to be wider */
}

.contact-info-box {
    /* These two boxes will be in the second column */
    flex-basis: 100%; /* Force these two to stack in the second column */
    margin-bottom: 20px; /* Add space between stacked boxes */
}

.contact-social-box {
     flex-basis: 100%; /* Force these two to stack in the second column */
}

/* Create the second column using a wrapper */
.contact-info-social-column {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    flex: 1; /* Allow this column to take up remaining space */
    gap: 20px; /* Space between the stacked boxes */
     min-width: 280px; /* Ensure second column has a minimum width */
}


.contact-info-box h3, .contact-form-box h3, .contact-social-box h3 {
    margin-top: 0;
    color: #00bcd4; /* Cyan color for subheadings */
}

.contact-info-box p {
    margin-bottom: 10px;
    color: #555; /* Darker gray for contact info text */
}

.contact-social-box .social-links {
    margin-top: 10px; /* Adjust margin for social links within the box */
    text-align: left; /* Align social links to the left */
}

.contact-social-box .social-links a {
    display: inline-block; /* Ensure icons are in a line */
    margin: 0 10px 0 0; /* Adjust margin for social icons */
    color: #555;
}

.contact-form-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333; /* Dark gray label text */
}

.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px;
    box-sizing: border-box; /* Include padding in width */
}

.contact-form-box textarea {
    height: 150px;
    resize: vertical; /* Allow vertical resizing */
}

.contact-form-box button {
    background-color: #ff9800; /* Orange button background */
    color: white; /* White text on orange button */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form-box button:hover {
    background-color: #f57c00; /* Darker orange on hover */
}


/* Responsive Contact Section */
@media (max-width: 768px) {
    #contact .contact-layout {
        flex-direction: column; /* Stack columns vertically on smaller screens */
        gap: 20px; /* Reduce gap when stacked */
    }

    .contact-form-box, .contact-info-social-column {
        min-width: auto; /* Remove minimum width constraint */
        width: 100%; /* Full width when stacked */
    }

     .contact-info-social-column {
         gap: 20px; /* Adjust gap between stacked boxes */
     }


     .contact-info-box, .contact-social-box {
         padding: 20px; /* Adjust padding for smaller screens */
         text-align: center; /* Center text in inner boxes */
     }

    .contact-social-box .social-links {
        justify-content: center; /* Center social icons when stacked */
        display: flex; /* Use flexbox to center social icons */
        text-align: center; /* Center text in the social box */
    }
    .contact-social-box .social-links a {
         margin: 0 5px; /* Adjust margin for centered social icons */
    }

    .contact-form-box {
        padding: 20px; /* Adjust padding for the form box on smaller screens */
    }
}

/* Adjustments for very small screens */
@media (max-width: 480px) {
     .contact-info-boxes {
        flex-direction: column; /* Stack inner boxes vertically on very small screens */
        gap: 15px; /* Adjust gap */
     }
     .contact-info-box, .contact-social-box {
         min-width: auto; /* Remove min-width */
     }
      .contact-form-box button {
        width: 100%; /* Make the button full width */
    }
}

/* Infographics Section Styling */
#infographics {
    background-color: #ffffff; /* White background for the infographic section */
    padding: 80px 20px; /* Add more padding for visual separation */
}

#infographics h2 {
    color: #333; /* Dark gray heading color */
    margin-bottom: 40px; /* Space below the heading */
}

.infographic-container {
    display: flex;
    justify-content: space-around; /* Distribute items evenly */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    max-width: 900px; /* Limit container width */
    margin: 0 auto;
    gap: 30px; /* Add space between infographic items */
}

.infographic-item {
    flex: 1; /* Allow items to grow and shrink */
    min-width: 200px; /* Minimum width before wrapping */
    text-align: center; /* Center content within each item */
    padding: 20px;
    background-color: #f8f8f8; /* Light gray background for each item */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
}

.infographic-number {
    font-size: 3rem; /* Large font size for the number */
    font-weight: bold;
    color: #f8f8ff; /* Orange color for the number */
    margin-bottom: 10px; /* Space below the number */
}

.infographic-item p {
    font-size: 1.1rem;
    color: #555; /* Darker gray for the description */
    margin-top: 0;
}

/* Responsive adjustments for infographics */
@media (max-width: 768px) {
    .infographic-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items when stacked */
        gap: 20px; /* Adjust gap */
    }

    .infographic-item {
        width: 80%; /* Make items take up more width when stacked */
        min-width: auto; /* Remove minimum width constraint */
    }
}

@media (max-width: 480px) {
     .infographic-item {
        width: 95%; /* Make items take up even more width on very small screens */
     }
      .infographic-number {
         font-size: 2.5rem; /* Adjust font size */
     }
      .infographic-item p {
         font-size: 1rem; /* Adjust font size */
     }
}

/* Infographics Section Styling */
#infographics {
    background-color: #ffffff; /* White background for the infographic section */
    padding: 80px 20px; /* Add more padding for visual separation */
}

#infographics h2 {
    color: #333; /* Dark gray heading color */
    margin-bottom: 40px; /* Space below the heading */
}

.infographic-container {
    display: flex;
    justify-content: space-around; /* Distribute items evenly */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    max-width: 900px; /* Limit container width */
    margin: 0 auto;
    gap: 30px; /* Add space between infographic items */
}

.infographic-item {
    flex: 1; /* Allow items to grow and shrink */
    min-width: 200px; /* Minimum width before wrapping */
    text-align: center; /* Center content within each item */
    padding: 20px;
    background-color: #f8f8f8; /* Light gray background for each item */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
    display: flex; /* Use flexbox for internal layout */
    flex-direction: column; /* Stack visual and text vertically */
    align-items: center; /* Center content horizontally */
}

.infographic-visual {
    position: relative; /* Needed for absolute positioning of number */
    width: 120px; /* Set size for the visual container */
    height: 120px;
    margin-bottom: 15px; /* Space below the visual */
    display: flex;
    justify-content: center;
    align-items: center;
}

.infographic-circle {
    width: 100%; /* Make the circle fill the visual container */
    height: 100%;
    border-radius: 50%; /* Make it circular */
    border: 10px solid #eee; /* Light gray border for the background circle */
    box-sizing: border-box; /* Include border in the element's total width and height */
    /* The 'fill' will be added via JavaScript or another element */
}


.infographic-number {
    position: absolute; /* Position number inside the circle */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem; /* Adjust font size for fitting inside circle */
    font-weight: bold;
    color: #f8f8ff; /* Orange color for the number */
    z-index: 2; /* Ensure number is above the circle */
}

.infographic-item p {
    font-size: 1.1rem;
    color: #555; /* Darker gray for the description */
    margin-top: 0;
}

/* Responsive adjustments for infographics */
@media (max-width: 768px) {
    .infographic-container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items when stacked */
        gap: 20px; /* Adjust gap */
    }

    .infographic-item {
        width: 80%; /* Make items take up more width when stacked */
        min-width: auto; /* Remove minimum width constraint */
    }
    .infographic-visual {
        width: 100px; /* Adjust size for smaller screens */
        height: 100px;
    }
    .infographic-number {
        font-size: 1.8rem; /* Adjust font size */
    }
}

@media (max-width: 480px) {
     .infographic-item {
        width: 95%; /* Make items take up even more width on very small screens */
     }
      .infographic-visual {
         width: 80px; /* Adjust size for very small screens */
         height: 80px;
     }
      .infographic-number {
         font-size: 1.5rem; /* Adjust font size */
     }
      .infographic-item p {
         font-size: 1rem; /* Adjust font size */
     }
}

/* Add styles for circular fill animation */
.infographic-circle {
    width: 100%; /* Make the circle fill the visual container */
    height: 100%;
    border-radius: 50%; /* Make it circular */
    border: 10px solid #eee; /* Light gray border for the background circle */
    box-sizing: border-box; /* Include border in the element's total width and height */
    position: relative; /* Needed for pseudo-element positioning */
    overflow: hidden; /* Hide overflow from gradient */
    /* Use a custom property to control the conic gradient fill */
    --fill-percentage: 0%; /* Initial fill is 0% */
    background: conic-gradient(
        #ff9800 var(--fill-percentage), /* Orange fill */
        #eee var(--fill-percentage) /* Light gray for the rest */
    );
    transition: background 0.1s linear; /* Smooth transition for the fill */
}

/* Ensure the number is above the circle */
.infographic-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: #f8f8ff;
    z-index: 2;
}

/* Adjust responsiveness for visual container if necessary */
@media (max-width: 768px) {
     .infographic-visual {
        width: 100px; /* Adjust size for smaller screens */
        height: 100px;
    }
     .infographic-number {
        font-size: 1.8rem; /* Adjust font size */
    }
}

@media (max-width: 480px) {
      .infographic-visual {
         width: 80px; /* Adjust size for very small screens */
         height: 80px;
     }
      .infographic-number {
         font-size: 1.5rem; /* Adjust font size */
     }
}
.footer-container button {
    background-color: #ff9800; /* Orange button background */
    color: white; /* White text on orange button */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.footer-container button:hover {
    background-color: #f57c00; /* Darker orange on hover */
}