:root {
  --primary-dark: #0b0c10;
  --accent-gold: #d4af37;
  --accent-blue: #00a3ff;
  --text-main: #ffffff;
  --text-dim: #bbbbbb;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-serif: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --bento-gap: 20px;
}

/* * {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
} */

.fa,
.fas,
.far,
.fal,
.fab,
.fad,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-duotone {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  speak: never;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fab {
  font-family: 'Font Awesome 6 Brands' !important;
  font-weight: 400 !important;
}

.fa-solid {
  font-weight: 900 !important;
}

.footer__three-widget-location-item-icon i,
.footer__three-widget-hour-social i,
.btn-seven i,
.download-btn i,
.program-points i {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
}

/* Fix for brand icons */
.fab.fa-facebook-f,
.fab.fa-linkedin,
.fab.fa-youtube,
.fab.fa-instagram {
  font-family: 'Font Awesome 6 Brands' !important;
  font-weight: 400 !important;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--accent-gold);
  z-index: 99999;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--primary-dark);
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: var(--font-serif);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.glow-text {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.glow-border {
  box-shadow: 0 0 30px rgba(0, 163, 255, 0.2);
}

.hover-slide-up {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.hover-slide-up:hover {
  transform: translateY(-10px);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;

  z-index: 999999 !important;
}

@keyframes colorTransition {
  0% {
    filter: grayscale(100%);
  }

  100% {
    filter: grayscale(0%);
  }
}

body.loaded #loader {
  display: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.hero-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #000;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-content-container {
  position: relative;
  z-index: 2;
}

.hero-text-content {
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: none !important;
}

.line-reveal {
  overflow: hidden;
  display: block;
}

.text-accent-gold {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 650px;
  line-height: 1.6;
}

/* Floating Cards */
.hero-floating-cards {
  position: absolute;
  right: 5%;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 99;
  pointer-events: auto;
}

@media (max-width: 1200px) {
  .hero-floating-cards {
    right: 2%;
  }

  .floating-glass-card {
    width: 160px;
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .hero-floating-cards {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    width: 100%;
    z-index: 5;
  }

  .floating-glass-card {
    width: 150px;
    padding: 15px;
  }

  .floating-glass-card i {
    font-size: 1.5rem !important;
  }
}

.floating-glass-card {
  padding: 30px;
  width: 200px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-glass-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.mouse {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  position: relative;
}

.mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--accent-gold);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
  0% {
    opacity: 1;
    top: 10px;
  }

  100% {
    opacity: 0;
    top: 28px;
  }
}

@media (max-width: 991px) {
  .hero-fullscreen {
    text-align: center;
    justify-content: center;
    padding-top: 60px;
  }

  .hero-overlay {
    background: radial-gradient(
      circle,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

  .hero-cta-group {
    justify-content: center;
  }
}

/* ----------------------------------------  */
/* overview section..................  */

#overview.content-section {
  background-color: var(--primary-dark);
  padding: 100px 0;
  overflow: hidden;
}

.overview-card.luxury-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 100px;
  align-items: center;
  background: transparent !important;
}

.overview-image-composition {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-wrapper-top,
.img-wrapper-bottom {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.img-wrapper-top img,
.img-wrapper-bottom img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.floating-accent-box {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  background: #0a213a;
  padding: 50px 30px;
  z-index: 10;
  min-width: 280px;
  text-align: center;
  border: 10px solid #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-accent-box h3 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.3;
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
}

.overview-details h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.overview-details {
  padding-left: 20px;
}

.overview-lead {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 500;
}

.read-more-wrapper {
  position: relative;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-bottom: 20px;
}

.read-more-wrapper:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(transparent, var(--primary-dark));
  pointer-events: none;
}

.read-more-wrapper.expanded {
  max-height: 1000px;
}

.overview-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.overview-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.overview-feature-item p {
  font-size: 0.95rem;
  color: #999;
}

@media (max-width: 1200px) {
  .floating-accent-box {
    left: 90%;
  }
}

@media (max-width: 991px) {
  .overview-card.luxury-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .overview-image-composition {
    padding-right: 0;
  }

  .floating-accent-box {
    left: 50%;
    top: 50%;
    min-width: 240px;
    padding: 40px 20px;
  }

  .overview-details {
    text-align: center;
  }
}

.read-more-link {
  background: none;
  border: none;
  color: #406aff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 30px;
  display: block;
  transition: 0.3s;
}

.read-more-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* --- Stats Bar --- */
.stats-bar {
  background: #000;
  padding: 60px 0;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

.stat-icon {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 15px;
}

@media (max-width: 991px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

.program-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s,
    box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.badge-duration {
  background: var(--accent-gold) !important;
  color: #0b0c10 !important;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  font-weight: 700;
}

.program-points li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.program-points i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent-gold);
}

.section-title {
  font-family: var(--font-serif);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 0.8rem auto 0;
}

.image-stack {
  position: relative;
  height: 450px;
}

.main-img-wrapper img {
  width: 80%;
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.sub-img-wrapper {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 50%;
  z-index: 2;
}

.sub-img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 30px;

  border: 10px solid #0b0c10;
}

#overview .section-title {
  font-size: 3rem;
  margin-bottom: 30px;
}

.luxury-badge-glass {
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 20px;
  border-radius: 15px;
  color: var(--accent-gold);
  text-align: center;
  position: absolute;
  top: 10%;
  right: 15%;
  z-index: 3;
}

.luxury-badge-glass .number {
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.luxury-badge-glass .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.design-features {
  padding: 100px 0;
  background-color: #0b0c10;
}

.feature-glass-card {
  padding: 40px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-glass-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.feature-glass-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.feature-glass-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.read-more-wrapper {
  position: relative;
  max-height: 130px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.read-more-wrapper:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;

  background: linear-gradient(transparent, #0b0c10);
  pointer-events: none;
}

.read-more-wrapper.expanded {
  max-height: 1000px;
}

.read-more-btn {
  background: transparent;
  border: none;
  color: #406aff;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 20px;
  font-size: 1rem;
  transition: 0.3s;
}

.read-more-btn:hover {
  text-decoration: underline;
  letter-spacing: 0.5px;
}

/* --- Buttons --- */
.btn-quote {
  display: inline-block;
  background: #005a54;
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 90, 84, 0.3);
}

@media (max-width: 1199px) {
  .overview-card.luxury-layout {
    gap: 40px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .top-nav-bar {
    padding: 10px 0;
  }

  .tab-item {
    padding: 10px 15px;
    margin: 0 3px;
    font-size: 0.9rem;
  }

  .overview-card.luxury-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-stack {
    height: 450px;
    margin: 20px 0 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .main-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .main-img-wrapper img {
    width: 95%;
    height: 350px;
  }

  .sub-img-wrapper {
    right: 2%;
    width: 55%;
  }

  .sub-img-wrapper img {
    height: 250px;
    border-width: 10px;
  }

  .experience-badge {
    right: 8%;
    padding: 18px;
  }

  .experience-badge .number {
    font-size: 2rem;
  }

  .experience-badge .label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  #overview .overview-card .overview-text p {
    text-align: center;
  }

  .read-more-btn {
    display: block;
    margin: 20px auto 0;
  }

  #overview.content-section {
    margin-top: 15px !important;
  }
}

@media (max-width: 767px) {
  .top-nav-bar {
    flex-wrap: wrap;
    padding: 5px !important;
  }

  .tab-item {
    flex: 0 0 calc(50% - 10px);
    margin: 5px;
    padding: 8px 5px !important;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
  }

  .tab-item.active {
    background: #ffcc00;
    color: #111 !important;
  }

  .image-stack {
    height: 400px;
    width: 100%;
  }

  .main-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .main-img-wrapper img {
    width: 98%;
    height: 300px;
  }

  .sub-img-wrapper {
    right: 2%;
    width: 58%;
  }

  .sub-img-wrapper img {
    height: 220px;
    border-width: 8px;
  }

  .experience-badge {
    top: 8%;
    right: 5%;
    padding: 15px;
  }

  .experience-badge .number {
    font-size: 1.8rem;
  }

  .experience-badge .label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  #overview.content-section {
    padding: 0 10px !important;
    margin-top: 10px !important;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  .top-nav-bar {
    padding: 5px !important;
  }

  .tab-item {
    flex: 0 0 calc(50% - 8px);
    margin: 4px;
    padding: 6px 3px !important;
    font-size: 12px;
  }

  .image-stack {
    height: 450px;
    width: 100%;
  }

  .main-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .main-img-wrapper img {
    width: 100%;
    height: 320px;
    border-radius: 25px;
  }

  .sub-img-wrapper {
    right: 2%;
    width: 60%;
  }

  .sub-img-wrapper img {
    height: 250px;
    border-width: 7px;
    border-radius: 25px;
  }

  .experience-badge {
    padding: 14px;
    right: 3%;
    top: 5%;
  }

  .experience-badge .number {
    font-size: 1.8rem;
  }

  .experience-badge .label {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }

  #overview .overview-card .overview-text p {
    font-size: 1rem;
  }

  .read-more-wrapper {
    max-height: 150px;
  }

  .read-more-btn {
    font-size: 1rem;
  }

  #overview.content-section {
    margin-top: 5px !important;
    padding: 0 10px !important;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .tab-item {
    font-size: 11px;
    padding: 5px 2px !important;
  }

  .image-stack {
    height: 380px;
    width: 100%;
  }

  .main-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .main-img-wrapper img {
    width: 100%;
    height: 280px;
    border-radius: 20px;
  }

  .sub-img-wrapper {
    right: 2%;
    width: 65%;
  }

  .sub-img-wrapper img {
    height: 200px;
    border-width: 6px;
    border-radius: 20px;
  }

  .experience-badge {
    padding: 12px;
    right: 2%;
  }

  .experience-badge .number {
    font-size: 1.5rem;
  }

  .experience-badge .label {
    font-size: 0.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/*--------------------- ---------------------------------------------------------------------  */

#modules {
  background-color: #0b0c10;
  padding: 100px 8%;
  color: #ffffff;
}

.modules-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.modules-text {
  flex: 1;

  max-width: 50%;
}

.modules-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 35px;
  padding-left: 15px;
  border-left: 5px solid #3b82f6;
}

.curriculum-glass-card .module-list li {
  font-size: 0.9rem;
  padding: 6px 0 6px 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.curriculum-glass-card .module-list li::before {
  content: '▹';
  color: #d4af37;
  left: 0;
}

.curriculum-glass-card i {
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.curriculum-glass-card {
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.curriculum-glass-card:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.module-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 0;
}

.curriculum-glass-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.module-accent-line {
  width: 50px;
  height: 4px;
  background: var(--accent-gold);
  margin-bottom: 20px;
}

.module-list {
  list-style: none;
  padding: 0;
}

.module-list li {
  margin-bottom: 10px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-list li::before {
  content: '→';
  color: var(--accent-gold);
}

.modules-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
  margin-top: 80px;
}

.modules-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .modules-card {
    flex-direction: column !important;
  }

  .modules-text,
  .modules-image {
    max-width: 100%;
    flex: none;
  }

  .modules-image {
    margin-top: 30px;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------  */

#roles {
  background-color: #0b0c10;
  padding: 80px 10%;
  color: #ffffff;
}

/* Title with Blue Accent */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
  color: #ffffff;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background-color: #3b82f6;
}

.roles-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  background-color: #121418;
  border-radius: 20px;
  padding: 40px;
  gap: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 30px;
}

.roles-image {
  flex: 0 0 35%;
  max-width: 35%;
}

.roles-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.roles-text {
  flex: 1;
}

.roles-text ul {
  list-style: none;
  padding: 0;
}

.roles-text li {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.roles-text li::before {
  content: '•';
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.roles-text strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 991px) {
  .roles-card {
    flex-direction: column !important;
    padding: 20px;
  }

  .roles-image,
  .roles-text {
    max-width: 100%;
    flex: 1;
  }
}

/* -------------------------------------------------------------------  */
/* contents section.........................  */

.section-description {
  max-width: 800px;
  margin-bottom: 50px;
  padding-left: 20px;
  border-left: 3px solid #0077b6;
}

.section-description p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.section-description strong {
  color: #00b4d8;

  font-weight: 600;
}

@media (max-width: 768px) {
  .section-description {
    border-left: none;
    border-top: 1px solid rgba(0, 180, 216, 0.3);
    padding: 20px 0 0 0;
    text-align: center;
    margin-bottom: 30px;
  }
}

.bim-timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 0;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: -20px;
  position: relative;
  width: 100%;
}

.timeline-item.right {
  justify-content: flex-end;
  padding-left: 50px;
}

.timeline-item.left {
  justify-content: flex-start;
  padding-right: 50px;
}

.timeline-content {
  width: 70%;
  padding: 30px;
  border-radius: 50px;

  position: relative;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-item:nth-child(1) .timeline-content {
  background: linear-gradient(90deg, #03045e, #004d80);
}

.timeline-item:nth-child(2) .timeline-content {
  background: linear-gradient(90deg, #0077b6, #0096c7);
}

.timeline-item:nth-child(3) .timeline-content {
  background: linear-gradient(90deg, #03045e, #004d80);
}

.timeline-item:nth-child(4) .timeline-content {
  background: linear-gradient(90deg, #0077b6, #0096c7);
}

.timeline-item:nth-child(5) .timeline-content {
  background: linear-gradient(90deg, #03045e, #004d80);
}

.timeline-item:nth-child(6) .timeline-content {
  background: linear-gradient(90deg, #0077b6, #0096c7);
}

.timeline-item:nth-child(7) .timeline-content {
  background: linear-gradient(90deg, #03045e, #004d80);
}

.timeline-item:nth-child(8) .timeline-content {
  background: linear-gradient(90deg, #0077b6, #0096c7);
}

.timeline-item:nth-child(9) .timeline-content {
  background: linear-gradient(90deg, #03045e, #004d80);
}

.timeline-icon {
  color: #03045e;

  border: 4px solid #90e0ef;
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 4px solid #fff;
  overflow: hidden;
}

.timeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.right .timeline-icon {
  left: calc(30% - 35px);
}

.left .timeline-icon {
  right: calc(30% - 35px);
}

.bim-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 100%;
  border: 2px dashed rgba(255, 255, 255, 0.2);

  transform: translateX(-50%);
  z-index: 0;
}

@media (max-width: 768px) {
  .timeline-item {
    justify-content: center !important;
    padding: 0 !important;
    margin-bottom: 30px;
  }

  .timeline-content {
    width: 90%;
    text-align: center;
  }

  .timeline-icon {
    position: relative;
    top: 0;
    transform: none;
    margin: 0 auto -20px;
    left: auto !important;
    right: auto !important;
  }
}

/* -------------------------------------------------------------------------  */

/* Faq */

.faq-section {
  background-color: #0b0c10;
  padding: 80px 10%;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  text-transform: uppercase;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}

details[open] {
  background: rgba(255, 255, 255, 0.07);
  border-color: #3b82f6;
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 25px 30px;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after,
summary .icon::before,
summary .icon::after {
  content: none !important;
  display: none !important;
}

.icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #3b82f6;
  border-bottom: 2px solid #3b82f6;
  transform: rotate(45deg);

  transition: transform 0.3s ease;
  margin-right: 5px;
  display: inline-block;
}

details[open] .icon {
  transform: rotate(-135deg);
  margin-top: 5px;
}

.answer {
  padding: 0 30px 25px 30px;
  color: #9ca3af;
  line-height: 1.7;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 5%;
  }

  summary {
    padding: 20px;
  }
}

/* -----------------------------------------------------------------  */

#download-training {
  background-color: #0b0c10;
  padding: 100px 5%;
  color: #ffffff;
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.action-card {
  background: linear-gradient(145deg, #161b22 0%, #0d1117 100%);
  border: 1px solid rgba(59, 130, 246, 0.1);

  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.action-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50px;
  bottom: 50px;
  width: 4px;
  background: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
  border-radius: 0 4px 4px 0;
}

.action-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.card-content h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #fff;
}

.card-content p {
  color: #94a3b8;
  line-height: 1.6;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 16px 35px;
  background: #3b82f6;
  color: white !important;
  text-decoration: none !important;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.download-btn:hover {
  background: #2563eb;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
}

.circular-img-wrapper img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(59, 130, 246, 0.3);
  padding: 8px;
  background: #0b0c10;
}

.training-modes {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mode-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.mode-item:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateX(10px);
}

.mode-img {
  width: 50px;
  height: 50px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.mode-item strong {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.mode-item span {
  color: #94a3b8;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    padding: 40px;
  }

  .circular-img-wrapper {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------  */

#gallery {
  background-color: #0b0c10;
  padding: 80px 5%;
  color: #ffffff;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
  align-items: start;
}

.gallery-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background-color: #1a1a1a;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-card img {
    aspect-ratio: auto;
  }
}

/* ------------------------------------------------------------------------------------------------------  */

/*
  certification
*/
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mb-60 {
  margin-bottom: 60px;
}

.text-center {
  text-align: center;
}

.blog-custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-overline {
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.blog-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.section-desc {
  color: #94a3b8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.reward-card {
  background: #121212;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.reward-frame {
  position: relative;
  cursor: pointer;
  background: #000;
}

.cert-horizontal .reward-frame {
  aspect-ratio: 1.5 / 1;
}

.cert-vertical .reward-frame {
  aspect-ratio: 1.2 / 1;
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-vertical {
  max-height: 380px;
  display: flex;
  flex-direction: column;
}

.cert-vertical .reward-info {
  padding: 10px;
}

.reward-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.reward-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 30, 58, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  color: white;
  font-size: 24px;
}

.reward-card:hover .reward-overlay {
  opacity: 1;
}

.reward-info {
  padding: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}

.cert-type {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3b82f6;
}

.modal-lg {
  max-width: 900px;
}

@media (max-width: 768px) {
  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .blog-section-title {
    font-size: 2rem;
  }

  .cert-vertical .reward-frame {
    max-width: 100%;
  }
}

/* ........................................sticky nav..........  */

.top-nav-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b0c10 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;

  margin-bottom: 0 !important;
}

.tab-item {
  text-decoration: none;
  color: #fff;
  padding: 12px 25px;
  margin: 0 5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-block;
}

.tab-item:hover {
  background: rgba(255, 204, 0, 0.1);
  color: #ffcc00;
}

.tab-item.active {
  color: #111 !important;
  background: #ffcc00;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
  border: none;
}

html {
  scroll-behavior: smooth;

  scroll-padding-top: 0;
}

.content-section {
  scroll-margin-top: 70px;
}

/* ---------------------  */
#divisions {
  padding-left: 5%;
}

@media (max-width: 768px) {
  #divisions {
    padding-left: 20px;
  }
}

/* ------------------------------------logos---------------------------  */

/* ----------------------------------------------------------------  */

:root {
  --primary: #00bcd4;
  --primary-border1: #21575f;
  --primary-border2: #1f707a;
  --bg-dark: #121212;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-white: #ffffff;
}

.syllabus-page-container {
  background: var(--bg-dark);
  padding: 60px 5%;
  color: var(--text-white);
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.syllabus-main {
  flex: 3;
  min-width: 0;
}

.sticky-sidebar {
  flex: 1;
  position: sticky;
  top: 200px;
  align-self: flex-start;
}

.timeline-container {
  position: relative;
  padding: 40px 0;
  max-width: 900px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  width: 100%;
  text-align: left;
}

.timeline-item.alt {
  flex-direction: row-reverse;
}

.module-circle {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--primary-border2);
  z-index: 2;
  flex-shrink: 0;
  border: 4px solid var(--primary-border1);
}

.module-circle img {
  width: 80%;
  mix-blend-mode: multiply;
}

.module-content {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  margin: 0 30px;
  border-left: 5px solid var(--primary);
  width: 100%;
  transition: 0.3s;
}

.timeline-item.alt .module-content {
  border-left: none;
  border-right: 5px solid var(--primary);
}

.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.more-content.open {
  max-height: 1000px;
  transition: max-height 1s ease-in;
  margin-top: 15px;
}

.read-more-btn {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more-btn::after {
  content: ' →';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  color: #ffffff;
  text-decoration: underline;
}

.read-more-btn:hover::after {
  transform: translateX(5px);
}

.read-more-btn:focus {
  outline: none;
}

/* FORM CARD */

.apply-form-card {
  width: 100%;
  max-width: 400px;
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  padding: 35px 25px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 188, 212, 0.1);
}

.apply-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 700;
}

.apply-form-card p {
  font-size: 0.85rem;
  color: #aaaaaa;
  margin-bottom: 20px;
}

.apply-form-card input,
.apply-form-card select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.apply-form-card select option {
  background: #222429;
  color: white;
}

.apply-form-card input:focus,
.apply-form-card select:focus {
  border-color: var(--primary-border2);
  background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary-border2);
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }

  .sticky-sidebar {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
}

.submit-btn:hover {
  box-shadow: 0 0 20px var(--primary-border2);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .sticky-sidebar {
    position: relative;
    top: 0;
    margin-top: 40px;
    flex: none;
    width: 100%;
    display: block;
  }

  .apply-form-card {
    max-width: 100%;
  }
}

.module-content h3 {
  font-size: 1.25rem;

  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  margin-top: 0;

  text-align: left;
  letter-spacing: 0.5px;
}

.short-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 12px;
  text-align: justify;
}

.module-content h3 span.module-num {
  color: var(--primary);
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: block;
}

.more-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 5px 0;
  text-align: left;
}

.more-content ul {
  padding: 0 10px 0 5px;
  list-style: none;
}

.more-content li {
  list-style: none !important;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #bbbbbb;
  line-height: 1.4;
  text-align: left;
}

.more-content li::before {
  content: '✔';
  color: var(--primary);
  position: absolute;
  left: 5px;
  top: 0;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
}

.more-content li:hover {
  color: #ffffff;
}

.more-content li:hover {
  color: #ffffff;
}

@media (max-width: 992px) {
  .content-wrapper {
    flex-direction: column;
  }

  .timeline-item,
  .timeline-item.alt {
    flex-direction: column;
    text-align: center;
  }

  .module-content {
    margin: 20px 0;
    border: none !important;
    border-top: 5px solid var(--primary) !important;
  }

  .sticky-sidebar {
    position: relative;
    top: 0;
  }
}

/* -----------------------------------------------------------------------------  */

#syllabusModal .modal-content {
  background-color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-input {
  background-color: #f9fafb !important;
  color: #333333 !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  padding: 12px 15px !important;
  font-size: 0.95rem;
}

.custom-input:focus {
  background-color: #ffffff !important;
  border-color: #0d1e3a !important;
  box-shadow: 0 0 0 3px rgba(13, 30, 58, 0.1) !important;
  outline: none;
}

.btn.btn-submit {
  background: linear-gradient(135deg, #0d1e3a 0%, #030a17 100%) !important;
  font-size: 1rem;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  transition: all 0.3s ease-in-out;
}

.btn.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 30, 58, 0.3);
  opacity: 0.9;
}

.modal-md {
  max-width: 500px;
}

/* toooooooooools..........  */

.tools-section {
  padding: 80px 0;
  background-color: #0b0c10;
}

.tools-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.tool-logo {
  width: 80px;
  height: 80px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tool-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.tool-item span {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.tool-item:hover .tool-logo {
  border-color: #3b82f6;
  background: white;
  transform: scale(1.1);
}

.tool-item:hover span {
  color: #ffffff;
}

.floating {
  animation: float 4s ease-in-out infinite;
}

.floating-delayed {
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .tool-logo {
    width: 70px;
    height: 70px;
  }

  .tools-wrapper {
    gap: 25px;
  }
}

/* ----------------------------  */

h2,
.section-title,
h2.section-title,
.blog-section-title,
.features-section-title,
.faq-header h2,
#hero-title2,
.modules-text h3,
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

@media (max-width: 768px) {
  h2,
  .section-title,
  h2.section-title,
  .blog-section-title,
  .features-section-title,
  .faq-header h2,
  .modules-text h3,
  #roles .section-title,
  #overview .section-title,
  #modules .modules-text h3,
  .blog-header h2 {
    font-size: 1.6rem !important;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  h2,
  .section-title,
  h2.section-title,
  .blog-section-title,
  .features-section-title,
  .faq-header h2,
  .modules-text h3,
  #roles .section-title,
  #overview .section-title,
  #modules .modules-text h3,
  .blog-header h2 {
    font-size: 1.4rem !important;
    line-height: 1.2;
  }
}

@media (max-width: 375px) {
  h2,
  .section-title,
  h2.section-title,
  .blog-section-title,
  .features-section-title,
  .faq-header h2,
  .modules-text h3,
  #roles .section-title,
  #overview .section-title,
  #modules .modules-text h3,
  .blog-header h2 {
    font-size: 1.3rem !important;
  }
}

.why-choose-exact {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
  font-family: var(--font-sans);
}

.why-choose-exact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-choose-exact .main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: left;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: var(--font-serif);
}

.why-choose-circular-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.why-choose-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}

.why-choose-center {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-choose-circle-image {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 8px solid #1a1a1a;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  transition: transform 0.5s ease;
}

.why-choose-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.why-choose-card {
  background-color: #111111;
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid #2a2a2a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.why-choose-card:hover {
  background-color: #1a1a1a;
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.why-choose-card .card-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  opacity: 0.6;
}

.why-choose-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.why-choose-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbbbbb;
  margin: 0;
}

@media (max-width: 1100px) {
  .why-choose-center {
    flex: 0 0 320px;
  }

  .why-choose-circle-image {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 991px) {
  .why-choose-circular-layout {
    flex-direction: column;
    gap: 40px;
  }

  .why-choose-center {
    order: -1;
    flex: none;
  }

  .why-choose-column {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-choose-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 280px;
  }
}

@media (max-width: 650px) {
  .why-choose-column {
    flex-direction: column;
  }

  .why-choose-card {
    flex: none;
    width: 100%;
  }
}

.tools-orb-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.tool-orb {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  position: relative;
}

.tool-orb:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.tool-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
  transition: transform 0.5s;
}

.tool-orb:hover img {
  transform: scale(1.1);
}

@keyframes orbital-1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(15px, -10px) rotate(2deg);
  }

  66% {
    transform: translate(-10px, 15px) rotate(-2deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes orbital-2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(-12px, 18px) rotate(-3deg);
  }

  66% {
    transform: translate(18px, -12px) rotate(3deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes orbital-3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(10px, 10px) rotate(1deg);
  }

  66% {
    transform: translate(-15px, -15px) rotate(-1deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.orbit-1 {
  animation: orbital-1 8s ease-in-out infinite;
}

.orbit-2 {
  animation: orbital-2 10s ease-in-out infinite;
}

.orbit-3 {
  animation: orbital-3 12s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tools-orb-container {
    gap: 20px;
  }

  .tool-orb {
    width: 100px;
    height: 100px;
    padding: 20px;
  }
}
/* ------------------  */

.software-logo {
  height: 40px;
  width: auto;
  max-width: 40px;
  object-fit: contain;

  background-color: transparent;
  display: inline-block;
}

.software-logo[src*='logos1-01'] {
  background-color: transparent;
  mix-blend-mode: multiply;
}

.software-logo:hover {
  transform: scale(1.05);
}

.software-title {
  color: #ffffff !important;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

.curriculum-glass-card .software-title {
  opacity: 1 !important;
  color: #ffffff !important;
}

.curriculum-glass-card .h3.software-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .software-title {
    font-size: 1.8rem;
  }

  .software-logo {
    height: 35px;
  }
}

/* --------------------------------------------  */

.floating-accent-box {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  background: #0a213a;
  padding: 50px 30px;
  z-index: 10;
  min-width: 280px;
  text-align: center;
  border: 10px solid #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-accent-box h3 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.3;
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
}

@media (max-width: 991px) {
  .floating-accent-box {
    left: 50%;
    top: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    min-width: 240px;
    padding: 40px 20px;
    border-width: 8px;
  }

  .floating-accent-box h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .overview-image-composition {
    position: relative;
    margin-bottom: 30px;
  }

  .floating-accent-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 200px;
    padding: 30px 15px;
    border-width: 6px;
  }

  .floating-accent-box h3 {
    font-size: 1.5rem;
  }

  .img-wrapper-top img,
  .img-wrapper-bottom img {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .overview-image-composition {
    position: relative;
    margin-bottom: 25px;
  }

  .floating-accent-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 160px;
    padding: 20px 10px;
    border-width: 4px;
  }

  .floating-accent-box h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .img-wrapper-top img,
  .img-wrapper-bottom img {
    height: 220px;
  }
}

@media (max-width: 375px) {
  .floating-accent-box {
    min-width: 130px;
    padding: 15px 8px;
    border-width: 3px;
  }

  .floating-accent-box h3 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .img-wrapper-top img,
  .img-wrapper-bottom img {
    height: 180px;
  }
}

.overview-image-composition {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.img-wrapper-top,
.img-wrapper-bottom {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.img-wrapper-top img,
.img-wrapper-bottom img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
