/* Fonts used */
@font-face {
    font-family: 'Sohagee'; /* Choose a name for your font */
    src: url('../../../assets/fonts/Sohagee.woff2') format('woff2'), /* Modern browsers */
         url('../../../assets/fonts/Sohagee.woff') format('woff'),   /* Older browsers */
         url('../../../assets/fonts/Sohagee.ttf') format('truetype'); /* Fallback */
    font-weight: normal; /* Specify weight (normal, bold, etc.) */
    font-style: normal;  /* Specify style (normal, italic, etc.) */
  }
  
  /* General Styles */
  body {
    margin: 0;
    font-family: 'Sohagee', 'Noto Sans Ol Chiki', Verdana, Geneva, Tahoma, sans-serif;
    background: linear-gradient(to right, #5372F0, #db3c81);
    color: #f3f3f3;
    line-height: 1.6;
  }
  
  header {
    background-color: #3e4ab1;
    color: #f3f3f3;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .site-name {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  /* Desktop Menu */
  .desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .desktop-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .desktop-menu li {
    margin: 0 10px;
    position: relative;
  }
  
  .desktop-menu a {
    color: #f3f3f3;
    text-decoration: none;
    padding: 5px 10px;
  }
  
  .desktop-menu a:hover {
    background-color: #6b82f7;
    border-radius: 5px;
  }
  
  /* Dropdown Menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #404ea3;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    min-width: 150px;
  }
  
  .dropdown-menu li {
    margin: 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 10px;
  }
  
  .dropdown-menu a:hover {
    background-color: #6b82f7;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* Mobile Dropdown Menu */
  .dropdown-content {
    display: none;
    background-color: #2b2b2c;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .dropdown-content li {
    border-bottom: 1px solid #444;
  }
  
  .dropdown-content a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
  }
  
  .dropdown-content a:hover {
    background-color: #29ec6a;
  }
  
  .dropdown.open .dropdown-content {
    display: block;
  }
  
  /* Mobile Header */
  .mobile-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    background-color: #3e4ab1;
  }
  
  .menu-toggle {
    position: absolute;
    left: 10px;
    background-color: #3e4ab1;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .mobile-menu {
    display: fixed;
    background-color: #241bcf;
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: #5372F0;
    border-radius: 8px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
  }
  
  .mobile-menu.active {
    left: 0;
  }
  
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu a {
    color: #f3f3f3;
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    border-bottom: 1px solid #2b2b2c;
  }
  
  .mobile-menu a:hover {
    background-color: #6b82f7;
  }
  
  /* Mobile menu close button */
  .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #db3c81; /* Vibrant background color */
    border: none;
    border-radius: 50%; /* Circular shape */
    font-size: 25px; /* Bigger font for a better appearance */
    color: white; /* White text */
    width: 40px; /* Width and height to make it a circle */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: all 0.3s ease; /* Smooth transition */
  }
  
  .close-button:hover {
    background-color: #f06292; /* Darker shade on hover */
    transform: scale(1.1); /* Slightly bigger on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3); /* Bigger shadow on hover */
  }
  
  .close-button:focus {
    outline: none; /* Remove focus outline */
  }
  
  .close-button:active {
    transform: scale(1); /* Reset size when button is clicked */
  }
  
  /* Dropdown drop u */
  .drop-u {
    position: absolute; 
    right: 20px;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .mobile-header {
      display: none;
    }
      
    .desktop-header {
      display: flex;
    }
  
    .mobile-menu {
      display: none !important;
    }
  }
  
  @media (max-width: 767px) {
    .desktop-header {
      display: none;
    }
  
    .mobile-header {
      display: flex;
    }
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 500;
    display: none;
  }
  
  .overlay.active {
    display: block;
  }

  /* Links */
  a {
    color: inherit;
    text-decoration: none;
  }

/* Footer */
footer {
    background: #3e4ab1; /* Matches header */
    color: #f3f3f3; /* Consistent text color */
    text-align: center;
    padding: 10px 12px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  footer .copyrt {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  /* Languages section */
  .langsel {
    position: absolute;
    right: 0;
  }
