/* Base and Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  line-height: 1.6;
  color: #333;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #161717f0;
  border-bottom: 1px solid #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo {
  font-size: 28px;
  color: #9effe1;
  font-weight: 700;
  cursor: pointer;
}

.header-icons .icon-btn {
  background: none;
  border: none;
  color: #e0e0e0;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.header-icons .icon-btn:hover {
  color: #00e0ac;
  transform: scale(1.1);
}

/* Main Content */
.content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background-color: #1e1e1e;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.card h4 {
  color: #6edda8;
  margin-bottom: 10px;
}

.card img,
.card video {
  width: 100%;
  border-radius: 12px;
  margin-top: 15px;
}

.card p {
  margin-top: 10px;
  color: #b3b3b3;
}


.nav-btn.active {
  color: #71bbea;
  border-bottom: 2px solid #77b5dd;
}

@media (max-width: 768px) {
  .header {
    padding: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .header-logo {
    font-size: 22px;
  }

  /* .nav-btn {
    font-size: 22px;
  } */

  .content {
    padding: 15px;
  }

  .card {
    padding: 15px;
  }
}

/* @media (max-width: 480px) {
  .nav-btn {
    font-size: 20px;
  }
} */


/* Banner Styling */
.banner {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #4f93bf 30%, #1a1a1a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  overflow: hidden;
  color: #fff;
  position: relative;
}

.banner h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.banner p {
  font-size: 16px;
  font-weight: 400;
  color: #f0f0f0;
}

.banner img {
  width: 150px;
  height: auto;
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.2;
  filter: blur(5px);
}

.banner-content {
  max-width: 60%;
}

.banner-btn {
  padding: 10px 20px;
  background-color: #292c2e;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.banner-btn:hover {
  background-color: #333e43;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .banner h2 {
    font-size: 28px;
  }

  .banner p {
    font-size: 14px;
  }

  .banner-content {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .banner-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .banner img {
    width: 100px;
    bottom: -15px;
    right: -15px;
  }
}

@media (max-width: 480px) {
  .banner h2 {
    font-size: 24px;
  }

  .banner-btn {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* Carousel Styles */
.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.card {
  min-width: 200px;
  /* Adjust as needed */
  margin: 0 10px;
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #fff;
}

.responsive-img {
  width: 100%;
  max-width: 600px;
  /* Adjust based on your design */
  height: auto;
  border-radius: 8px;
  /* Optional for rounded corners */
  object-fit: cover;
  /* Ensure it covers the container neatly */
}


/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(138 153 151 / 55%);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Video Section Styles */
.video-section {
  margin: 28px 4px;
  text-align: center;
}

.intro-video {
  min-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.video-card {
  flex: 0 0 auto;
  width: 300px;
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: start;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.video-info {
  padding: 15px;
}

.video-info h4 {
  margin-bottom: -14px;
  color: #b8b8b8c4;
  font-size: 17px;
}

.video-info p {
  color: #e0e0e0;
  font-size: 14px;
}


/* for section-2 */


/* Section Styling */
.content-section h3 {
  font-size: 28px;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Tabs Navigation */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tab-btn {
  background-color: #f3f3f3;
  border: none;
  border-radius: 8px;
  padding: 7px 30px;
  font-size: 18px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #0e1112;
  color: #fff;
  box-shadow: 0 4px 12px #424a4578;
}

/* Tab Content Area */
.tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.tab-pane {
  display: none;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  transition: opacity 0.4s ease;
}

.tab-pane.active {
  display: flex;
  opacity: 1;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.resource-card h4 {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}

.resource-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

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

  .resource-card {
    width: 90%;
    padding: 20px;
  }
}

.content-section h3 {
  font-size: 23px;
  text-align: center;
  color: #e5c1bbe6;
  margin-bottom: -4px;
  font-weight: 600;
}

/* Card Container */
.tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 15px;
}

/* Professional Card Styling */
.resource-card {
  background-color: #1a1a1a;
  border: 1px solid #7b7878;
  color: palegoldenrod;
  border-radius: 14px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.resource-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.resource-card:hover img {
  transform: scale(1.05);
}

.resource-card h4 {
  font-size: 20px;
  color: #add7ff;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.resource-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.resource-card button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.resource-card button:hover {
  background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .resource-card {
    width: 100%;
    padding: 4px 22px;
  }
}

/* Scroll */
.tab-pane {
  max-height: 590px;
  /* Adjust height as needed */
  overflow-y: auto;

}

/*  */
#fullscreenButton {
  position: relative;
  top: 2px;
  right: 10px;
}

.intro-video {
  width: 100%;
}


a {
  text-decoration: none;
}

/* Notification Overlay */
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #020d1847;
  /* Slightly darker background */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
}

.notification-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Notification Container */
.notification-container {
  background-color: #0f1012;
  width: 100%;
  max-width: 900px;
  height: 99%;
  /* Full screen height */
  border-radius: 16px;
  /* Rounded top corners */
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  animation: slide-up 0.4s ease forwards;
  display: flex;
  flex-direction: column;
}

/* Slide-up animation for the notification */
@keyframes slide-up {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Notification Header */
.notification-header {
  padding: 10px;
  background-color: #0b0b0b;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 15px 15px;
}

.notification-header h2 {
  font-size: 20px;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
}

/* Notification Body */
.notification-body {
  padding: 20px;
  overflow-y: auto;
  /* Scroll if content overflows */
  flex-grow: 1;
  background-color: #0f1012;
  /* Light grey background */
}

/* Individual Notification Card */
.notification-card {
  background-color: #ebeff8;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.notification-card:hover {
  transform: translateY(-3px);
}

.notification-card h3 {
  font-size: 18px;
  color: #333;
}

.notification-card p {
  font-size: 16px;
  color: #555;
  margin: 8px 0;
}

.time {
  font-size: 12px;
  color: #888;
  text-align: right;
  display: block;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .notification-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .notification-header h2 {
    font-size: 18px;
  }

  .notification-card h3 {
    font-size: 16px;
  }
}

/* .....---- */

.box {
  background: #0e0e0e;
  width: 17.5rem;
  border-radius: 16px;
  border: 1px solid #fff8da73;
  height: 10.625rem;
  cursor: pointer;
  box-shadow: 0 2px 10px #594c4c;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


.boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

@media (max-width: 480px) {
  .box {
    width: 48%;
  }

  .boxes {
    gap: 12px;
    margin-top: 6px;
  }
}

.box_area {
  display: none;
  width: 100%;
  /* max-width: 800px; */
  background-color: transparent;
  padding: 20px;
  border-radius: 10px;
  margin: auto;
  opacity: 0;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.box_area.active {
  display: block;
  opacity: 1;
}

.back-button {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 16px;
  background-color: #0c0e11a1;
  color: whitesmoke;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.iframe_zen {
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1001;
}

.btn_zen {
  position: absolute;
  z-index: 10001;
  top: 0;
  margin-top: 4px;
  left: 8px;
}

.btn_nexora {
  position: absolute;
  z-index: 10001;
  top: 14px;
  margin-top: 4px;
  left: 27px;
  background: transparent;
  color: transparent;
}

/* Styles of Reset Button */
.reset-btn {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #007BFF;
  color: white;
  border: none;
  position: absolute;
  bottom: 300px;
  left: 133px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.reset-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.reset-btn:active {
  transform: translateY(0);
}
