/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


body {
    margin: 0;
    font-family: "IBM Plex Sans", Helvetica;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: #007bff;
  }
  
  header, footer {
    background-color: #f8f9fa;
    padding: 0px 20px;
    border-bottom: 1px solid #fff;
  }
  
  .header {
    display: flex;
    align-items: center;
    height:80px;
    position: sticky;
    top: 0px;
  }
  
  .header .logo {
    width: 80px;
    height: 18px;
  }
  
  .header .logo span {
    color: #007bff;
  }
  .nav {
    margin-left: 60px;
    margin-right: auto;
    gap: 40px;
    display: flex;
    transition: all 300ms;
  }
  .nav a {
    font-size: 15px;
    color: #1a2434;
  }
  .nav a:hover {
    font-weight: bold;
  }
  .auth-links {
    margin-right: 20px;
    display: flex;
    align-items: center;
  }
  .auth-links a {
    margin-left: 15px;
    font-size: 0.9em;
    color: #1a2434;
  }
  .auth-links a:hover {
    font-weight: bold;
  }
  .auth-links .lang {
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid #fff;
  }
  /* Menu Icon */
  .menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 15px;
    cursor: pointer;
    margin-left: 20px;
    transition: all 300ms;
  }
  
  .menu-icon span {
    background-color: #333;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 300ms;
  }
  
  .main-content {
    text-align: center;
    padding: 30px 0px;
    /* height: calc(100vh - 100px); */
    padding-top: 60px;
  }
  
  .main-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 300;
    color:#093687;;
  }
  
  .main-content p {
    font-size: 0.9em;
    color: #555;
    max-width:600px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  
  .search-bar {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    max-width:600px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
  
  .search-bar input {
    padding: 20px 20px;
    width: 100%;
    background: #0061df10;
    border-radius:10px 0 0 10px;
    outline: none;
    border: none;
    flex-shrink: 1;
    font-family: "IBM Plex Sans", Helvetica;
    font-size: 16px;
  }
  .search-bar input::-webkit-input-placeholder {
   color:#33333365;
  }
  .search-bar button {
    padding: 10px 15px;
    background-color: #0062df;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    flex-shrink: 0;
    font-family: "IBM Plex Sans", Helvetica;
    font-size: 16px;
    padding: 0px 15px;
    font-weight: bold;
    height: 60px;
    display: flex;
    align-items: center;
  }
  .search-bar button img{
   margin-left: 10px;
  }
  
/* Footer Styles */
    .footer {
        background-color: #f8f9fa;
        border-top: 1px solid #ddd;
        padding: 20px;
        font-size: 14px;
        margin-top: 10px;
        padding-top: 30px;
     }

    .footer .logo{
        width:80px;height: 18px;
        margin-bottom: 10px;
    }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
  }
  
  .footer-logo .logo-text {
    font-weight: bold;
    font-size: 18px;
  }
  
  .footer-logo .logo-text span {
    color: #00000073;
  }
  
  .footer-links {
    display: flex;
    gap: 15px;
  }
  
  .footer-links a {
    color: #00000073;
    font-size: 14px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #6c757d;
  }
  
  .footer-bottom span {
    display: block;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-links {
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }
  
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }
  }
  
  
  /* Responsive Styles */
  @media (max-width: 900px) {
    .auth-links {
        margin-right: 20px;
        margin-left: auto;
        margin-right: 0px;
    }
    .menu-icon {
      display: flex;
    }
    .nav {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        height:calc(100vh - 80px);
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
  
    .main-content h1 {
      font-size: 35px;
      line-height: 45px;
    }
  
    .search-bar input {
      width: 80%;
    }
    
    .nav.active {
        display: flex;
    }
    
  }
  
  .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  
  /* Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s;
  }
  
  /* Modal */
  .modal {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    font-family: Roboto, Lato;
  }
  
  /* Header */
  .modal-header {
    padding: 20px;
    background-color: #0062df;
    border-bottom: 1px solid #fff;
  }
  
  .modal-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .modal-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0px;
  }
  
  /* Body */
  .modal-body {
    padding: 20px;
    font-size: 1rem;
    color: #1a2434;
    line-height: 1.5;
  }
  
  /* Footer */
  .modal-footer {
    padding-bottom: 20px;
  }
  
  .modal-close {
    background-color: #093687;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: calc(100% - 40px);
    font-family: Roboto, Lato;
  }
  
  .modal-close:hover {
    background-color: #0b47b6;
  }
   
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
    
  }
  .rotate {
    animation: rotate 0.5s linear infinite;
  }
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
    
  }