* {
   margin: 0;
 padding: 0; 
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body,
html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: black;
}

/* Style for the anchor tag */
.btn1 {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: transparent;
  color: gold;
  font-weight: bold;
  border: 2px solid gold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover effect */
.btn1:hover {
  background: gold;
  color: black;
}

/* Animation for sliding effect */
.animate-slide {
  animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
    /* Slide in from left */
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .lang-buttons button {
    margin-right: 100px;
    margin-top: 10px;
  }
}


.hero {
    background-color: rgb(0, 0, 7);
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://kbsdubai.ae/static/image/home.jpg');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
  height: 100vh; 
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}
    
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
  url("/static/image/home.jpg") no-repeat center center / cover; */

  /* height: 100vh; */
/*  color: white;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: space-between;*/
/*}*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

/* Default (Mobile-first) — apply flex */
.navbar {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  padding: 15px 20px;
}

/* Medium screens (disable flex between 768px and 900px) */
@media (min-width: 768px) and (max-width: 900px) {
  .navbar {
    display: block;
    /* Disable flex */
  }

  .logo img {
    height: 70px !important;
    /* width: 200px; */
  }
}

/* Large screens (re-enable flex above 900px) */
@media (min-width: 901px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    flex-direction: row;
  }
}

.logo {
  font-weight: bold;
  font-size: 18px;
  color: gold;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .navbar {
    display: block;
  }
}

/* Default height for larger screens */
.logo img {
  height: 100px;
  width: 200px;
}

/* Adjust logo height on mobile screens */
@media (max-width: 767px) {
  .logo img {
    height: 50px;
            width: 100px;

    /* Adjust the height as needed */
  }

  .dropbtn,
  .submenu-btn {
    margin: left 40px !important;
  }

}

.navbar.active .nav-links a[href="#home-page"] {
  color: red;
  /* Or any color you want */
}


