/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Atma:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero image specific styles */
.hero-image {
    text-align: center; /* Center the content, including the image */
    width: 100%;
    max-height: 500px; /* Adjust max height for larger screens */
    object-fit: contain; /* Ensure the entire image is visible without cropping */
}

/* Feature images */
.feature-img {
    width: 80%;
    max-width: 400px; /* Prevent the image from becoming too large */
    margin: 10px auto;
    display: block;
    object-fit: contain; /* Maintains aspect ratio while fitting within bounds */
}

/* About section image */
.about-img {
    width: 90%;
    max-width: 500px; /* Keep about section images balanced */
    margin: 20px auto;
    object-fit: cover;
    display: block; /* Ensures proper alignment */
    border-radius: 15px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
}

/* Award images */
.award-list {
    display: flex;
    justify-content: center; /* Centers the images horizontally */
    align-items: center; /* Centers the images vertically if needed */
    flex-wrap: wrap; /* Allows wrapping to the next line if there are many images */
    gap: 20px; /* Adds space between the images */
    margin: 0 auto; /* Centers the whole list */
    padding: 10px;
}
.award-img {
    width: 40%;
    max-width: 500px;
    height: auto;
    margin: 10px;
    display: inline-block;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center; /* Vertically aligns the logo within the header */
    justify-content: flex-start; /* Aligns the logo to the left */
    padding: 5px 10px; /* Optional: Adds spacing around the logo */
}

.logo-img {
    max-width: 80px; /* Limits the maximum width of the logo */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Ensures proper alignment */
    border-radius: 15px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
}



.hero-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%; /* Ensures the carousel is responsive */
    height: auto; /* Remove fixed height to accommodate captions */
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth slide effect */
    width: 100%;
}

.carousel-item {
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column; /* Ensures caption is below the image */
    align-items: center; /* Centers content horizontally */
}

.carousel-image {
    width: 100%;
    height: auto; /* Allow image to scale naturally */
    object-fit: contain; /* Ensure the entire image is visible without cropping */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adds hover effect smoothness */
}

.carousel-image:hover {
    transform: scale(1.02); /* Slightly enlarges the image on hover */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    z-index: 1000;
    font-size: 1.5em;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-caption {
    font-family: 'Roboto', sans-serif; /* Use Roboto for captions */
    margin-top: 20px; /* Space between the image and the caption */
    font-size: 1.2em;
    color: #4A4A4A; /* Subtle gray */
    text-align: center;
    padding: 0 20px; /* Add padding for better readability */
    max-width: 80%; /* Restrict caption width */
}

/* Modal Background */
.language-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    overflow: auto; /* Enables scrolling for content */
}

/* Modal Content */
.language-modal-content {
    background-color: #fff;
    margin: 10% auto; /* Centers the modal vertically */
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 80%; /* Ensure the modal doesn't exceed the screen height */
    overflow-y: auto; /* Enable vertical scrolling within the modal content */
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Language List */
.language-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    max-height: 60vh; /* Restrict height for scrollable list */
    overflow-y: auto; /* Enable scrolling for the list */
}

.language-list li {
    margin: 10px 0;
}

.language-list button {
    background-color: #8E9F90; /* Custom app green-gray */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.language-list button:hover {
    background-color: #6D7F70; /* Darker green-gray */
}

/* Language Toggle Button */
.language-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8E9F90;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    z-index: 1001;
}

