:root{
    --background-color:white;
    --font-color:black;
    --font-color-white:white;
    --black-hover-color:rgba(0, 0, 0, 0.469);
    --white-hover-color:#ffffff;
    --bottums-color: #025959;
    --sections-bakcground-color:#f9f9f9;
    
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
      }
      body {
        font-family: 'Arial', sans-serif; /* Matching your style.css */
        color: var(--text-color-primary);
        line-height: 1.6;
        margin: 0;
        padding: 0;
        background-color: var(--background-color);
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: rgba(255, 255, 255, 0);
      position: fixed;
      width: 100%;
      top: 0;
      transition: all 0.2s ease;
      z-index: 1000;
    }
    
    .navbar.scrolled {
      background-color: #025959;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.scrolled .logo-text  {
      color: white;
    }
    
    .navbar.scrolled,.dropdown-menu{
      color: #333;
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    
    .logo-icon {
      width: 40px;
      height: 40px;
      margin-right: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .logo-text {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
      transition: color 0.2s ease;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 2rem;
    }
    
    .nav-links a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
      transition: color 0.2s ease;
    }
    
    .nav-links a:hover {
      color: #02A9A9;
    }
    
    .dropdown {
      position: relative;
      cursor: pointer;
    }
    
    .dropdown-menu {
      display: none;
      position: absolute;
      right: 0;
      background-color: white;
      min-width: 250px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      padding: 0.5rem 0;
      z-index: 1;
      border-radius: 4px;
      height: auto;
    }
    
    .dropdown-menu a {
      display: block;
      padding: 0.5rem 1rem;
      color: #333;
    }
    
    .dropdown-menu a:hover {
      background-color: #f8f8f8;
    }
    
    .dropdown:hover .dropdown-menu {
      display: block;
    }
    
    .burger {
      display: none;
      cursor: pointer;
      touch-action: manipulation;
    }
    
    .burger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px;
      transition: all 0.3s ease;
    }
    
    .sidebar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100%;
      background-color: white;
      transition: right 0.3s ease;
      padding: 2rem;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
      z-index: 1001;
    }
    
    .sidebar.active {
      right: 0;
    }
    
    .sidebar-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      cursor: pointer;
      font-size: 1.5rem;
    }
    
    .sidebar ul {
      list-style: none;
      margin-top: 2rem;
    }
    
    .sidebar ul li {
      margin-bottom: 1rem;
    }
    
    .sidebar ul a {
      text-decoration: none;
      color: #333;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }
    
    .sidebar ul a:hover {
      color: #02A9A9;
    }
    
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 1000;
    }
    
    /* Responsive styles */
    @media screen and (max-width: 500px) {
      .nav-links {
          display: none;
      }
      
      .burger {
          display: block;
      }
      
      .navbar.scrolled .burger div {
          background-color: white;
      }@media (max-width: 600px) {
          .navbar {
            padding: 0.5rem 1rem;
          }
        
          .logo-icon img {
            width: 30px;
            height: 30px;
          }
        
          .logo-text {
            font-size: 1rem;
          }
        
          .burger div {
            width: 20px;
            height: 2px;
            margin: 4px;
          }
        
          .sidebar {
            width: 240px; /* Smaller sidebar on mobile */
            padding: 1.5rem;
          }
        
          .sidebar ul a {
            font-size: 1rem;
          }
        }
      }
    
    /* Dropdown styling */
    .dropdown {
      position: relative;
  }

  
  .dropdown-content {
  
      display: none;
      position: absolute;
      background-color: white;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      z-index: 10;
  }
  
  .dropdown-content a {
      padding: 12px 16px;
      display: block;
      color: #333;
      border-bottom: 1px solid #f1f1f1;
  }
  
  .dropdown-content a:hover {
      background-color: #f1f1f1;
  }
  
  .dropdown:hover .dropdown-content {
      display: block;
  }
  
  /* Dropdown indicator */
  .dropdown > a::after {
      content: "▼";
      font-size: 8px;
      margin-left: 5px;
      vertical-align: middle;
  }
  

   
    /*----------------------------------------------------------------------------------------------------*/
    /*----------------------------------------------------------------------------------------------------*/
    /*----------------------------------------------------------------------------------------------------*/
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        height: 400px;
        display: flex;
        align-items: center;
        overflow: hidden;
        margin-bottom: 50px;
    }
 
    .slideshow-container {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -2;
    }
    
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        left: 0;
        top: 0;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .hero-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        left: 0;
        top: 0;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
        z-index: -1;
    }
    
    .hero-content {
        color: rgb(255, 255, 255);
        width: auto;
        padding: 0 20px;
        position:relative;
        z-index: 2;
    }
    
    .hero-content h1 {
        font-size:38px;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    @media (max-width: 992px) {
        .hero-content h1 {
            font-size: 36px;
        }
        
        .hero-content p {
            font-size: 16px;
        }
    }
    
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 32px;
        }
        
        .hero-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .hero {
            height: 450px;
        }
    }
    
    @media (max-width: 576px) {
        .hero-content h1 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .hero-content p {
            font-size: 15px;
            margin-bottom: 20px;
        }
        
        .hero-btn {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .hero {
            height: 400px;
        }
        
        .dot {
            height: 8px;
            width: 8px;
        }
    }
    
    @media (max-width: 500px) {
        .hero-content h1 {
            font-size: 24px;
        }
        
        .hero {
            height: 350px;
        }
        .testimonial-text{
          font-size: 10px;
        }
    }
    /*----------------------------------------------------------------------------------------------------*/
    .testimonials {
        padding: 80px 0;
        background-color: var(--background-color);
        text-align: center;
      }
      
      .testimonials h2 {
        font-size: 30px;
        font-weight: 600;
        color: #333;
        margin-bottom: 40px;
      }
      
      .testimonial-carousel {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
      }
      
      .testimonial-card {
        background-color: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 25px;
        display: none;
      }
      
      .testimonial-card.active {
        display: block;
      }
      
      .testimonial-rating {
        margin-bottom: 15px;
      }
      
      .star {
        color: #FFD700; /* Gold color for stars */
        font-size: 15px;
        letter-spacing: 2px;
      }
      
      .testimonial-text {
        font-size: 12px;
        line-height: 1.7;
        color: #555;
        margin-bottom: 20px;
      }
      
      .testimonial-author {
        font-size: 10px;
        font-style: italic;
        color: #777;
      }
      
      .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
      }
      
      .dot {
        height: 10px;
        width: 10px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
      
      .dot.active {
        background-color: var(--bottums-color); /* Green color - match your site color scheme */
      }
    /*----------------------------------------------------------------------------------------------------*/
    /*----------------------------------------------------------------------------------------------------*/
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }
    
      .footer {
        background-color: #222;
        color: #fff;
        padding: 2rem 1rem;
        width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        color: #ccc;
        text-align: center;
    }
    
    .help-center {
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .help-center h3 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .help-center ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .help-center ul li a {
        color: #aaa;
        text-decoration: none;
        font-size: 0.8rem;
        padding: 0.5rem;
        display: inline-block;
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .social-icons a {
        display: inline-block;
        width: 36px;
        height: 36px;
        background-color: var(--bottums-color);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
    }
    
    .copyright {
        text-align: center;
        font-size: 0.75rem;
        color: #777;
        padding-top: 1rem;
        border-top: 1px solid #333;
    }
    
    .language-selector {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1.5rem 0;
    }
    
    .language-selector select {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 0.4rem 0.5rem;
        border-radius: 4px;
        font-size: 0.8rem;
    }