.nav-links a {
  color: gold;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

@media screen and (min-width: 760px) and (max-width: 768px) {
  .hamburger {
    position: fixed;
    margin-left: 657px;
    margin-top: -63px;
  }
}



.arabic,
.sub-arabic {
  display: none;
}

.content {
  text-align: center;
  margin-top: -60px;
}

.arabic {
  font-family: 'Cairo', sans-serif;
  font-size: 32px;
  margin-bottom: 5px;
}

.sub-arabic {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  color: #ccc;
}

.title {
  font-size: 36px;
  font-weight: bold;
  margin-top: 20px;
}

.subtitle {
  font-size: 16px;
  margin-top: 10px;
  color: #ddd;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: transparent;
  color: gold;
  font-weight: bold;
  border: 2px solid gold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: gold;
  color: black;
}

.socials {
  text-align: center;
  padding-bottom: 30px;
}

.socials a {
  color: gold;
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
}

@keyframes slideRightToLeft {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide {
  animation: slideRightToLeft 1.2s ease-out forwards;
}

.about-section {
  background-color: #000;
  color: #fff;
  padding: 60px 40px;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
}

.highlight-box {
  border: 2px solid #ff7d3f;
  padding: 10px 20px;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
}

.subheading {
  color: #d4af37;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.subheading::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #d4af37;
  position: absolute;
  top: -10px;
  left: 0;
}

.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  text-align: justify;
}

.learn-more-btn {
  margin-top: 20px;
  background-color: #d4af37;
  border: none;
  padding: 12px 24px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.about-image {
  flex: 1 1 40%;
  position: relative;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  display: block;
  width: 100%;
  max-width: 350px;
  height: auto;
  position: relative;
  z-index: 2;
}

.image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 20px solid white;
  z-index: 1;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
  opacity: 0;
}

.vmk-section {

  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.vmk-heading {
  font-size: 28px;
  margin: 40px 0 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.vmk-heading::after {
  content: '';
  width: 40px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin-top: 8px;
}

.vmk-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
  text-align: justify;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mission-item {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 20px;
  text-align: center;

}

.mission-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.mission-item h4 {
  color: #f9c74f;
  font-size: 18px;
  margin-bottom: 10px;
}

.mission-item p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.element-card {
  background-color: #111;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid #222;
  transition: transform 0.3s ease;
  text-align: center;
}

.element-card:hover {
  transform: translateY(-5px);
}

.element-card h4 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 17px;
}

.element-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.mission-item img {
  width: 100%;
  height: 180px;
  /* Set consistent height */
  object-fit: cover;
  /* Ensures images fill area without distortion */
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #333;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
}

/* Lab System Section */
.lab-system-section {
  background: #000;
  padding: 60px 20px;
  /*border-top: 4px solid #8000ff;*/
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.lab-system-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.lab-image img {
  width: 350px;
  height: auto;
  border-radius: 5px;
  border: 4px solid #fff;
}

.lab-content {
  max-width: 400px;
}

.lab-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.lab-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.lab-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
}




.lab-button {
  background-color: #d4af37;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

/*  */


/* Default styles */
.nav-links {
  /* display: flex; */
  /* Use flexbox */
  align-items: center;
  /* Vertically center items */
  gap: 20px;
  /* Space between links */
}


/* Hamburger (hidden by default) */
.hamburger {
  display: none;
  font-size: 30px;
  color: gold;
  cursor: pointer;
  z-index: 1001;
}

/* @media (max-width: px) {
   .hamburger {
    display: block;
  }
} */

/* Side Drawer Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -250px;
    /* hidden by default */
    width: 250px;
    background: rgba(0, 0, 0, 0.95);
    padding-top: 60px;
    transition: right 0.3s ease;
    z-index: 1000;
    display: none;
  }
.text-yellow {
  color: #FFD700 !important; /* Gold */
}

  .nav-links a {
    display: block;
    text-align: left;
    padding: 15px 30px;
    color: gold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    right: 0;
    /* show the menu */
  }

  .hamburger {
    display: block;
  }

  .element-card p {
    text-align: justify;
  }
}

/* Scale Up Logo Animation */
@keyframes scaleUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Fade Out Loader */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Scale Up Logo Animation */
@keyframes scaleUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/*   
  /* Fade Out Loader */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Fade In Home Content */
@keyframes fadeInHome {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Loader Container */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: scaleUp 1.5s ease-in-out, fadeOut 2s ease forwards;
  animation-delay: 2s;
  /* Loader will disappear after 2 seconds */
}

/* Image inside the Loader */
#loader img {
  max-width: 300px;
  width: 100%;
  height: auto;
  animation: scaleUp 1.5s ease-in-out;
  /* Scaling the image */
}

/* Home Content */
#home {
  opacity: 0;
  animation: fadeInHome 2s ease-in-out forwards;
  /* Fades in the home content */
  animation-delay: 4s;
  /* Home content fades in after loader disappears */
}


.content-description {
  margin-top: 10px;
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
}

#load-more {
  margin-top: 20px;
  font-size: 1.1em;
}

.founders-unique {
  background-color: #0a0a0a;
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.founders-title {
  text-align: center;
  margin-bottom: 60px;
}

.founders-title h2 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 10px;
}

.founders-title p {
  color: #bbb;
  font-size: 16px;
}

.founders-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
}

.founder-profile {
  display: flex;
  flex-direction: row;
  background: linear-gradient(135deg, #1b1b1b, #2e2e2e);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
  transition: transform 0.4s ease;
  min-height: 400px;
}

.founder-profile:hover {
  transform: scale(1.02);
}

.founder-profile.reverse {
  flex-direction: row-reverse;
}

.founder-profile .image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.founder-profile .info {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.founder-profile h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #ffffff;
}

.founder-profile .position {
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 18px;
}



.founder-profile .bio {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

  .founder-profile,
  .founder-profile.reverse {
    flex-direction: column;
  }

  .founder-profile .image {
    width: 100%;
    min-height: 300px;
  }

  .founder-profile .info {
    width: 100%;
    padding: 20px;
  }
}

.founders-alt-ui {
  background-color: #0a0a0a;
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.founders-title {
  text-align: center;
  margin-bottom: 60px;
}

.founders-title h2 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 10px;
}

.founders-title p {
  color: #bbb;
  font-size: 16px;
}

.founders-card-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.founder-card {
  background: #1b1b1b;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.founder-image {
  width: 140px;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid #ffd700;
}

.founder-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.founder-card .position {
  color: #ffd700;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.founder-card .bio {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {

  .founder-profile,
  .founder-profile.reverse {
    flex-direction: column;
    height: auto;
    /* Allow height to adjust on mobile */
  }

  .founder-profile .image,
  .founder-profile .info {
    width: 100%;
    height: 250px;
    /* Set image height for mobile */
  }

  .founder-profile .info {
    height: auto;
    padding: 20px;
  }
}

.kbs-library-section {
  background-color: #0a0a0a;
  color: #f5f5f5;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('/image/ai-background.png');
  /* Optional decorative background */
  background-size: cover;
  background-position: center;
  position: relative;
}

.kbs-library-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.9);
  z-index: 0;
}

