

.right-links {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.user-container {
    display: flex;
    align-items: center; 
    gap: 5px;
}

.profile-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #f2f2f2;
    display: block;
    margin-top:-10px;
}

.hamburger-menu {
    display: none; 
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none; 
    flex-direction: column;
    gap: 10px;
}


@media (max-width: 1050px) {
    .hamburger-menu {
        display: block;
    }

    .right-links {
        display: none; 
    }
}

.hamburger-menu {
z-index: 1000; 
}
.hamburger-menu {
background-color: transparent;  
color: #fff;
}
.side-menu {
position: fixed;
top: 0;
right: -300px; 
width: 300px;
height: 100vh;
background-color: black;
color: white;
z-index: 999;
transition: right 0.3s; 
display: flex;
flex-direction: column;
gap: 10px;
padding: 20px;
margin-top: 50px;
}

.scrolled-hamburger {
background-color: transparent;  
color: black;
}

.scrolled-side-menu {
background-color: white;
}

.scrolled-dropdown-icon {
color: black !important;
}

.scrolled-selected-text {
color: black !important;
}



.login-container {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 400px;
    margin: 0 auto;
    margin-top:-70px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.login-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group a {
    color: #0074d9;
    text-decoration: none;
}

.form-group p {
    text-align: center;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0074d9;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s; 
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .icon {
        margin-right: 2px;
    }
}


*, *:before, *:after {
    box-sizing: border-box;
}

.footer {
    background-color: black;
    color: white;
    padding: 50px;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.footer img {
    max-width: 400px;
    margin-right: 260px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

header {
    background-color: black;
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
}

.left-links {
    display: flex;
    align-items: center;
    margin-left: 70px;
}

.right-links {
    margin-right: 70px;
}

header a {
    text-decoration: none;
    color: white;
    margin: 0 10px;
    font-size: 14px;
}

.navbar {
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 2;
    transition: background-color 0.3s, color 0.3s;
}

.navbar a {
    text-decoration: none;
    color: white;
    margin-left: 20px;
    margin-right: 20px;
    transition: color 0.3s;
}



body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    margin: 10px;
    flex: 0 0 calc(40% - 20px);
    text-align: left;
    display: flex;
    align-items: center;
}

.card a {
    color: #79cf30;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    max-width: 80px;
    margin-left: 20px;
}

.center-text {
    text-align: center;
    margin-top: 20px;
    font-size: 30px;
    font-weight: bold;
}

.additional-text {
    text-align: left;
    padding: 20px;
    font-size: 20px;
    font-weight: normal;
}

.course-card {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    margin: 10px;
    flex: 0 0 calc(24% - 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 90px auto;
}
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#logo-container {
  text-align: center;
  animation: pulse 1s ease-in-out infinite;
}

#logo-container img {
  max-width: 100px;
  max-height: 60px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  text-decoration: none;

}

.whatsapp-icon i {
  font-size: 24px;
  margin-right: 5px;
}


.scroll-top-button {
  background-color: grey;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}

 .dropdown {
    position: relative;
    display: inline-block;
}

/* Style for the dropdown button */
.dropbtn {
    background-color: transparent;
    color: white;
    padding: 10px 30px 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

/* Style for the selected icon */
.selected-icon {
    margin-right: 10px;
    margin-top: -15px;
}

/* Style for the dropdown content */
.dropdown-content {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Style for the dropdown links */
.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

/* Change color on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown content when the button is clicked */
.dropdown.active .dropdown-content {
    display: block;
}

/* Style for flag images */
.flag {
    width: 20px;
    height: 15px;
    margin-right: 10px;
}

.selected-text {
    color: white;
}

.terms-text {
    margin-top: -70px;
    margin-left: 90px;
}

.backgroundimage {
    margin-top: 70px;
}