.language-toggle-btn:hover {
    background-color: #6D7F70;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #4A4A4A; /* Gray color */
    background-color: #F4F4F4; /* Light background */
    font-size: 18px; /* Increase base text size */
    line-height: 1.6; /* Improve readability */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.site-header {
    display: flex;
    align-items: center; /* Ensures everything is vertically aligned */
    justify-content: space-between; /* Spreads the logo and navigation evenly */
    padding: 20px 30px; /* Adds spacing inside the header */
    background-color: #ffffff; /* Optional: Adds a background color */
    border-bottom: 1px solid #e0e0e0; /* Optional: Adds a subtle border at the bottom */
}

/* Desktop Navigation */
.site-header nav ul {
    display: flex; /* Flex layout for desktop */
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile Navigation */
.nav-toggle {
    display: none; /* Hide toggle button on desktop */
    font-size: 2em;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-collapsible {
    visibility: hidden;
    background-color: #ffffff; 
    position: absolute; 
    top: 120px;
    right: 0;
    width: 100%; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    z-index: 1000;
    transform: translateY(-100%); /* Move off-screen vertically */
    transition: transform 0.3s ease-in-out; /* Smooth slide-in/out */
}

.nav-collapsible ul {
    width: 100%;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; /* Center vertically */ 
    padding: 20px 0; /* Adds top and bottom padding */
}

.nav-collapsible ul li {
    text-align: center;
    width: 100%; 
    opacity: 0;
    transform: translateY(-10px); /* Start slightly above */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-collapsible ul li a {
    font-weight: bold;
    font-family: 'Chewy', cursive;
    font-size: 1.2em;
    color: #333;
    text-decoration: none;
}

/* Show menu when active */
.nav-collapsible.show {
    visibility: visible;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    transform: translateY(0); /* Slide into view */
}
/* Add animation when nav is shown */
.nav-collapsible.show ul li {
    opacity: 1;
    transform: translateY(0); /* Reset position */
}

/* Add slight delay for staggered animation effect */
.nav-collapsible.show ul li:nth-child(1) {
    transition-delay: 0.1s;
}
.nav-collapsible.show ul li:nth-child(2) {
    transition-delay: 0.2s;
}
.nav-collapsible.show ul li:nth-child(3) {
    transition-delay: 0.3s;
}
.nav-collapsible.show ul li:nth-child(4) {
    transition-delay: 0.4s;
}


.site-header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 50px; /* Adds space between navigation items */
}

.site-header nav ul li a {
    text-decoration: none;
    color: #333; /* Sets the text color */
    font-weight: bold;
    font-size: 28px; /* Increase navigation text size */
    font-family: 'Chewy', cursive; /* Chewy font for section titles */
}


.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #C1CEC6; /* Light green-gray */
    color: #FFFFFF; /* White text */
}

.hero h1 {
    font-size: 4em; /* Increase title font size */
    margin-bottom: 10px;
    font-family: 'Chewy', cursive; /* Chewy font for hero title */
}

.hero p {
    font-size: 1.5em; /* Increase subtitle font size */
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #8E9F90; /* Custom app green-gray */
    color: white;
    padding: 20px 40px; /* Adjust padding (top-bottom, left-right) */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-size: 1.2em; /* Adjust font size for better readability */
    display: inline-block; /* Keeps the button inline while respecting dimensions */
    margin-top: 20px; /* Optional: Adds space above the button */
}

.btn-primary:hover {
    background-color: #6D7F70; /* Darker green-gray */
}

.features, .about, .contact {
    padding: 80px 20px; /* Increase section padding */
    background-color: #FFFFFF; /* White background */
    margin-bottom: 30px; /* Increase section spacing */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.features h2, .about h2, .contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 3em; /* Increase section title font size */
    color: #8E9F90; /* Custom app green-gray */
    font-family: 'Chewy', cursive; /* Chewy font for section titles */
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature {
    flex: 1 1 45%;
    min-width: 300px;
    margin: 30px;
    text-align: center;
}

.feature h3 {
    font-size: 2em; /* Increase feature title font size */
    color: #8E9F90; /* Custom app green-gray */
    margin-bottom: 15px;
    font-family: 'Chewy', cursive; /* Chewy font for feature titles */
}

.feature p {
    font-size: 1.2em; /* Increase feature description font size */
    color: #4A4A4A; /* Gray text */
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact form input, .contact form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px; /* Increase input padding */
    border: 1px solid #D3D3D3; /* Light gray */
    border-radius: 5px;
    font-size: 1.2em; /* Increase input font size */
}

.contact form button {
    background-color: #8E9F90; /* Custom app green-gray */
    color: white;
    padding: 15px 30px; /* Increase button padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em; /* Increase button text size */
}

.contact form button:hover {
    background-color: #6D7F70; /* Darker green-gray */
}

.embedded-form-container {
    max-width: 100%; /* Limit the form's width */
    margin: 0 auto; /* Center the form on the page */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better aesthetics */
    border-radius: 10px; /* Optional: Add rounded corners */
    background-color: #fff; /* Optional: Background for better contrast */
}

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

.site-footer ul li {
    display: inline;
    margin: 0 15px;
}

.site-footer ul li a {
    text-decoration: none;
    color: #4A4A4A; /* Gray text */
    font-family: 'Chewy', cursive; /* Chewy font for footer links */
    font-size: 1.2em; /* Increase footer link size */
}

.site-footer ul li a:hover {
    color: #8E9F90; /* Custom app green-gray */
}

@media (max-width: 768px) {
    /*Use a collapsible or stacked layout for the navigation bar:*/
    .nav-toggle {
        display: block; /* Show toggle on mobile */
    }

    .nav-collapsible {
        visibility: hidden; /* Hide collapsible menu by default */
    }

    .site-header #desktop-nav ul {
        display: none; /* Hide desktop nav on mobile */
    }


    /* Adjust logo size for smaller screens */
    .logo-img {
        max-width: 80px;
    }

    .carousel-item {
        flex-direction: column; /* Stack content vertically */
        padding: 20px;
    }

    .carousel-caption {
        font-size: 1em; /* Adjust caption font size for smaller screens */
        padding: 10px; /* Ensure captions have enough padding */
        max-width: 100%; /* Remove width restriction */
    }

    .carousel-image {
        width: 100%; /* Scale images to fit container */
        max-height: 300px; /* Ensure images don't get too tall */
    }

    .hero h1 {
        font-size: 2.5em; /* Reduce hero title size */
    }

    .hero p {
        font-size: 1.2em; /* Adjust description text */
    }

    .btn-primary {
        font-size: 1em; /* Adjust button text size */
        padding: 15px 30px; /* Ensure buttons are touch-friendly */
    }

    .site-footer ul {
        text-align: center; /* Center-align footer links */
        padding: 10px;
    }

    .site-footer ul li {
        display: block; /* Stack footer links vertically */
        margin: 10px 0;
    }

    .site-footer ul li a {
        font-size: 1em; /* Adjust font size for smaller screens */
    }

    .language-modal-content {
        width: 90%; /* Fit to smaller screens */
        max-height: 70%; /* Limit height for smaller screens */
        overflow-y: auto; /* Ensure content scrolls */
    }

    .language-list {
        max-height: 60vh; /* Limit height for list on smaller screens */
        overflow-y: auto; /* Enable scrolling */
    }


    .language-list button {
        font-size: 1em; /* Adjust button size for better usability */
        padding: 10px;
    }
    .embedded-form-container {
    max-width: 100%; /* Limit the form's width */
    margin: 0 auto; /* Center the form on the page */
    padding: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better aesthetics */
    border-radius: 5px; /* Optional: Add rounded corners */
    background-color: #fff; /* Optional: Background for better contrast */
}
}


.btn-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;   /* 🔑 removes underline */
}

a .btn-instagram {
  text-decoration: none;   /* extra safety */
}

.btn-instagram svg {
  fill: white;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq details {
  margin-bottom: 16px;            /* spacing between questions */
  border: 1px solid #e0e0e0;      /* subtle border */
  border-radius: 8px;
  padding: 12px 16px;
  background: #fafafa;            /* light background */
  transition: background 0.3s ease;
}

.faq details[open] {
  background: #fff;               /* highlight when opened */
  border-color: #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq summary {
  font-weight: 600;               /* stronger question */
  font-size: 1rem;
  cursor: pointer;
  list-style: none;               /* remove default arrow */
  position: relative;
  padding-right: 24px;
}

.faq summary::after {
  content: "➕";                   /* custom expand icon */
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq details[open] summary::after {
  content: "➖";                   /* switch icon when open */
}

.faq details div {
  margin-top: 10px;
  line-height: 1.6;                /* better readability */
  color: #444;
  font-size: 0.95rem;
}

/* Center the social section */
.contact-social {
  display: flex;
  justify-content: center;   /* horizontally center */
  padding: 24px 0;           /* space above & below */
}

/* Social button styling */
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f56040; /* Instagram-ish accent */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;     /* remove underline */
  transition: background 0.3s ease;
}

.social-btn:hover {
  background-color: #e04830;
}
.contact-social a {
  text-decoration: none !important; /* overrides underline */
}

.contact-social a:visited {
  text-decoration: none !important;
}

.contact-social a:hover {
  text-decoration: none !important; /* keep hover clean */
}