body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e8f5e9;
    color: #333;
}
html {
    scroll-behavior: smooth;
}

/* Language Toggle */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: var(--spacing-md);
}

.lang-label {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 5px;
}

.switch {
  position: relative;
  display: inline-block;
}

.checkbox {
  display: none;
}

.slider {
  width: 60px;
  height: 30px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 4px solid transparent;
  transition: .3s;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
  cursor: pointer;
}

.slider::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-30px);
  border-radius: 20px;
  transition: .3s;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25);
}

.checkbox:checked ~ .slider::before {
  transform: translateX(30px);
  box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.checkbox:checked ~ .slider {
  background-color: var(--primary);
}

.checkbox:active ~ .slider::before {
  transform: translate(0);
}

header {
    background-color: #a5d6a7;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.video-section {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.video-section h2 {
    color: #388e3c;
    margin-bottom: 20px;
}

.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.video-wrapper {
    flex: 1;
    max-width: 800px;
    margin: 0 15px;
}

.video-wrapper video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.video-nav {
    background: #a5d6a7;
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-nav:hover {
    background: #81c784;
}

.video-indicator {
    margin-top: 15px;
}



.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2.9rem;
}

header p {
    margin: 5px 0 0;
    color: #f1f8e9;
    font-size: 1.15rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    margin: 0 15px;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.desktop-nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #a5d6a7;
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    display: none;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style-type: none;
    padding: 50px 20px;
    margin: 0;
}

.mobile-nav li {
    margin: 20px 0;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #f1f8e9;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Original CSS */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.image-slider {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slider img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.image-slider img.active {
    opacity: 1;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.card h2 {
    margin-top: 0;
    color: #388e3c;
}

.card ul {
    padding: 0;
    list-style-type: none;
}

.card ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.card ul li::before {
    content: "✔";
    color: #388e3c;
    margin-right: 10px;
}

.image-container {
    text-align: center;
    margin: 2rem 0;
}


.image-container img {
    max-width: 50%;
    height: auto;
}
.image-container2 {
    text-align: center; /* This centers inline elements like <img> */
    margin: 2rem 0;
  }
  
.image-container2 img {
    max-width: 50%;
    height: auto;
    display: inline-block; /* Ensures it's treated like an inline element */
}
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; 
    width: 100%; 
    max-width: 300px; 
    margin: 0 auto; 
}


.contact-image {
  width: 50%;
  height: 50px; 
  object-fit: contain;
  border-radius: 5px; 
}
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #388e3c;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 17px;
    color: #383838;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-question:focus {
    outline: none;
}

.icon {
    font-size: 1.5rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    /* Example rotation for plus/minus effect */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 10px;
    font-size: 17px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.faq-answer p2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 10px;
    font-size: 17px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 5px;
}

/* Active state for expanded answers */
.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on your content */
    padding: 10px;
}

footer {
    background-color: #81c784;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 10px 0;
    font-size: 1.15rem;
}

footer p3 {
    margin: 10px 0;
    font-size: 1.15rem;
    color: black;
    font-weight: bolder;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social {
    margin: 10px 0;
}

.footer-social a {
    margin: 0 10px;
    color: #ffffff;
    text-decoration: none;
}

.footer-available {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-available img {
    width: 150px;
    border-radius: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    header h1 {
        font-size: 2rem;
    }
    .contact-image {
        width: 50%;
        height: 50px; 
        object-fit: contain;
        border-radius: 5px; 
      }
    .image-container2 img {
        max-width: 100%;
        height: auto;
        display: inline-block; /* Ensures it's treated like an inline element */
    }
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 10px;
    }

    .card {
        padding: 15px;
    }

    .footer-available img {
        width: 120px;
    }

    .footer-social a {
        font-size: 0.9rem;
    }

    .image-container img {
        max-width: 90%;
        height: auto;
    }

    /* Additional mobile responsiveness */
    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
    .image-container2 img {
        max-width: 100%;
        height: auto;
        display: inline-block; /* Ensures it's treated like an inline element */
    }
}

/* Overlay when mobile menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

.menu-overlay.active {
    display: block;
}
