body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f2f2f2;
}

header {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    height: 80px;
}

nav {
    background: #444;
    padding: 10px;
    height: 50px;
    /*text-align: center;*/
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 20px;
}

.card {
    background: white;
    padding: 15px;
    margin: 10px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 20px; 
} */

button {
    padding: 10px 20px;
    margin-top: 10px;
    cursor: pointer;
}

h1 {
    margin-bottom: 5px;
}

.log {
    margin-left: 600px;
}

.log {
    margin-left: 1300px;

}

.f1 {
    position: relative;
    bottom: 20px;
}

.logo {
    width: 70px;
    height: 70px;
    position: relative;
    right: 240px;
}

.h2 {
    position: relative;
    bottom: 100px;
}

.h3 {
    position: relative;
    bottom: 90px;
}

.news-ticker {
    background: #222;
    color: #fff;
    padding: 10px;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
 .carousel {
      width: 1425px;
      height: 450px;
      margin: auto;
      overflow: hidden;
      position: relative;
      border: 2px solid #ccc;
      border-radius: 10px;
    }

    .carousel-images {
      display: flex;
      transition: transform 0.5s ease-in-out;
     /* width: 300%; */
    }

    .carousel-images img {
      width: 1425px;
      height: 450px;
      flex-shrink: 0;
    }

    .buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .buttons button {
      background-color: rgba(0,0,0,0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
    }

    .buttons button:hover {
      background-color: rgba(0,0,0,0.8);
    }


    .dropdown {
      position: relative;
      display: inline-block;
      
    }

    .dropdown-btn {
      background-color: #3498db;
      color: white;
      padding: 10px 15px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
      position: relative;
      bottom: 30px;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: rgb(238, 246, 247);
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 4px;
      position: relative;
      bottom: 10px;
    }

    .dropdown-content a {
      color: #333;
      padding: 15px 20px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }
       footer {
      background-color: #222;
      color: white;
      padding: 40px;
      position: relative;
      bottom: 20px;
    
    }
    .f2{
        text-align: center;
    }
    /* The button to open the popup */
    .open-btn {
      padding: 14px 20px;
      background-color: #3498db;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      position: relative;
      left: 500px;
      bottom: 90px;
    }

    /* The popup modal */
    .popup {
      display: none;
      position: fixed;
      top: 100px; left: 200px;
      width: 50%; height: 50%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Modal content box */
    .popup-content {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      width: 300px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    /* Close button */
    .close-btn {
      background-color: #e74c3c;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 15px;
    }

    

    