.kbs-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

.kbs-library-section h2 {
  font-size: 40px;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.kbs-library-section h2 span {
  color: #ffffff;
}

.kbs-library-section .intro {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

.kbs-columns {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.kbs-column {
  flex: 1;
  min-width: 280px;
}

.kbs-column h3 {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.kbs-column ul {
  list-style: none;
  padding-left: 0;
}

.kbs-column ul li {
  color: #ddd;
  padding: 5px 0;
  border-left: 3px solid #ffd700;
  padding-left: 10px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .kbs-columns {
    flex-direction: column;
  }

  .kbs-library-section h2 {
    font-size: 32px;
  }
}

.curriculum-development-dark {
  background-color: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
  padding: 80px 20px;
}

.cd-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.cd-left {
  flex: 1;
  min-width: 320px;
}

.cd-left h2 {
  font-size: 40px;
  color: #ffd700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cd-left .cd-intro {
  font-size: 16px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: justify;
}

.cd-left .cd-intro span {
  color: #dc3545;
}

.cd-left h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
}

.cd-points {
  list-style: none;
  padding: 0;
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

.cd-points li {
  margin-bottom: 12px;
  text-align: justify;
}

.cd-points li span {
  color: #ff9966;
  font-weight: bold;
}

.cd-right {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.cd-right img {
  max-width: 100%;
  height: auto;
}

.fas{
  color: white;
}

body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  padding: 0;
}

.knowledge-market-section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: #ffd700;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.market-card {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease;
}

.market-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.icon-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.percent-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffd700;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.market-card h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #ffffff;
}

.market-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive: Stack cards in 1 column on smaller screens */
@media (max-width: 768px) {
  .market-grid {
    grid-template-columns: 1fr;
  }
}

.business-model-section {
  padding: 60px 20px;
  text-align: center;
  background: #000;
  color: white;
}

.business-model-section h2 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 40px;
}

.model-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.model-image {
  /* background-color: #111; */
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
}

.model-image img {
  width: 100%;
  max-width: 600px;
  max-height: 400px;
  /* Set max height */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}



.model-footer {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-box {
  background-color: #1a1a1a;
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  font-size: 18px;
  color: #fff;
  min-width: 220px;
}

.footer-box span {
  color: #dc3545;
  font-weight: bold;
}



/* For mobile screens */
@media (max-width: 768px) {
  #loader {
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    height: 100vh;
    /* Takes the full height of the screen */
  }

  #loader img {
    max-width: 80%;
    /* Adjust image size for mobile if needed */
  }
}

/* Section 1: Contact & CTA */
.hero-section {
  position: relative;
  /* background: url('{% static "image/contact-form.jpg" %}') no-repeat center center/cover; */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  height: 100%;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adjust opacity here (0.0 - 1.0) */
  z-index: -1;
}


.hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.contact-form {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  flex: 1;
  min-width: 300px;
}

.contact-form label {
  display: block;
  margin-top: 10px;
  color: white;
}

.contact-form input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  background: #111;
  border: 1px solid #444;
  color: #fff;
}

.contact-form button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #d4af37;
  color: #000;
  border: none;
  cursor: pointer;
}

