 
    /* =========================
      ROOT VARIABLES
   ========================= */
  :root {
    /* Brand Colors */
    --color-green: #07833D;   /* Brand Green */
    --color-yellow: #FDB813;  /* Highlight Yellow */
    --color-red: #E63027;     /* Accent Red */
    --color-golden: #F6B500;  /* Secondary Golden */
    --color-dark: #432818;    /* Dark Brown */
    --color-light: #f8f9fa;   /* Light Background */
    --color-white: #ffffff;   /* Pure White */
    --color-text: #333333;    /* Base Text */

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--color-green), var(--color-yellow));
    --gradient-overlay: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.2));

    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.2);

    /* Font Sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-md: 18px;
    --font-lg: 24px;
    --font-xl: 32px;
    --font-soci: 45px;

    /* Slider */
    --slide-height: 90vh;
    --slide-btn-bg: rgba(0, 0, 0, 0.5);
    --slide-btn-hover: rgba(0, 0, 0, 0.8);
    --slide-btn-color: var(--color-white);
    
    /* Privacy Policies */
    --radius: 12px;
    --padding: 1.5rem;
    --max-width: 1200px;
  }

  /* RESET */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { 
    font-family: Arial, sans-serif; 
    background: var(--color-light); 
    color: var(--color-text);      
    max-width: 100%;
    overflow-x: hidden; 
  }


