body {
  min-height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  background-color: #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 180px; 
  object-fit: contain;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Language dropdown styling for header */
.header-right details {
  position: relative;
}

.header-right details summary {
  list-style: none;
  cursor: pointer;
}

.header-right details summary::-webkit-details-marker {
  display: none;
}

.header-right details ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  z-index: 1000;
}

.header-right details li {
  list-style: none;
}

.header-right details a {
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  color: #374151;
  transition: background-color 0.2s;
}

.header-right details a:hover {
  background-color: #f3f4f6;
}

/* Dashboard header language dropdown styling */
.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details {
  position: relative;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details summary {
  list-style: none;
  cursor: pointer;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details summary::-webkit-details-marker {
  display: none;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
  z-index: 1000;
  margin-top: 0.5rem;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details li {
  list-style: none;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details a {
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  color: #374151;
  transition: background-color 0.2s;
}

.tw-flex.tw-flex-wrap.tw-items-center.tw-justify-end.tw-gap-3 details a:hover {
  background-color: #f3f4f6;
}

.login-container {
  padding-top: 80px;
  margin-top: 0;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.login-container {
 background: url('../images/header_bg2.3cf4761e357d8af8.png') no-repeat center center fixed;

  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 20px 50px; 
  background-size: cover;
  position: relative;
  overflow: auto;
  gap: 20px;
}

.login-container {
  position: relative;
  z-index: 1;
}

.login-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}


.text-gradient {
  background: linear-gradient(45deg, #000000, #451eaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.carousel-item {
  padding: 2rem;
  text-align: center;
}

.carousel-item p {
  color: #f8f9fa;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.btn-custom {
  background-color: #451eaa;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(254, 202, 87, 0.3);
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 202, 87, 0.4);
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .login-container {
    padding: 20px 30px;
  }
  
  .carousel-item {
    padding: 1.5rem;
  }
  
  .text-gradient {
    font-size: 2.2rem;
  }
  
  .carousel-item p {
    font-size: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  .login-container {
    flex-direction: column;
    padding: 50px 15px 20px;
    text-align: center;
  }
  
  .col-md-6, 
  .col-md-5 {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }
  
  .login-box {
    margin-top: 40px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .carousel-item {
    height: auto;
    padding: 2rem 1rem;
  }
  
  .text-gradient {
    font-size: 2rem;
  }
  
  .carousel-item p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .login-container {
    padding-top: 60px; 
  }
  .login-box {
    padding: 20px 15px;
  }
  
  .text-gradient {
    font-size: 1.75rem;
  }
  
  .carousel-item p {
    font-size: 0.95rem;
  }
  
  .btn-custom, 
  .btn-login,
  .btn-custom-new {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .youtube-ripple-btn {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
  }
  
  .youtube-ripple-btn .ripple-ring {
    width: 60px;
    height: 60px;
  }
}

.login-box {
  background-color: #000000;
  border-radius: 10px;
  padding: 25px;
  width: 100%;
  max-width: 380px;
  color: white;
  box-shadow: 0 0 20px rgba(69, 30, 170, 0.5);
  position: relative;
  z-index: 2;
  margin: 0 auto;
  box-sizing: border-box;
}

.login-box input {
  margin-bottom: 15px;
}

.login-box .form-control {
  border-radius: 6px;
}

.btn-login {
  background-color: #451eaa;
  color: white;
  width: 100%;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #38198f;
}

.btn-custom-new {
  background-color: #451eaa;
  color: white;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-custom-new:hover {
  background-color: #38198f;
  color: white;
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}


.social-icon.fa-facebook:hover {
    background: #1877f2;
    color: white;
}


.social-icon.fa-linkedin:hover {
    background: #0a66c2;
    color: white;
}


.social-icon.fa-envelope:hover {
    background: #ea4335;
    color: white;
}

.footer-bar {
  background-color: #000;
  padding: 12px 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 20px;
  border-top: 1px solid #451eaa;
}

.footer-bar a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-bar a:hover {
  color: #b39ddb;
  text-decoration: none;
}


.mt-4 {
  text-align: center;
  padding: 12px 10px;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  gap: 10px 20px;
}

.mt-4::before {
  content: none; 
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  padding-left: 15px;
}

.footer-link::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b39ddb;
}

.footer-link:hover {
  color: #b39ddb;
  text-decoration: none;
}

.info-icon {
  background-color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}


.youtube-ripple-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.youtube-ripple-btn:hover {
  transform: scale(1.1);
}


.center-circle {
  width: 50px;
  height: 50px;
  background-color: #ff0000;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.center-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}


.play-icon {
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 4px;
  transition: all 0.3s ease;
}

.play-icon:hover {
  transform: scale(1.2);
}


.ripple-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 50%;
  animation: rippleAnim 2s infinite;
  z-index: 1;
}

.ripple-ring.delay {
  animation-delay: 1s;
}


@keyframes rippleAnim {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}