/* CTA Box */
.cta-box {
  background: #fff;
  color: #000;
  padding: 30px;
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.cta-box h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-box button {
  padding: 10px 20px;
  background-color: #d4af37;
  border: none;
  cursor: pointer;
}

/* Section 2: Partners */
.partners-section {
  background: #111;
  padding: 60px 20px;
  height: 452px;
  /* text-align: center; */
  padding-top: 103px;
}

/* .partners-section {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/static/image/worldmap.png") no-repeat center center / cover;
  background-attachment: fixed; /* Optional parallax effect */
/* opacity: 0.5;
} */



@media (max-width: 768px) {
  .partners-section {
    padding: 40px 15px;
    height: auto;
    /* Let content decide height */
    padding-top: 80px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
}


.partners-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.description {
  flex: 1;
  min-width: 300px;
}

.description h2 {
  color: #ffd700;
  margin-bottom: 20px;
}

.description p {
  line-height: 1.6;
  color: white;
}

.regions {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.regions div {
  background: #222;
  padding: 10px;
  border-left: 3px solid #ff0033;
  color: white;
}

.regions span {
  color: #ff0033;
  font-size: 18px;
  margin-right: 5px;
}

.site-footer {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  color: #ffd700;
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #aaa;
  font-size: 14px;
}

.footer-brand {
  text-align: center;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffd700;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-social .social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.footer-social img:hover {
  filter: brightness(1.2) sepia(1) hue-rotate(20deg) saturate(3);
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.dark-theme {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.dark-theme h2 {
  font-size: 40px;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 30px;
}

.map-text-overlay {
  position: relative;
  margin-bottom: 40px;
}

.world-map {
  width: 100%;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.market-description {
  position: relative;
  z-index: 2;
  padding: 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  /* background: rgba(20, 20, 20, 0.8); */
  /* border: 1px solid #333; */
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.market-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  padding: 20px 30px;
  border-radius: 10px;
  width: 220px;
  color: #fff;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.stat-box:hover {
  transform: translateY(-5px);
}

/* Box styles by category */
.stat-box.nft {
  background-color: #1a1f1d;
  border-top: 4px solid #ffd700;
}

.stat-box.metaverse {
  background-color: #002a40;
  border-top: 4px solid #ffd700;
}

.stat-box.gamification {
  background-color: #1a1d1f;
  border-top: 4px solid #ffcc00;
}

.stat-box h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ccc;
  letter-spacing: 1px;
}

.stat-box .value {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.stat-box .year {
  font-size: 13px;
  margin-top: 6px;
  color: #aaa;
}

.market-footer-image img {
  width: 100%;
  margin-top: 30px;
  border-radius: 10px;
  border: 2px solid #222;
}

.faculties-section {
  padding: 60px 30px;
  max-width: 900px;
  margin: auto;
  background-color: #161616;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.faculties-section h1 {
  font-size: 42px;
  color: #ffd700;
  text-align: center;
  margin-bottom: 30px;
}

.faculties-section h1 span {
  color: #ffd700;
}

.faculty-list {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
  line-height: 2;
}

.faculty-list li {
  padding: 12px 0;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  color: white;
}

.faculty-list li:hover {
  background-color: #222;
  padding-left: 10px;
}

.faculty-list i {
  color: #ffd700;
  min-width: 20px;
}



.scholars-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #bbbbbb;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.scholar-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.card {
  background-color: #1e1e1e;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.card-icon {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: black;
}

.card p {
  font-size: 1rem;
  color: black;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .scholar-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .card.centered-card {
    grid-column: 1 / -1;
    max-width: 60%;
    margin: 0 auto;
  }
}


.departments-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;
}

.department-card {
  background-color: #1f1f1f;
  border-radius: 15px;
  width: 260px;
  /* Fixed width */
  height: 120px;
  /* Fixed height */
  padding: 20px;
  font-size: 1rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: left;
}

.department-card:hover {
  transform: translateY(-5px);
  background-color: #272727;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.7);
}

.department-card i {
  color: #ffd700;
  font-size: 1.3rem;
}

.curriculum-section {

  padding: 60px 20px;
  background: #000;
}

.curriculum-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.curriculum-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #FFD700;
  /* Yellow */
}

.curriculum-header p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 700px;
  margin: auto;
}

.curriculum-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.curriculum-card {
  background: #111;
  border: 1px solid #FFD700;
  border-radius: 12px;
  padding: 30px 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.curriculum-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: #FFD700;
}

.curriculum-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.curriculum-card p {
  font-size: 0.95rem;
  color: #ccc;
}

.lang-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  /* padding: 10px; */
}

/*   
  .lang-buttons button {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .lang-buttons button:hover {
    background-color: #FFD700;
    color: #fff;
    border-color: #FFD700;
  }
  
  .lang-buttons i {
    font-size: 16px;
  }
   */


.lang-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  /* padding: 10px; */
}

.lang-buttons button {
  background: linear-gradient(to right, #fbc108, #f99f00);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-left: 50px;
}

.lang-buttons button:hover {
  transform: scale(1.05);
}

.lang-buttons i {
  font-size: 16px;
}

/* Mobile screens */
@media (max-width: 768px) {
  #loader {
    display: flex;
    justify-content: center;
    /* Horizontally center */
    align-items: center;
    /* Vertically center */
    height: 100vh;
    width: 100vw;
  }

  #loader img {
    max-width: 80%;
    /* Adjust for mobile */
    margin: 0 auto;
    /* Center horizontally */
    display: block;
    /* Ensure it's treated as a block-level element */
  }

  .dropbtn,
  .submenu-btn {
    margin-right: 129px;
  }

  .lang-buttons {
    margin: left 50px !important;
  }
}

