/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  body{
    padding-top: 80px;
  }

  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 0.2rem 2rem;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .navbar-brand img {
    height: 3.8rem;
    width: 200px;
    /* margin-left: 2rem; */
  }
  
  .navbar-links {
    display: flex;
    list-style-type: none;
  }
  
  .navbar-links li {
    margin-left: 1.5rem;
    /* margin-top: 1.25rem; */
    transition: 0.2s ease;
  }
  .navbar-links li:hover{
    color: #047810;
    transform: scale(1.06);
  }
  
  .navbar-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
  
  .navbar-links a:hover {
    color: #047810;
  }
  
  .navbar-links a i {
    margin-right: 0.5rem;
  }
  
  #loginBtn {
    background-color: #28a745;
    margin-top: -10px;
    /* margin-bottom: 0.75rem; */
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: 0.1s ease;
  }
  
  #loginBtn:hover {
    background-color: #218838;
    color: #fff;
  }
  
  /* Hamburger Menu for Small Screens */
  .hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .navbar-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 0;
      background-color: white;
      width: 100%;
      padding: 1rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .navbar-links li a{
        padding-top: 0.5rem;
    }
    #loginBtn{
        margin-top: 1rem;
        margin-right: 1rem;
    }
  
    .navbar-links.show {
      display: flex;
    }

    .navbar-brand img{
        width: 150px;
    }
    .hamburger {
      display: block;
    }
    #darkModeToggle{
      margin-top: 0.8rem;
      /* margin-left: 0.8rem; */
    }
  }

  #darkModeToggle{
    border: none;
    background: none;
    transform: scale(2);
  }
  

                /* ------------login form ----------------- */

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    display: flex;
    background-color: #fff;
    padding: 20px;
    max-width: 700px;
    width: 90%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Left section styling */
