@font-face {
  font-family: 'AntartidaMedium';
  src: url('../../fonts//Antartida-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'AntartidaBold';
  src: url('../../fonts//Antartida-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'AntartidaLight';
  src: url('../../fonts//Antartida-Light.otf') format('opentype');
}

@font-face {
  font-family: 'HappyMonkey';
  src: url('../../fonts//HappyMonkey-Regular.otf') format('opentype');
}


    :root {
      --font-antartida-rounded-medium: '__AntartidaMedium', sans-serif;
      --font-antartida-rounded-bold: '__AntartidaBold', sans-serif;
      --font-antartida-rounded-light: '__AntartidaLight', sans-serif;
      --font-happy-monkey: '__HappyMonkey', cursive;
    }

    body {
      margin: 0;
      color: #333;
      background-color: #f8f9fa;
      font-family: 'AntartidaLight', sans-serif;

    }
    .fallback {
      font-family: Arial, Helvetica, sans-serif;
    }

    main {
        margin: 0 auto;
    }
    .topbar {
      background-color: #4b0082;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'AntartidaMedium', sans-serif;
      font-size: 0.9rem;
      padding: 0.5rem 2rem;
    }
  
    .topbar-left {
        padding-left: 2em;
    }
    .topbar-right {
        padding-right: 2em;
    }
    
    .topbar-left i,
    .topbar-right i {
      margin-right: 6px;
    }
    
    .topbar-right a {
      margin: 1.5rem;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .topbar-right a:hover {
      color: #ffcc00;
    }

    header {
      background: linear-gradient(90deg, #4b0082, #8a2be2);
      color: white;
      padding: 2rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: space-around;
    }
    
    h2 {
        font-size: 2rem;
        font-family: 'AntartidaBold';
        color: #4b0082;
        font-weight: 400;
    }
    header h1 {
      margin: 0;
      font-size: 2rem;
      font-family: 'AntartidaBold', sans-serif;
    }
    header p {
      font-size: 1.2rem;
      font-family: 'AntartidaMedium', sans-serif;
    }
    header img {
        padding: 0em;
        width: 200px;
      }
    .main-nav {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      /* padding: 1rem 2rem; */
      gap: 20px;
      flex-direction: row;
      align-items: center;
    }
    
    .nav-links {
      display: flex;
      gap: 1.2rem;
      align-items: center;
    }
    
    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-family: 'AntartidaMedium', sans-serif;
      transition: color 0.3s ease;
    }
    
    .nav-links a:hover {
      color: #ffcc00;
    }
    
    .mega-dropdown {
      position: relative;
    }
    
    .mega-toggle {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-family: 'AntartidaMedium', sans-serif;
      padding: 0.5rem 1rem;
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }
    
    .mega-content {
      display: none;
      position: absolute;
      top: 2.8rem;
      left: -100px;
      width: 727px;
      background-color: #ffffff;
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
      z-index: 100;
      padding: 1.5rem;
      border-radius: 4px;
      animation: fadeIn 0.3s ease-in-out;
      flex-wrap: wrap;
      gap: 0rem;
      right: 20px;
    }
    
    .mega-content.open {
      display: flex !important;
    }

    .mega-column {
      flex: 1;
      min-width: 200px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    
    .mega-column h4 {
      margin-bottom: 0.8rem;
      color: #4b0082;
      font-family: 'AntartidaBold', sans-serif;
    }
    
    .mega-column a {
      display: block;
      margin-bottom: 0.6rem;
      color: #4b0082;
      text-decoration: none;
      font-family: 'AntartidaLight', sans-serif;
      transition: color 0.2s ease-in-out;
    }
    
    .mega-column a i {
      margin-right: 8px;
    }
    
    .mega-column a:hover {
      color: #ffcc00;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    
    /* Desktop hover support */
    @media (min-width: 768px) {
      .mega-dropdown:hover .mega-content {
        display: flex;
      }
    }

    .nav-search {
      display: flex;
      margin: 0;
      align-items: stretch;
    }
    
    .nav-search input[type="text"] {
      padding: 6px 10px;
      border: none;
      border-radius: 4px 0 0 4px;
      font-family: 'AntartidaLight', sans-serif;
    }
    
    .nav-search button {
      padding: 6px 10px;
      background-color: #ffcc00;
      border: none;
      border-radius: 0 4px 4px 0;
      color: #4b0082;
      cursor: pointer;
    }
    
    .nav-search button i {
      font-size: 0.9rem;
    }
    .search-results {
      padding: 2rem;
      background-color: #f4f4f4;
      font-family: 'AntartidaLight', sans-serif;
    }
    
    .search-results h2 {
      color: #4b0082;
      margin-bottom: 1.5rem;
    }
    
    .search-results ul {
      list-style: none;
      padding: 0;
    }
    
    .search-results li {
      background: white;
      padding: 1rem 1.5rem;
      margin-bottom: 1rem;
      border-left: 4px solid #4b0082;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    
    .search-results h4 {
      margin: 0 0 0.5rem;
      color: #4b0082;
    }

    nav {
      /* background: #fff; */
      display: flex;
      justify-content: center;
      padding: 1rem;
      /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    }
    nav a {
      margin: 0 1rem;
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      font-family: 'AntartidaMedium', sans-serif;
    }
    nav a:hover {
      color: #ffcc00; /* color on hover */
    }
    
    /* Dropdown Container */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    .dropbtn {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-family: 'AntartidaMedium', sans-serif;
      padding: 0.5rem 1rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .dropdown-content {
      display: none;
      position: absolute;
      top: 2.8rem;
      left: 0;
      background-color: white;
      min-width: 220px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
      z-index: 10;
      animation: fadeIn 0.3s ease-in-out;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    /* Dropdown inner block styling */
    .dropdown-block {
      padding: 1rem;
      font-family: 'AntartidaLight', sans-serif;
    }
    
    .dropdown-block h4 {
      margin: 0 0 0.5rem;
      color: #4b0082;
      font-size: 1rem;
    }
    
    .dropdown-block ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .dropdown-block ul li {
      margin-bottom: 0.5rem;
    }
    
    .dropdown-block ul li a {
      text-decoration: none;
      color: #4b0082;
      transition: color 0.2s ease-in-out;
    }
    
    .dropdown-block ul li a:hover {
      color: #ffcc00;
    }
    
    /* Fade animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .services {
      display: flex;
      gap: 2rem;
      padding: 4rem 2rem;
      margin: 0 auto;
      justify-content: center;
    }
    .service {
      background: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      text-align: center;
      width: 250px;
    }
    .service h3 {
      color: #4b0082;
      font-family: 'AntartidaBold', sans-serif;
    }
    footer {
      background: #4b0082;
      padding: 1.5rem 2rem;
    }
    
    
    
/* Responsive layout */
/* Mobile hamburger menu styles */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
}

@media screen and (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #4b0082;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-search {
    width: 100%;
    margin-top: 1rem;
  }

  .nav-search input[type="text"] {
    width: 100%;
    border: 1px solid #ffcc00;
  }

  .services {
    flex-direction: column;
    padding: 2rem 1rem;
    align-items: center;
  }

  .service {
    width: 100%;
    max-width: 400px;
    padding: 0;
  }

  header {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  header img {
    padding: 2em;
    width: 333px;
  }

  .topbar {
    align-items: center;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .topbar-left, .topbar-right {
    padding: 10px;
    margin: 0;
  }

  footer {
    padding: 2rem 1rem;
  }
}