/* HAMBURGER */
    .hamburger { display: none; font-size: 24px; cursor: pointer; transition: transform 0.3s; }
    .hamburger:hover { transform: rotate(90deg); }

    /* SIDEBAR */
    .sidebar {
      position: fixed;
      top: 0; left: -260px;
      width: 260px; height: 100%;
      background: var(--color-green);
      color: var(--color-white);
      padding: 20px;
      transition: left 0.4s ease;
      z-index: 2000;
      overflow-y: auto;
    }
    .sidebar.active { left: 0; }
    .sidebar h4 a {
      display: block;
      color: var(--color-white);
      padding: 12px 0;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .sidebar h4 a:hover {
      color: var(--color-yellow);
      transform: translateX(5px);
    }
    .sidebar .submenu a {
      display: block;
      padding: 10px 20px;
      font-size: var(--font-sm);
      color: var(--color-golden);
      text-decoration: none;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .sidebar.active .submenu a {
      opacity: 1;
      transform: translateX(0);
    }
    .sidebar .submenu a:hover { color: var(--color-red); }
    .sidebar .close-btn {
      font-size: 22px;
      cursor: pointer;
      margin-bottom: 20px;
      display: inline-block;
      color: var(--color-yellow);
      transition: transform 0.3s;
    }
    .sidebar .close-btn:hover { transform: rotate(90deg); }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .nav-part2 { display: none; }
      .hamburger { display: block; 
        color: var(--color-white);
      right: 0px;
        position: relative;
        top: 0px;
      }
    }
/* ============================
       Sub Dropdown Styles
    ============================= */
    .sub-dropdown {
      position: relative;
    }

    .sub-dropdown > a {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sub-dropdown > a::after {
      content: "\f105"; /* Font Awesome right arrow */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin-left: 8px;
    }

    .sub-dropdown-menu {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background: var(--color-green);
      min-width: 180px;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.15); */
      /* border-radius: 6px; */
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.25s ease;
      z-index: 999;
    }

    .sub-dropdown-menu a {
      padding: 10px 15px;
      color: var(--color-light);
      display: block;
      text-decoration: none;
    }
    
    .sub-dropdown-menu a:hover {
      color: var(--color-red);
      background: var(--color-green);
    }

    .sub-dropdown:hover .sub-dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateX(0);
    }

  /* HAMBURGER */
  .hamburger { 
    display: none; 
    font-size: 24px; 
    cursor: pointer; 
    transition: transform 0.3s; 
  }
  .hamburger:hover { transform: rotate(90deg); }

  /* SIDEBAR */
  .sidebar {
    position: fixed;
    top: 0; 
    left: -260px;
    width: 260px; 
    height: 100%;
    background: var(--color-green);
    color: var(--color-white);
    padding: 20px;
    transition: left 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
  }
  .sidebar.active { left: 0; }
  .sidebar h4 a {
    display: block;
    color: var(--color-white);
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .sidebar h4 a:hover {
    color: var(--color-yellow);
    transform: translateX(5px);
  }
  .sidebar .submenu a {
    display: block;
    padding: 10px 20px;
    font-size: var(--font-sm);
    color: var(--color-golden);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .sidebar.active .submenu a {
    opacity: 1;
    transform: translateX(0);
  }
  .sidebar .submenu a:hover { color: var(--color-red); }
  .sidebar .close-btn {
    font-size: 22px;
    cursor: pointer;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--color-yellow);
    transition: transform 0.3s;
  }
  .sidebar .close-btn:hover { transform: rotate(90deg); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .nav-part2 { display: none; }
    .hamburger { 
      display: block; 
      color: var(--color-white); 
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 1000;
    }
  }
/*slideshow*/
/* Remove default body and section spacing */
body {
  margin: 0;
  padding: 0;
}

section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.slideshow {
  margin: 0 !important;
}

/* Main Slider Fixes */
.slideshow {
  position: relative;
  width: 100%;
  height: auto; /* CHANGED: from 90vh to auto */
  min-height: 400px; /* ADDED: minimum height */
  overflow: hidden;
  background-color: white;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.slide img {
  width: 100%;
  height: 100%; /* CHANGED: from auto to 100% */
  object-fit: cover; /* KEEP as cover for proper filling */
  z-index: 0;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.slide-content h1 {
  font-size: 4vw;
  margin-bottom: 0.5em;
  text-shadow: 3px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content h1 {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  color: white;
  z-index: 1;
}

.slide-content h1 {
  position: relative;
  display: inline-block;
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.slide-content p {
  font-size: 2vw;
  margin-bottom: 1em;
}

.slide-content a {
  display: inline-block;
  padding: 0.7em 1.5em;
  background-color: rgba(238, 147, 10, 0.3);
  color: #dddddd;
  text-decoration: none;
  font-size: 1.2vw;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.slide-content a:hover,
.slide-content a:focus {
  background-color: rgba(255, 255, 255, 0.6);
  color: #4b4a4a;
  border-color: rgba(255, 255, 255, 0.8);
  outline: 1px solid rgb(36, 196, 4);
  outline-offset: 4px;
  text-shadow: none;
}

.nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.nav button {
  background: rgba(120, 186, 111, 0.5);
  border-radius: 40px;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  margin-left: 30px;
  margin-right: 30px;
  transition: background 0.3s ease;
  box-shadow: 10px 10px 35px rgb(103, 101, 91);
}

.nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ========== RESPONSIVE FIXES ========== */

/* Tablets */
@media (max-width: 1024px) {
  .slideshow {
    height: auto;
    min-height: 350px;
  }
  
  .nav button {
    margin-left: 20px;
    margin-right: 20px;
    padding: 8px 16px;
    font-size: 1.5rem;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .slideshow {
    height: auto;
    min-height: 300px; /* CHANGED: from 50vh to fixed min-height */
  }
  
  .slide img {
    height: 100%;
    object-fit: cover;
  }
  
  .slide-content h1 {
    font-size: 6vw; /* CHANGED: from 5vw to 6vw */
    padding: 0.1em 0.3em;
  }
  
  .slide-content p {
    font-size: 4vw; /* CHANGED: from 3.5vw to 4vw */
  }
  
  .slide-content a {
    font-size: 3.5vw; /* CHANGED: from 3vw to 3.5vw */
    padding: 0.5em 1em;
  }
  
  .nav button {
    margin-left: 10px;
    margin-right: 10px;
    padding: 6px 12px;
    font-size: 1.2rem;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .slideshow {
    height: auto;
    min-height: 148px;
  }
  
  .slide-content h1 {
    font-size: 7vw;
  }
  
  .slide-content p {
    font-size: 4.5vw;
    margin-bottom: 0.5em;
  }
  
  .slide-content a {
    font-size: 4vw;
    padding: 0.4em 0.8em;
  }
  
  .nav button {
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .slideshow {
    min-height: 200px;
  }
  
  .slide-content {
    width: 90%;
  }
  
  .slide-content h1 {
    font-size: 8vw;
  }
  
  .slide-content p {
    font-size: 5vw;
  }
  
  .slide-content a {
    font-size: 4.5vw;
  }
}

  /* About Us Section */
  section.policy-container {
    max-width: var(--max-width);
    width: 90%;
    margin: 40px auto;
    background: #fff;
    border: 1px solid var(--color-green);
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: var(--padding);
  }

  section.policy-container header {
    border-bottom: 2px solid var(--color-golden);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  section.policy-container header h1 {
    font-size: 1.8rem;
    color: var(--color-green);
    text-align: center;
  }

  article.policy-section {
    margin-bottom: 1.5rem;
  }

  article.policy-section h2 {
    font-size: 1.2rem;
    color: var(--color-red);
    margin-bottom: 0.5rem;
  }

  article.policy-section p {
    margin: 0.4rem 0;
    line-height: 1.6;
    color: #555;
  }
/*chip*/
 .chip {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      padding: 20px;
    }

  /*chip navgator*/                                                      
   /* ------------------------------
       🎠 Carousel Structure
    ------------------------------ */
    .category-carousel-container {
      display: flex;
      align-items: center;
      width: 90vw;
      max-width: 1200px;
      position: relative;
      padding: 20px 0;
    }

    .carousel-viewport {
      overflow: hidden;
      width: 100%;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    /* ------------------------------
       🧁 Category Item
    ------------------------------ */
    .carousel-item {
      flex: 0 0 calc(100% / 6);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 5px;
      text-decoration: none;
      cursor: pointer;
      user-select: none;
    }

    .item-icon-circle {
      width: 100px;
      height: 100px;
      background-color: var(--color-light);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 8px;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .carousel-item:hover .item-icon-circle {
      transform: scale(1.05);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .item-icon {
      font-size: 2rem;
      color: var(--color-golden);
    }

    .item-name {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-green);
      text-align: center;
      font-family: "Georgia", serif;
    }

    /* ------------------------------
       ⬅️➡️ Navigation Buttons
    ------------------------------ */
    .carousel-btn {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 1rem;
      color: var(--icon-color);
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: all 0.2s ease;
      z-index: 10;
    }

    .carousel-btn:hover:not(:disabled) {
      background-color: var(--bg-color);
    }

    .carousel-btn:disabled {
      opacity: 0.4;
      cursor: default;
    }

    /* ------------------------------
       📱 Responsive Adjustments
    ------------------------------ */
    @media (max-width: 992px) {
      .carousel-item {
        flex: 0 0 calc(100% / 4);
      }
      .item-icon-circle {
        width: 80px;
        height: 80px;
      }
      .item-icon {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 600px) {
      .carousel-item {
        flex: 0 0 calc(100% / 3);
      }
      .carousel-btn {
        width: 32px;
        height: 32px;
      }
      .item-icon-circle {
        width: 70px;
        height: 70px;
      }
      .item-name {
        font-size: 0.8rem;
      }
    }
  
  /* Terms and Conditions FAQ Section */
  .faq-container {
    max-width: var(--max-width);
    width: 90%;
    margin: 40px auto;
    background: #fff;
    border: 2px solid var(--color-green);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }

  .faq-header {
    color: var(--color-green);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }

  .faq-updated {
    font-size: 0.9rem;
    color: gray;
    margin-bottom: 20px;
    text-align: center;
  }

  .faq-item {
    border-top: 1px solid #ddd;
  }

  .faq-question {
    cursor: pointer;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
  }

  .faq-question:hover {
    background: rgba(253, 184, 19, 0.1);
  }

  .faq-icon {
    transition: transform 0.3s;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.3s ease;
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 15px;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-green);
  }
  
  .faq-answer p {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  /* Gallery Section */
 /* Gallery Section */
.about_falicitate_h2 {
  text-align: center;
  margin: 40px 0 20px;
  font-size: var(--font-xl);
  font-weight: bold;
  background: linear-gradient(90deg, #fa0202, #fdfd02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
  background-color: #f0f0f0;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.gallery-nav-btn {
  background: var(--color-green);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav-btn:hover {
  background: var(--color-dark);
}

.gallery-counter {
  font-size: var(--font-md);
  color: var(--color-text);
  font-weight: 500;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background-color: rgba(45, 39, 34, 0.826);
  z-index: 10000;
  overflow: hidden;
}

.modal-content {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90%;
  top: 5%;
}

.modal-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10001;
}

.close-modal:hover {
  color: var(--color-yellow);
}

.modal-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10001;
}

.modal-nav button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .modal-content {
    width: 95%;
    height: 85%;
    top: 10%;
  }
  
  .modal-nav button {
    font-size: 1.5rem;
    padding: 10px;
    width: 40px;
    height: 40px;
  }
  
  .close-modal {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .gallery-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

  /* Footer */
  .footer {
    background: var(--color-green);
    color: var(--color-white);
    padding: 50px 20px 20px;
    margin-top: 80px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    max-width: var(--max-width);
    margin: 0 auto 30px;
  }
  .footer-col h3 {
    margin-bottom: 15px;
    font-size: var(--font-md);
    color: #ffe6a7;
    position: relative;
  }
  .footer-col h3::after {
    content: ""; 
    display: block; 
    width: 40px; 
    height: 2px; 
    background: #bb9457; 
    margin-top: 5px;
  }
  .footer-col p { 
    font-size: var(--font-sm); 
    line-height: 1.6; 
  }
  .footer-col ul { 
    list-style: none; 
    padding: 0; 
  }
  .footer-col ul li { 
    margin-bottom: 10px; 
  }
  .footer-col ul li a {
    text-decoration: none; 
    color: #ddd; 
    transition: color 0.3s ease;
  }
  .footer-col ul li a:hover { 
    color: #ffe6a7; 
  }
  .newsletter {
    display: flex;
    border: 1px solid #bb9457;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 15px;
  }
  .newsletter input { 
    border: none; 
    padding: 10px; 
    flex: 1; 
    outline: none; 
  }
  .newsletter button {
    background: #bb9457;
    border: none;
    color: var(--color-white);
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .newsletter button:hover { 
    background: #99582a; 
  }
  .social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: var(--color-white);
    font-size: var(--font-md);
    transition: transform 0.3s, color 0.3s;
  }
  .social-icons a:hover { 
    transform: scale(1.2); 
    color: #ffe6a7; 
  }
  .footer-bottom {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    color: #bbb;
    max-width: var(--max-width);
    margin: 0 auto;
  }
 





























  
    /* =========================
      ROOT VARIABLES
   ========================= */
    :root {
      /* Brand Colors */
      --color-green: #07833D;   /* Brand Green */
      --color-yellow: #FDB813;  /* Highlight Yellow */
      --color-red: #E63027;     /* Accent Red */
      --color-golden: #F6B500;  /* Secondary Golden */
      --color-dark: #432818;    /* Dark Brown */
      --color-light: #f8f9fa;   /* Light Background */
      --color-white: #ffffff;   /* Pure White */
      --color-text: #333333;    /* Base Text */
      
      /* Navbar Specific Variables */
      --anchor-color: #ffffff;
      --navbar-after-hover-color: #FDB813;
      --navbar-color: #055e2c;
      
      /* Font Sizes */
      --font-base: 16px;
    }

    /* RESET */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { 
      font-family: Arial, sans-serif; 
      background: var(--color-light); 
      color: var(--color-text);      
      max-width: 100%;
      overflow-x: hidden; 
    }

 
    /* NAVBAR */
    nav {
      width: 100%;
      height: 69px;
      padding: 0px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--color-green);
      color: var(--color-white);
      position: relative;
      
      box-sizing: border-box;
    }
    nav img { width: 100px;height: auto; }
    .nav-part2 { display: flex; gap: 20px; align-items: center; }
          /* make links and the dropdown wrapper fill navbar height and center their contents */
.nav-part2 > a,
.nav-part2 > .dropdown {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;               /* horizontal spacing inside nav */
  color: var(--color-light);
  text-decoration: none;
  font-size: var(--font-base);
  position: relative;
}
    .nav-part2 a:hover { color: var(--color-red); }
    .nav-part2 a:hover::after { width: 100%; }

    /* DROPDOWN */
    .dropdown { position: relative; }
     /* small invisible bridge to avoid losing hover when moving cursor from link --> menu */
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;                   /* tiny invisible area that keeps hover active */
  pointer-events: none;          /* does not block mouse events */
}
    .dropdown-menu {
      position: absolute;
  top: 100%;
  left: 0px; /* push it to start near logo */
  background: var(--color-green);
  display: flex; /* horizontal layout */
  flex-direction: column;
  gap: 10px;
  min-width: auto;
  /* box-shadow: var(--shadow-md); */
  /* border: 2px solid var(--color-yellow); */
  /* border-radius: var(-); */
  z-index: 1000;
  padding: 12px;    /*chatgpt changes*/
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  /* chatgpt changes */
   transition: opacity 0.18s ease, transform 0.18s ease;
  /* transition: all 0.3s ease; */
  /* padding: 20px 12px; */
    }
   /* keep open on hover or keyboard focus */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
     /* optional hover bridge on the menu itself (extra insurance on flicker) */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;                     /* extends hover area a bit upward */
  left: 0;
  width: 100%;
  height: 8px;
  pointer-events: auto;
}
.pro{
  color: white;
    text-decoration: none;
}
    .dropdown-menu a {
      padding: 8px 12px;
      font-size: var(--font-base);
      color: var(--color-white);
      text-decoration: none;
      white-space: nowrap;
      display: block;
      transition: background 0.3s ease, color 0.3s ease;
        border-radius: var(--radius-sm);
    }
    .dropdown-menu a:hover {
      background: var(--color-green);
      color: var(--color-red);
    }
    /* On mobile keep dropdown vertical */
@media (max-width: 768px) {
  .nav-part2 {
    display: none; /* existing mobile behavior */
  }
  .hamburger {
    display: block;
    color: var(--color-white);
    position: relative;
    right: 0px;
    top: 1px;
  }
  .dropdown-menu {
    position: static;
    display: none;       /* hide inside navbar */
    flex-direction: column;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
  .dropdown:hover .dropdown-menu {
    display: none; /* prevent hover dropdown on mobile */
  }
}

/*language btn*/
.language-btn{
  width: 90px;
  height: 30px;
  border: 2px solid orangered;
  font: 1em sans-serif;
  border-radius: 50px;
  outline: none;
}
.language-btn:hover{
  background: linear-gradient(to top,orangered,yellow);
  transition: all linear 0.3s;
}