:root {
      --primary: #1c8f43;
      --secondary: #00606a;
      --white: #ffffff;
      --light: #f6f8f7;
      --text: #222222;
      --border: #e8e8e8;
      --shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: var(--white);
    }

    a {
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    header {
      width: 100%;
      position: relative;
      z-index: 999;
    }

    /* ================= TOP HEADER ================= */

    .top-header {
      background: var(--light);
      color: var(--secondary);
      padding: 10px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-size: 14px;
      line-height: 1.4;
    }

    .top-left,
    .top-right {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .top-info {
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      color: var(--secondary);
      font-weight: 500;
    }

    .top-info i {
      color: var(--primary);
      font-size: 16px;
    }

    .social-icons {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .social-icons a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: 0.3s ease;
    }

    .social-icons a:hover {
      background: var(--secondary);
      transform: translateY(-2px);
    }

    /* ================= MAIN HEADER ================= */

    .main-header {
  background: var(--primary);
  width: 100%;
}

.main-header-inner {
  max-width: 1220px;
  width: 100%;
  min-height: 84px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo img {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--white);
      padding: 3px;
    }

    .nav-area {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 1;
      gap: 28px;
    }

    .navbar ul {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .navbar ul li {
      position: relative;
    }

    .navbar ul li a {
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 32px 0;
      transition: 0.3s ease;
      white-space: nowrap;
    }

    .navbar ul li a:hover {
      opacity: 0.85;
    }

    .navbar ul li a i {
      font-size: 11px;
      color: var(--white);
    }

    /* ================= DROPDOWN ================= */

    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: 0.3s ease;
      z-index: 99;
    }

    .dropdown a {
      color: var(--text) !important;
      padding: 13px 16px !important;
      font-size: 14px !important;
      font-weight: 500 !important;
      display: block !important;
      border-bottom: 1px solid var(--border);
    }

    .dropdown a:last-child {
      border-bottom: none;
    }

    .dropdown a:hover {
      background: #f0faf4;
      color: var(--primary) !important;
      opacity: 1 !important;
    }

    .has-dropdown:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* ================= CALL BOX ================= */

    .call-box {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      flex-shrink: 0;
    }

    .call-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    .call-text strong {
      display: block;
      font-size: 15px;
      margin-bottom: 2px;
      font-weight: 700;
    }

    .call-text span {
      font-size: 14px;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }

    /* ================= MOBILE MENU BUTTON ================= */

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.18);
      color: var(--white);
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
      transition: 0.3s ease;
      margin-left: auto;
    }

    .menu-toggle:hover {
      background: rgba(255, 255, 255, 0.28);
    }

    /* ================= TABLET ================= */

    @media (max-width: 1100px) {
      .top-header {
        padding: 10px 22px;
        gap: 14px;
      }

      .top-left,
      .top-right {
        gap: 14px;
      }

      .top-info {
        font-size: 13px;
      }

       .main-header {
    padding: 0;
  }

  .main-header-inner {
    min-height: 78px;
    padding: 12px 22px;
    flex-wrap: wrap;
  }


      .menu-toggle {
        display: flex;
      }

      .nav-area {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        background: var(--white);
        border-radius: 14px;
        padding: 14px;
        box-shadow: var(--shadow);
        margin-top: 4px;
      }

      .nav-area.active {
        display: flex;
      }

      .navbar ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }

      .navbar ul li {
        width: 100%;
        border-bottom: 1px solid var(--border);
      }

      .navbar ul li:last-child {
        border-bottom: none;
      }

      .navbar ul li a {
        color: var(--text);
        padding: 13px 4px;
        justify-content: space-between;
        font-size: 15px;
      }

      .navbar ul li a i {
        color: var(--primary);
      }

      .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
      }

      .dropdown {
        position: static;
        min-width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 10px;
        background: #f6fbf8;
        margin-bottom: 10px;
      }

      .has-dropdown.open .dropdown {
        display: block;
      }

      .dropdown a {
        padding: 10px 14px !important;
        font-size: 13px !important;
      }

      .call-box {
        background: var(--primary);
        padding: 12px;
        border-radius: 12px;
        justify-content: center;
      }
    }

    /* ================= MOBILE ================= */

    @media (max-width: 767px) {
      .top-header {
        padding: 9px 14px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .top-left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .top-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }

      .top-info {
        font-size: 12px;
        white-space: normal;
        line-height: 1.3;
      }

      .top-info.hide-mobile {
        display: none;
      }

      .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
      }

       .main-header {
    padding: 0;
  }

  .main-header-inner {
    padding: 11px 14px;
    gap: 12px;
  }


      .logo img {
        width: 56px;
        height: 56px;
      }

      .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }

      .nav-area {
        padding: 13px;
        border-radius: 12px;
        margin-top: 2px;
      }

      .navbar ul li a {
        font-size: 14px;
        padding: 12px 2px;
      }

      .call-box {
        justify-content: flex-start;
      }

      .call-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
      }

      .call-text strong {
        font-size: 14px;
      }

      .call-text span {
        font-size: 13px;
      }
    }

    /* ================= SMALL MOBILE ================= */

    @media (max-width: 480px) {
      .top-header {
        display: none;
      }

      .main-header {
    padding: 0;
  }

  .main-header-inner {
    padding: 10px 12px;
  }

      .logo img {
        width: 52px;
        height: 52px;
      }

      .nav-area {
        margin-top: 4px;
      }

      .navbar ul li a {
        font-size: 14px;
      }

      .call-box {
        padding: 11px;
      }
    }