.left-section {
    width: 50%;
    padding: 20px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.left-section img {
    height: 15rem;
    width: 15rem;
}

.left-section h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.left-section p {
    font-size: 14px;
    color: #555;
}

.left-section ul {
    list-style-type: none;
    padding: 0;
    font-size: 14px;
    color: #555;
}

.left-section li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.left-section li::before {
    content: "•";
    color: #FFA500;
    font-weight: bold;
    margin-right: 10px;
}

/* Right section styling */
.right-section {
    width: 50%;
    padding: 20px;
}

.right-section h2 {
    margin: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.right-section form {
    display: flex;
    flex-direction: column;
}

.right-section label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1rem;
    margin-top: -10px;
}

.right-section input {
    padding: 10px 90px 10px 10px;
    margin: 5px 0 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.right-section button {
    /* padding: 10px 110px; */
    padding: 10px 120px 10px 118px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.right-section button:hover {
    background-color: #333;
}

.google-btn {
    margin-top: 10px;
    background-color: #4285f4;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.google-btn:hover {
    background-color: #357ae8;
}

.right-section p {
    font-size: 14px;
    color: #333;
    margin-top: 15px;
    text-align: center;
}

.right-section p a {
    color: #FFA500;
    text-decoration: none;
    cursor: pointer;
}


/* Reset Password link styling */
.reset-password-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.reset-password-link {
    font-size: 14px;
    color: #6c757d; /* Customize color as desired */
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.reset-password-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments for tablets and below */
@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        max-width: 90%;
        padding: 10px;
    }
    .popup {
        height: 100%;
    }
    .left-section img {
        margin-top: 5px ;
        height: 8rem;
        width: 8rem;
    }
    
    .left-section,
    .right-section {
        width: 100%;
        padding: 10px;
    }
    
    .left-section {
        align-items: center;
        text-align: center;
        margin: -2.5rem 0;
    }

    .left-section ul li,
    .left-section p {
        display: none; /* Hide list and paragraph on smaller screens */
    }

    .right-section h2 {
        font-size: 22px;
    }

    .right-section input,
    .right-section button,
    .google-btn {
        width: 100%;
        font-size: 16px;
    }
    
    .close-btn {
        top: 10px;
        right: 10px;
    }
}

/* Additional adjustments for smaller mobile screens */
@media (max-width: 480px) {
    .popup-content {
        padding: 5px;
    }
    .popup {
        height: 100%;
        margin-top: 1rem;
    }
    .left-section {
        margin: -2.5rem 0;
    }
    .left-section h2,
    .right-section h2 {
        font-size: 20px;
    }
    
    .left-section ul li,
    .left-section p {
        display: none; /* Hide for smaller mobile screens */
    }

    .right-section input,
    .right-section button,
    .google-btn {
        font-size: 14px;
    }
}


                /* ------------------login form close -------------------- */




                       /* ---------------------footer css --------------------- */


/* General Footer Styling */
.footer {
    background-color: #0a2342;
    color: #ffffff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-top: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-column img{
    height: 11rem;
    width: 13rem;
    margin-bottom: 2.5rem;
}

/* Footer Column Styling */
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-top: 1rem;
}

.footer-column h3 {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Contact Section Styling */
.footer-column p {
    display: flex;
    align-items: center;
    color: #d1d1d1;
    margin: 8px 0;
    line-height: 1.5rem;
    font-size: 15px;
    font-weight: 500;
}

.footer-contact{
    text-decoration: none;
    color: #d1d1d1;
    transition: 0.2s ease;
}

.footer-contact:hover{
    color: #ffbe0b;
}
.footer-contact.mail:hover{
    color: #d62828;
}
.footer-column p i {
    margin-right: 10px;
}

/* Social Icons Styling */
.social-icons i {
    background-color: #142850;
    color: #ffffff;
    margin-top: 20px;
    margin-right: 10px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s ease;
}

.social-icons i:hover{
    transform: scale(1.1);
}
.social-icons i.fa-facebook-f{
    color: #1877F2;
}
.social-icons i.fa-facebook-f:hover{
    color: #d1d1d1;
    background-color: #1877F2;
}
.social-icons i.fa-twitter{
    color: #1DA1F2;
}
.social-icons i.fa-twitter:hover{
    color: #d1d1d1;
    background-color: #1DA1F2;
}
.social-icons i.fa-instagram{
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}
.social-icons i.fa-google-plus-g{
    background: #DB4437;
}
.social-icons i.fa-linkedin-in{
    background: #0077B5;
}
/* Links Styling */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 8px 0;
}

.footer-column ul li a{
    text-decoration: none;
    color: #d1d1d1;
    transition: 0.1s ease;
}
.footer-column ul li a:hover{
    color: #ffb703;
}

/* Newsletter Styling */
.newsletter {
    display: flex;
    margin-bottom: 15px;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.newsletter button {
    background-color: #ffd700;
    color: #0a2342;
    padding: 10px;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Footer Bottom Styling */
.footer-bottom {
    text-align: center;
    color: #d1d1d1;
    padding-top: 20px;
    font-size: 16px;
}

.footer-bottom p {
    margin: 5px 0;
    color: #d1d1d1;
}
.footer-bottom p a{
    text-decoration: none;
    color: #d1d1d1;
    transition: 0.1s ease;
}
.footer-bottom p a:hover{
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter input[type="email"],
    .newsletter button {
        width: 100%;
        border-radius: 4px;
        margin-top: 10px;
    }
}



 /* Dark Mode Styles */
 .dark-mode {
    background-color: #121212; /* Dark background */
    color: white; /* Light text */
  }
  
  /* Specific Dark Mode styling for elements */
  .dark-mode .navbar {
    background-color: #1d1d1d; /* Dark navbar */
  }
  
  .dark-mode .hamburger{
    color: #fff;
    background: none;
  }
  
  .dark-mode .navbar-links{
    background: #1d1d1d;
    /* color: #fff; */
  }
  
  .dark-mode .navbar-links a {
    color: #fff; /* Light text for navbar links */
  }
  
  .dark-mode .card {
    background-color: #333; /* Dark background for cards */
    color: white; /* Light text in cards */
  }
  
  /* Additional styling for other elements */
  .dark-mode .slider {
    filter: brightness(0.7); /* Dim the image slider in dark mode */
  }
  
  .dark-mode .streamcard-img img {
    filter: brightness(0.7); /* Dim the stream images in dark mode */
  }
  
  /* Customize buttons for dark mode */
  .dark-mode button {
    background-color:#121212; /* Darker buttons */
    color: white;
    
  }
  
  /* loader */
  
  /* Loader styles */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden; /* Initially hidden */
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
  }
  
  .loader.visible {
    visibility: visible;
    opacity: 1;
  }
  
  .spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  /* Spinner animation */
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }




                                    /* signupform validation css  */
.error{
    color: red !important;
    font-size: 14px !important;
  }
  .success{
    color:rgb(29, 183, 29) !important;
    font-size: 16px !important;
    font-weight: bold !important;
  }
  
  /* eye icon css styling */
  .input-container {
    position: relative;
    width: 100%;
    max-width: auto;
  }
  
  .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  
           /* ----------dropdown logout ---------- */
           .logoutbtn{
            border: none;
            border-radius: 2px;
            margin-left: 5px;
            background: red;
            color: #fff;
            width: 50px;
           }
           @media (max-width: 768px){
            .logoutbtn{
              margin: 5px 0 0 25px;
              font-size: 15px;
              padding: 4px 2px;
            }
           }
           @media (max-width: 480px){
            .logoutbtn{
              margin: 5px 0 0 25px;
              font-size: 15px;
              padding: 4px 2px;
            }
           }
           @media (max-width: 1024px){
            .logoutbtn{
              margin: 5px 0 0 25px;
              font-size: 15px;
              padding: 4px 2px;
            }
           }
           @media (max-width: 576px){
            .logoutbtn{
              margin: 5px 0 0 25px;
              font-size: 15px;
              padding: 4px 2px;
            }
           }
           @media (max-width: 992px){
            .logoutbtn{
              margin: 5px 0 0 25px;
              font-size: 15px;
              padding: 4px 2px;
            }
           }
        
