 /* CSS Variables for consistent theming */
         :root {
            --primary: #10B981;
            --primary-dark: #0D9669;
            --primary-light: #ECFDF5;
            --secondary: #1F2937;
            --accent: #4F46E5;
            --light: #F9FAFB;
            --gray: #6B7280;
            --gray-light: #E5E7EB;
            --white: #FFFFFF;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --radius: 12px;
            --transition: all 0.3s ease;
            --facebook-blue: #1877F2;
            --facebook-gray: #65676B;
            --facebook-bg: #F0F2F5;
        }
    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--white);
    }






.page-header {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  margin-bottom: 3rem;
  overflow: hidden;
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 102, 63, 0.493), rgba(0, 153, 69, 0.8)), 
                  url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.header-content {
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.animated-text-container {
  height: 80px;
  position: relative;
  margin: 1.5rem auto;
  overflow: hidden;
}

.animated-text {
  position: absolute;
  width: 100%;
  opacity: 0;
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(20px);
}

.animated-text.active {
  opacity: 1;
  transform: translateY(0);
}

.cta-button {
  display: inline-block;
  background-color: #00a8e8;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.cta-button:hover {
  background-color: white;
  color: #00a8e8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 168, 232, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .animated-text-container {
    height: 70px;
  }
  
  .animated-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .animated-text-container {
    height: 60px;
  }
  
  .animated-text {
    font-size: 1.1rem;
  }
}





    a {
      color: var(--secondary);
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover {
      color: var(--primary);
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Navigation */
    .navbar {
       background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 0;
    }

  
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1.5rem;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .nav-links1 {
            display: flex;
            gap: 1.5rem;
        }

        .nav-links1 a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .nav-links1 a:hover {
            color: var(--primary);
        }

        .nav-links1 a i {
            font-size: 0.9rem;
        }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--primary);
      transition: var(--transition);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

      .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--secondary);
            cursor: pointer;
        }

.control-item {
    position: relative;
}

.icon-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.btn-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 4px;
}
        
/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    background: white;
    color: var(--text-dark);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    z-index: 100;
    display: none;
    border: 1px solid var(--border-color);
}

.language-selector:hover .language-dropdown {
    display: flex;
    flex-direction: column;
}

.language-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-dropdown li a {
    display: inline;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.language-dropdown li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.language-dropdown li a.active {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.gtranslate_wrapper {
    gap: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}


    /* Sections */
    .section {
      padding: 4rem 0;
    }

    .section:nth-child(even) {
      background-color: var(--light);
    }

    .section-title {
      font-size: 2.2rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: #0D9669;
    }

    .section p {
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 1.2rem;
    }

    .section ul {
      list-style-type: none;
      padding-left: 0;
    }

    .section li {
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 0.8rem;
      font-size: 1.05rem;
    }

    .section li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #0D9669;
      font-weight: bold;
    }

    /* Team Section */
    .team-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .team-member {
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .member-img {
      width: 100%;
      height: 250px;
      background-color: var(--light-gray);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 4rem;
    }

    .member-info {
      padding: 1.5rem;
      text-align: center;
    }

    .member-info h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .member-info p {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    /* Values Section */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .value-card {
      background-color: var(--white);
      padding: 2rem;
      border-radius: 8px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .value-card:hover {
      transform: translateY(-5px);
    }

    .value-icon {
      font-size: 2.5rem;
      color:#0D9669;
      margin-bottom: 1rem;
    }

    .value-card h3 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    /* Contact Section */
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 1.5rem;
    }

    .contact-item {
      flex: 1;
      min-width: 250px;
    }

    .contact-item h3 {
      color: var(--primary);
      margin-bottom: 0.8rem;
      font-size: 1.2rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: var(--primary);
      color: var(--white);
      border-radius: 50%;
      transition: var(--transition);
    }

    .social-links a:hover {
      background-color: var(--accent);
      transform: translateY(-3px);
    }

    /* Footer */
    footer {
      background-color: var(--primary);
      color: var(--white);
      padding: 3rem 0 1.5rem;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-logo {
      flex: 1;
      min-width: 250px;
    }

    .footer-logo .logo-text {
      color: var(--white);
      margin-bottom: 1rem;
    }

    .footer-links {
      flex: 1;
      min-width: 200px;
    }

    .footer-links h3 {
      color: var(--white);
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-links a:hover {
      color: var(--white);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-bottom a:hover {
      color: var(--white);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-header h1 {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }

      .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
      }

      .page-header {
        padding: 3rem 0;
      }

      .page-header h1 {
        font-size: 2.2rem;
      }

      .section {
        padding: 3rem 0;
      }
    }

    @media (max-width: 576px) {
      .page-header h1 {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.6rem;
      }
      
      .team-list,
      .values-grid {
        grid-template-columns: 1fr;
      }
    }