/* .dropbtn, .submenu-btn {
  background: none;
  border: none;
  color: gold;
  /* font-weight: bold; */
/* padding: 10px 15px;
  cursor: pointer;
  font-family: inherit;
  color: gold;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}  */
/* 
.dropdown, .dropdown-submenu {
  position: relative;
  display: inline-block;
}

.dropdown-content,
.submenu {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.95);
  min-width: 160px;
  z-index: 1;
  border-radius: 5px;
  margin-top: 5px;
}

.dropdown-content a,
.submenu a {
  color: gold;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
}

.dropdown-content a:hover,
.submenu a:hover {
  background-color: rgba(255, 255, 0, 0.2);
}

.submenu {
  left: 100%;
  top: 0;
} */


/* Button styling for MEDIA and Gallery */
.dropbtn,
.submenu-btn {
  background: none;
  border: none;
  color: gold;
  padding: 10px 15px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  margin-left: 40px;
  text-decoration: none;
}

/* Container positioning */
.dropdown,
.dropdown-submenu {
  position: relative;
  display: inline-block;
}

/* Dropdown content box */
.dropdown-content,
.submenu {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.95);
  min-width: 160px;
  z-index: 1;
  border-radius: 5px;
  margin-top: 5px;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
  /* subtle gold shadow */
}

/* Dropdown links */
.dropdown-content a,
.submenu a {
  color: gold;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  font-size: 14px;
}

/* Hover effect */
.dropdown-content a:hover,
.submenu a:hover {
  background-color: rgba(255, 255, 0, 0.2);
}

/* Position submenu to the right of Gallery */
.submenu {
  left: 100%;
  top: 0;
  margin-left: 1px;
}


  .navbar-gold {
    background-color: rgba(0, 0, 0, 0); /* Transparent Gold */
    backdrop-filter: blur(5px);
  }

  .navbar-gold .nav-link,
  .navbar-gold .navbar-brand,
  .navbar-gold .dropdown-item,
  .navbar-gold .dropdown-toggle,
  .navbar-gold button {
    color: gold !important; /* Black text for contrast */
  }

  .navbar-gold .nav-link:hover,
  .navbar-gold .dropdown-item:hover {
    color:gold !important;
  }

  .navbar-gold .dropdown-menu {
    background-color: rgba(78, 78, 78, 0);
  }

  .rtl-nav .nav-link {
  direction: rtl;
  text-align: right;
}

.ltr-nav .nav-link {
  direction: ltr;
  text-align: left;
}
