@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Noto+Kufi+Arabic:wght@100..900&family=Orbitron:wght@400..900&display=swap");
@import url("https://owlcarousel2.github.io/OwlCarousel2/assets/owlcarousel/assets/owl.carousel.min.css");
@import url("https://owlcarousel2.github.io/OwlCarousel2/assets/owlcarousel/assets/owl.theme.default.min.css");
:root {
  --ink: #0b2f47;
  --navy: #104263;
  --blue: #3582bb;
  --teal: #27a7a2;
  --mist: #eaf4f6;
  --white: #ffffff;
}

* {
  font-family: "Google Sans Flex", sans-serif;
}

html {
  scroll-behavior: smooth;
}

p {
  font-size: 1rem;
  margin-bottom: 1.125rem;
  text-align: justify;
  color: #2e2e2e;
}
p b {
  color: #0094ff;
  font-weight: 600;
}

h2 {
  font-size: 2.1875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pulse-divider {
  max-width: 200px;
  margin: 0 auto clamp(18px, 2.6vw, 28px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
}

.pulse-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.32;
  transition: background 0.4s ease;
}

.pulse-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  animation: blip 2.6s ease-in-out infinite;
}

.pulse-icon {
  width: 17px;
  height: 17px;
}

.pulse-path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}

@keyframes blip {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.pulse-bpm {
  margin-top: 5px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pulse-divider.active .pulse-bpm {
  opacity: 1;
}

.pulse-divider.active .pulse-icon-wrap {
  animation-duration: 0.7s;
}

.pulse-divider.active .pulse-path {
  stroke: var(--teal);
}

.pulse-divider.active .divider-line {
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .pulse-icon-wrap {
    animation: none;
    opacity: 0.8;
  }
}
section {
  overflow: hidden;
}

header {
  width: 100%;
  z-index: 9;
  position: sticky;
  top: 0;
  left: 0;
  background: #ffffff;
}
header .navbar {
  padding-bottom: 0;
}
header .navbar .collapse {
  background: #124166;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: url("../images/close.png");
  background-size: 70%;
}

.navbar-brand img {
  width: 10rem;
}
@media (max-width: 480px) {
  .navbar-brand img {
    width: 7rem;
  }
}

/* Corner Circuit Decorator (Matching user screenshot) */
.circuit-overlay {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.circuit-overlay.top-left {
  top: 70px;
  left: 0;
  width: 320px;
  height: 180px;
  opacity: 0.85;
}

.circuit-overlay.bottom-left {
  bottom: -40px;
  left: 0;
  width: 320px;
  height: 160px;
  opacity: 0.85;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.btn {
  transition: 0.3s all;
  margin-left: 0.25rem;
  position: relative;
  font-weight: 600;
  z-index: 5;
  font-size: 1rem;
  padding: 0;
}
.btn span {
  border-radius: 50px;
  padding: 15px 38px;
  /*background: linear-gradient(45deg, #124166, #0a66c2);*/
  /*color: #ffffff;*/
  background: #3784BB;
    color: #ffffff;
  display: block;
  width: 100%;
}
.btn:hover span {
  background: #ffffff;
    color: #104263;
  /*background: linear-gradient(45deg, #0a66c2, #124166);*/
  /*color: #ffffff;*/
}
.btn::after, .btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  z-index: -1;
  /*background: linear-gradient(var(--angle), #0a66c2, #00366d, #44a1ff);
  animation: rotate 5s linear infinite;*/
}
.btn-span-new {
    background: white !important;
    color: #104263 !important;
}

.btn-span-new:hover {
    background: #3784BB !important;
    color: #ffffff !important;
}

.btn-span-new-border:hover {
   border: 1px solid #104263;
}
.btn::after {
  filter: blur(5px);
}
@keyframes rotate {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}
@media (max-width: 840px) {
  .btn {
    margin-bottom: 0.75rem;
  }
}

.btn-section {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 840px) {
  .btn-section {
    display: block;
  }
}

.sponcer-img {
  width: 200px;
}
@media (max-width: 480px) {
  .sponcer-img {
    width: 150px;
  }
}

.nav-link {
  font-family: "Orbitron", sans-serif;
  font-family: "Google Sans Flex", sans-serif;
  color: #ffffff;
  font-size: 0.97rem;
  padding: 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffffff;
}

.navbar-nav .dropdown-menu {
  background-color: #124166;
}
.navbar-nav .dropdown-menu .dropdown-item {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4901960784);
  position: relative;
  transition: 0.3s all;
}
.navbar-nav .dropdown-menu .dropdown-item::before {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid #ffffff;
  position: absolute;
  left: 2px;
  top: 10px;
  display: none;
}
.navbar-nav .dropdown-menu .dropdown-item:focus, .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: #124166;
  padding-left: 1.25rem;
}
.navbar-nav .dropdown-menu .dropdown-item:focus::before, .navbar-nav .dropdown-menu .dropdown-item:hover::before {
  display: block;
  border-left: 0.3em solid #124166;
}

marquee {
  background-color: rgba(41, 126, 194, 0.4784313725);
  color: #fff;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
}

h1 {
  font-family: "Noto Kufi Arabic", sans-serif;
  color: #fff;
}
h1 span {
  color: #23ad9e;
}

h4 {
  font-size: 1.25rem;
  color: #fff;
}

.info {
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
}
.info h5 {
  font-size: 1.25rem;
  color: #ffffff;
}
.info i {
  color: #23ad9e;
  font-size: 1.5rem;
  display: block;
}
@media (max-width: 480px) {
  .info {
    gap: 0rem;
    flex-wrap: wrap;
  }
  .info h5 {
    width: 100%;
  }
}

.bg-canvas-layer {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

/* 3D DNA Canvas Background Layer */
.hero-dna-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#dnaCanvas {
  position: absolute;
  transform: translate(300px, 10px) rotate(45deg);
  display: block;
  opacity: 0.85;
  z-index: -1;
}
@media (max-width: 480px) {
  #dnaCanvas {
    transform: translate(-350px, 10px) rotate(45deg);
  }
}

.dna-bg-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */
.hero-banner {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.hero-banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hero-banner .container {
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 4;
}
.hero-banner .container h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .hero-banner .container h1 {
    font-size: 1.5rem;
  }
}
.hero-banner .container a {
  text-decoration: none;
  color: #ffffff;
}
.hero-banner .container .breadcrumb-item + .breadcrumb-item::before,
.hero-banner .container .breadcrumb-item.active {
  color: #ffffff;
}

.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #bd6a6a, rgba(29, 93, 146, 0.5490196078)), url(../images/home_banner.png) 100%/100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.hero-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: linear-gradient(90deg, #124166 48%, transparent 100%);
  z-index: 0;
  top: 0;
  left: 0;
}
.hero-bg .container {
  position: absolute;
  z-index: 3;
  width: 950px;
  height: 600px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .hero-bg .container {
    width: 100%;
    height: 885px;
  }
}
.hero-bg .container h1 {
  font-size: 3.25rem;
}
@media (max-width: 480px) {
  .hero-bg .container h1 {
    font-size: 2.25rem;
  }
}

#particles-js {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 530px;
}
@media (max-width: 480px) {
  #particles-js {
    height: 800px;
  }
}

/* ---- stats.js ---- */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #23ad9e;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

.countdown-section h5 {
  color: #23ad9e;
  font-size: 1rem;
}
.countdown-section .countdown-wrapper {
  display: flex;
  justify-content: start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .countdown-section .countdown-wrapper {
    justify-content: space-evenly;
    gap: 10px;
  }
}
.countdown-section .count-box {
  width: 130px;
  height: 100px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1607843137);
  color: #fff;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.countdown-section .count-box span {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.countdown-section .count-box small {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .countdown-section .count-box {
    width: 80px;
    height: 80px;
  }
  .countdown-section .count-box span {
    font-size: 22px;
  }
  .countdown-section .count-box small {
    font-size: 10px;
  }
}

.counter-section {
  margin: 50px 0;
  z-index: 3;
  position: relative;
}
.counter-section .row {
  overflow: hidden;
  background: white;
  border-radius: 20px;
  --bs-gutter-x: 0 !important;
  border: 4px solid #0094ff;
}
.counter-section .row .col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 840px) {
  .counter-section .row .col {
    border-right: 0;
  }
}
.counter-section .row .col .countCard {
  display: flex;
  align-items: center;
  color: #297ec2;
  perspective: 1000px;
  height: 220px;
  width: 100%;
}
@media (max-width: 480px) {
  .counter-section .row .col .countCard {
    width: 180px;
    height: 220px;
  }
}
.counter-section .row .col .countCard .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}
.counter-section .row .col .countCard:hover .card-inner {
  transform: rotateY(180deg);
}
.counter-section .row .col .countCard .card-front,
.counter-section .row .col .countCard .card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.counter-section .row .col .countCard .card-front {
  background: linear-gradient(135deg, #124166, #23ad9e);
  color: #fff;
}
.counter-section .row .col .countCard .card-front .count-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 15px;
}
.counter-section .row .col .countCard .card-front .count-number h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.counter-section .row .col .countCard .card-front .count-number span {
  font-size: 32px;
  font-weight: 700;
  margin-top: 8px;
  margin-left: 5px;
}
.counter-section .row .col .countCard .card-front h5 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  height: 60px;
}
.counter-section .row .col .countCard .card-back {
  background: #ffffff;
  color: #124166;
  transform: rotateY(180deg);
  border: 2px solid #23ad9e;
}
.counter-section .row .col .countCard .card-back h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.counter-section .row .col .countCard .card-back p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
.counter-section .row .col .countCard h2 {
  font-size: 3.125rem;
  font-weight: 600;
  margin: 0;
}
.counter-section .row .col .countCard span {
  font-size: 3.125rem;
  font-weight: 600;
}
.counter-section .row .col h6 {
  text-align: center;
  font-size: 12px;
  height: 65px;
}
.counter-section .row .col p {
  font-size: 1rem;
  margin-bottom: 1.125rem;
  text-align: center;
}

.about-section {
  padding: 3rem 0;
  position: relative;
  background: linear-gradient(45deg, #124166, #23ad9e, #297ec2);
}
/*.about-section::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: -10px;*/
/*  bottom: 40px;*/
/*  width: 148px;*/
/*  height: 148px;*/
/*  background-image: radial-gradient(#fefefe 2px, transparent 2px);*/
/*  background-size: 12px 12px;*/
/*  transform: rotate(45deg);*/
/*}*/
.about-section img {
  border-radius: 20px;
  box-shadow: 0 0 10px lightcyan;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 840px) {
  .about-section img {
    margin-bottom: 1rem;
  }
}
.about-section h2 {
  color: #fdfdfd;
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.about-section .divider-line {
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}
.about-section .pulse-path {
  stroke: #ffffff;
}
.about-section video {
  background: #148eb8;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.about-section p {
  font-size: 1rem;
  margin-bottom: 1.125rem;
  color: #ffffff;
}
.about-section p b {
  color: #ffffff;
}
.about-section .event-info {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
  margin: 35px 0;
  padding: 28px 35px;
  background: linear-gradient(135deg, rgba(35, 173, 158, 0.12), rgba(18, 65, 102, 0.06));
  border: 1px solid rgba(35, 173, 158, 0.35);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.about-section .event-info::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(35, 173, 158, 0.08);
  top: -120px;
  right: -100px;
}
.about-section .event-info .divider {
  width: 1px;
  align-self: stretch;
  background: rgba(18, 65, 102, 0.15);
}
.about-section .event-info .info-item {
  display: flex;
  align-items: start;
  gap: 18px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.about-section .event-info .info-item .icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #124166;
  color: #fff;
  font-size: 28px;
  flex-shrink: 0;
}
.about-section .event-info .info-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #23ad9e;
}
.about-section .event-info .info-item h5 {
  margin: 0;
  color: #124166;
  font-size: 24px;
  font-weight: 700;
}
.about-section .event-info .info-item small {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: #666;
}
.about-section .hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.about-section .hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s;
}
.about-section .hero-buttons .btn i {
  font-size: 18px;
}
.about-section .hero-buttons .btn-primary {
  background: #23ad9e;
  color: #fff;
}
.about-section .hero-buttons .btn-primary:hover {
  background: #124166;
}
.about-section .hero-buttons .btn-outline {
  background: #fff;
  border: 2px solid #23ad9e;
  color: #124166;
}
.about-section .hero-buttons .btn-outline:hover {
  background: #23ad9e;
  color: #fff;
}
@media (max-width: 991px) {
  .about-section .event-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-section .event-info .divider {
    width: 100%;
    height: 1px;
  }
}
@media (max-width: 576px) {
  .about-section .event-info {
    padding: 25px;
  }
  .about-section .event-info .info-item .icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
  .about-section .event-info .info-item h5 {
    font-size: 20px;
  }
  .about-section .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.registration-fee {
  padding: 3rem 0;
}
.registration-fee h2 {
  font-family: "Orbitron", sans-serif;
  color: #124166;
  margin-bottom: 2rem;
}
.registration-fee .card {
  border: 1px solid #23ad9e;
  color: #124166;
  background: rgba(35, 173, 157, 0.2156862745);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  min-height: 10rem;
  min-width: 10rem;
  position: relative;
}
.registration-fee .card span {
  font-size: 3rem;
  font-weight: 700;
  color: #124166;
}
.registration-fee .card h3 {
  color: #124166;
}

.registration-steps {
  padding: 90px 0;
}
.registration-steps .section-title {
  margin-bottom: 70px;
}
.registration-steps .section-title span {
  display: inline-block;
  color: #124166;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.registration-steps .section-title h2 {
  margin-bottom: 15px;
  color: #124166;
}
.registration-steps .section-title p {
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}
.registration-steps .timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 30px;
}
.registration-steps .timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 7%;
  right: 7%;
  height: 3px;
  background: #d9d9d9;
  z-index: 1;
}
.registration-steps .step {
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: center;
}
.registration-steps .step .step-number {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #124166;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 6px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.registration-steps .step .step-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  height: 90%;
  transition: 0.35s;
}
.registration-steps .step .step-card .step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #124166;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.35s;
}
.registration-steps .step .step-card:hover .step-icon {
  transform: rotateY(180deg);
  background: #23ad9e;
}
.registration-steps .step .step-card:hover {
  transform: translateY(-8px);
}
.registration-steps .step .step-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #124166;
}
.registration-steps .step .step-card p {
  margin-bottom: 15px;
}
.registration-steps .step .step-card ul {
  text-align: left;
  padding-left: 18px;
  margin-bottom: 15px;
}
.registration-steps .step .step-card ul li {
  margin-bottom: 8px;
}
.registration-steps .step .step-card small {
  display: block;
  color: #666;
  line-height: 1.7;
}
.registration-steps .step .step-card .document-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.registration-steps .step .step-card .document-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
}
.registration-steps .step .step-card .document-list li i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 65, 102, 0.08);
  color: #124166;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: 0.3s;
}
.registration-steps .step .step-card .document-list li:hover i {
  background: #124166;
  color: #fff;
  transform: scale(1.08);
}
@media (max-width: 991px) {
  .registration-steps .timeline {
    flex-direction: column;
    gap: 60px;
  }
  .registration-steps .timeline::before {
    width: 3px;
    height: calc(100% - 80px);
    top: 40px;
    left: 35px;
    right: auto;
  }
  .registration-steps .step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 25px;
  }
  .registration-steps .step .step-number {
    margin: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 576px) {
  .registration-steps .step {
    flex-direction: column;
  }
  .registration-steps .step .step-number {
    margin: auto;
  }
  .registration-steps .step .step-card {
    text-align: left;
  }
  .registration-steps .timeline::before {
    display: none;
  }
}

.workshop-filter {
  margin: 60px 0;
}
.workshop-filter h2 {
  color: #124166;
  text-align: center;
}
.workshop-filter h3 {
  text-align: center;
}
.workshop-filter p {
  text-align: center;
  margin-bottom: 2rem;
}
.workshop-filter .filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.workshop-filter .filter-days {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.workshop-filter .day-btn {
  border: 1px solid #dce6f2;
  background: #fff;
  color: #124166;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.workshop-filter .day-btn:hover {
  background: #23ad9e;
  color: #fff;
  border-color: #23ad9e;
}
.workshop-filter .day-btn.active {
  background: #23ad9e;
  color: #fff;
  border-color: #23ad9e;
}
.workshop-filter .search-box {
  flex: 1;
  max-width: 850px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
.workshop-filter .search-box i {
  position: absolute;
  left: 22px;
  font-size: 24px;
  color: #7a8596;
}
.workshop-filter .search-box .bi-x-lg {
  left: auto;
  font-size: 18px;
}
.workshop-filter .search-box input {
  width: 100%;
  height: 58px;
  border-radius: 50px;
  border: 1px solid #cfd9e7;
  padding: 0 170px 0 60px;
  font-size: 20px;
  outline: none;
  transition: 0.3s;
}
.workshop-filter .search-box input:focus {
  border-color: #23ad9e;
  box-shadow: 0 0 0 4px rgba(35, 173, 158, 0.12);
}
.workshop-filter .search-box .clear-search {
  position: absolute;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #eef3f8;
  color: #124166;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.workshop-filter .search-box .clear-search:hover {
  background: #23ad9e;
  color: #fff;
}
.workshop-filter .search-box span {
  position: absolute;
  right: 25px;
  font-weight: 600;
  color: #124166;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .workshop-filter .filter-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .workshop-filter .search-box {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .workshop-filter .day-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  .workshop-filter .search-box input {
    padding-right: 20px;
    padding-left: 50px;
    font-size: 16px;
  }
  .workshop-filter .search-box span {
    position: static;
    margin-left: 10px;
  }
}
.workshop-card {
  background: #fff;
  border-radius: 24px;
  position: relative;
  border: 1px solid #e6edf2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
.workshop-card .workshop-badge {
  position: absolute;
  top: -15px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #23ad9e;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(35, 173, 158, 0.3);
}
.workshop-card .workshop-badge i {
  font-size: 14px;
}
.workshop-card .card-header {
  background: linear-gradient(135deg, #124166, #23ad9e);
  color: #fff;
  padding: 30px 35px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.workshop-card .card-header span {
  display: block;
  opacity: 0.85;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
.workshop-card .card-header h6 {
  margin: 6px 0 0;
  font-size: 24px;
  font-weight: 700;
}
.workshop-card .card-header h3 {
  margin: 6px 0 0;
  font-size: 36px;
  font-weight: 700;
}
.workshop-card .card-body {
  padding: 20px;
  min-height: 930px;
}
.workshop-card .workshop-title {
  color: #124166;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}
.workshop-card .program-description {
  color: #5f6875;
  line-height: 1.9;
  margin-bottom: 35px;
}
.workshop-card .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
.workshop-card .info-item {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #f7fafc;
  padding: 18px;
  border-radius: 14px;
}
.workshop-card .info-item i {
  font-size: 28px;
  color: #23ad9e;
}
.workshop-card .info-item span {
  display: block;
  font-size: 13px;
  color: #7b8794;
  text-transform: uppercase;
}
.workshop-card .info-item strong {
  color: #124166;
  font-size: 16px;
}
.workshop-card .detail-box {
  background: #fbfcfd;
  padding: 0 20px;
  border-radius: 14px;
}
.workshop-card .detail-box h5 {
  color: #124166;
  margin-bottom: 18px;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}
.workshop-card .detail-box i {
  color: #23ad9e;
}
.workshop-card .detail-box ul {
  padding-left: 20px;
  margin: 0;
}
.workshop-card .detail-box ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}
.workshop-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.workshop-card .tags span {
  background: #eaf8f6;
  color: #124166;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 991px) {
  .workshop-card .card-body {
    padding: 30px;
  }
  .workshop-card .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .workshop-card .card-header {
    padding: 25px;
    text-align: center;
  }
  .workshop-card .workshop-title {
    font-size: 28px;
  }
  .workshop-card .info-grid {
    grid-template-columns: 1fr;
  }
  .workshop-card .card-body {
    padding: 25px;
  }
}
.international-delegates {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.international-delegates .section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #124166;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.international-delegates h2 {
  margin-bottom: 25px;
  max-width: 650px;
  color: #124166;
}
.international-delegates h3 {
  color: #124166;
}
.international-delegates .section-desc {
  margin-bottom: 40px;
  font-size: 18px;
}
.international-delegates .delegate-card {
  display: flex;
  gap: 22px;
  padding: 28px;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
}
.international-delegates .delegate-card:hover {
  transform: translateY(-8px);
}
.international-delegates .delegate-card:hover .icon {
  background: #124166;
  color: #fff;
}
.international-delegates .delegate-card .icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #eef5fb;
  color: #124166;
  font-size: 30px;
  transition: 0.35s;
  position: relative;
}
.international-delegates .delegate-card h4 {
  color: #124166;
  margin-bottom: 10px;
}
.international-delegates .delegate-card p {
  margin: 0;
}
.international-delegates .btn-visit {
  margin-top: 10px;
  padding: 14px 30px;
  border-radius: 40px;
  background: #23ad9e;
  color: #fff;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.international-delegates .btn-visit:hover {
  background: #124166;
  color: #fff;
}
.international-delegates .world-area {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.international-delegates .world-map {
  width: 100%;
  border-radius: 20px;
}
.international-delegates .icon {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #124166;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  font-size: 28px;
}
.international-delegates .passport {
  top: 80px;
  left: 80px;
}
.international-delegates .visa {
  top: 120px;
  right: 80px;
}
.international-delegates .plane {
  left: 100px;
  bottom: 120px;
}
.international-delegates .globe {
  right: 120px;
  bottom: 80px;
}
.international-delegates .flight-path {
  position: absolute;
  width: 340px;
  height: 180px;
  border-top: 3px dashed #23ad9e;
  border-radius: 50%;
  top: 180px;
  left: 120px;
  transform: rotate(-15deg);
}
.international-delegates .oman-pin {
  position: absolute;
  top: 48%;
  left: 60%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.international-delegates .oman-pin i {
  font-size: 44px;
  color: #23ad9e;
}
.international-delegates .oman-pin span {
  display: block;
  font-weight: 600;
  margin-top: 8px;
}
.international-delegates .oman-pin span a {
  text-decoration: none;
  color: #124166;
}
@media (max-width: 991px) {
  .international-delegates .world-area {
    height: 450px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .international-delegates {
    padding: 70px 0;
  }
  .international-delegates .delegate-card {
    flex-direction: column;
    text-align: center;
  }
  .international-delegates .delegate-card .icon {
    margin: auto;
  }
  .international-delegates .world-area {
    display: none;
  }
}

.group-registration {
  padding: 40px 0;
}
.group-registration .group-card {
  position: relative;
  overflow: hidden;
  padding: 60px;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e9ecef;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.group-registration .group-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(35, 173, 158, 0.07);
  top: -100px;
  right: -80px;
}
.group-registration .group-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(18, 65, 102, 0.05);
  bottom: -90px;
  left: -70px;
}
.group-registration .group-card > * {
  position: relative;
  z-index: 2;
}
.group-registration .group-card h2 {
  margin-bottom: 25px;
  color: #124166;
}
.group-registration .group-card p {
  max-width: 760px;
  margin: 25px auto 40px;
  color: #555;
  line-height: 1.9;
}
.group-registration .group-card p strong {
  color: #124166;
}
.group-registration .group-card .group-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 40px;
  background: #124166;
  color: #fff;
  font-weight: 600;
}
.group-registration .group-card .group-badge i {
  font-size: 20px;
}
.group-registration .group-card .group-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.group-registration .group-card .group-features .feature {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f8fb;
  transition: 0.35s;
}
.group-registration .group-card .group-features .feature i {
  font-size: 28px;
  color: #124166;
}
.group-registration .group-card .group-features .feature:hover {
  background: #124166;
  transform: translateY(-6px);
}
.group-registration .group-card .group-features .feature:hover i {
  color: #fff;
}
.group-registration .group-card .btn {
  padding: 15px 38px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .group-registration .group-card {
    padding: 45px 30px;
  }
  .group-registration .group-card h2 {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .group-registration .group-card {
    padding: 35px 20px;
  }
  .group-registration .group-card h2 {
    font-size: 28px;
  }
  .group-registration .group-card .group-features {
    gap: 15px;
  }
  .group-registration .group-card .group-features .feature {
    width: 60px;
    height: 60px;
  }
  .group-registration .group-card .group-features .feature i {
    font-size: 24px;
  }
  .group-registration .group-card .btn {
    width: 100%;
    justify-content: center;
  }
}

ul {
  list-style-image: url("../images/checked.png");
}
ul li {
  margin-bottom: 5px;
}
ul li b {
  color: #124166;
}

.column-count {
  -moz-column-count: 2;
       column-count: 2;
}
.column-count li {
  margin-bottom: 1rem;
}
@media (max-width: 840px) {
  .column-count {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.programme-glance {
  padding: 80px 0;
}
.programme-glance img {
  width: 100%;
  border-radius: 20px;
}
.programme-glance .section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #124166;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.programme-glance h2 {
  font-size: 42px;
  font-weight: 700;
  color: #124166;
  margin-bottom: 20px;
}
.programme-glance p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}
.programme-glance .programme-info {
  margin-top: 35px;
  display: flex;
  gap: 2rem;
}
@media (max-width: 480px) {
  .programme-glance .programme-info {
    display: block;
  }
}
.programme-glance .programme-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}
.programme-glance .programme-info .info-item i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fb;
  border-radius: 50%;
  color: #124166;
  font-size: 22px;
}
.programme-glance .programme-info .info-item h6 {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #124166;
}
.programme-glance .programme-info .info-item span {
  color: #555;
  line-height: 1.7;
}
.programme-glance .programme-highlights {
  margin-top: 90px;
}
.programme-glance .programme-highlights .highlight-card {
  height: 100%;
  padding: 35px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8edf3;
  transition: 0.35s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.programme-glance .programme-highlights .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.programme-glance .programme-highlights .highlight-card i {
  width: 65px;
  height: 65px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124166;
  color: #fff;
  font-size: 28px;
}
.programme-glance .programme-highlights .highlight-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #124166;
  margin-bottom: 15px;
}
.programme-glance .programme-highlights .highlight-card p {
  margin-bottom: 15px;
}
.programme-glance .programme-highlights .highlight-card small {
  display: block;
  color: #888;
  font-style: italic;
}
@media (max-width: 991px) {
  .programme-glance h2 {
    font-size: 34px;
  }
  .programme-glance img {
    margin-top: 40px;
  }
  .programme-glance .programme-highlights {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .programme-glance {
    padding: 60px 0;
  }
  .programme-glance h2 {
    font-size: 28px;
  }
  .programme-glance .programme-highlights .highlight-card {
    padding: 25px;
  }
  .programme-glance .programme-highlights .highlight-card h4 {
    font-size: 20px;
  }
}

.programme-schedule {
  padding: 80px 0;
  background: #f8fafc;
}
.programme-schedule .section-heading {
  max-width: 850px;
  margin: 0 auto 60px;
}
.programme-schedule .section-heading .section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #124166;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.programme-schedule .section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #124166;
  margin-bottom: 20px;
}
.programme-schedule .section-heading p {
  color: #555;
  line-height: 1.9;
}
.programme-schedule .schedule-timeline {
  position: relative;
  max-width: 950px;
  margin: auto;
}
.programme-schedule .schedule-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 180px;
  width: 2px;
  background: #d8e1ea;
}
.programme-schedule .schedule-timeline .timeline-item {
  position: relative;
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
.programme-schedule .schedule-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.programme-schedule .schedule-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: 172px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #124166;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px #124166;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-date {
  width: 160px;
  text-align: right;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-date span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #124166;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-date small {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 14px;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-content {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.programme-schedule .schedule-timeline .timeline-item .timeline-content h4 {
  color: #124166;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-content p {
  margin: 0;
  color: #555;
  line-height: 1.8;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-content ul {
  margin: 0;
  padding-left: 20px;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-content ul li {
  margin-bottom: 10px;
  color: #555;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-content ul li:last-child {
  margin-bottom: 0;
}
.programme-schedule .schedule-timeline .timeline-item .timeline-content ul li::marker {
  color: #124166;
}
@media (max-width: 991px) {
  .programme-schedule .section-heading h2 {
    font-size: 34px;
  }
  .programme-schedule .schedule-timeline::before {
    left: 25px;
  }
  .programme-schedule .schedule-timeline .timeline-item {
    padding-left: 55px;
    display: block;
  }
  .programme-schedule .schedule-timeline .timeline-item::before {
    left: 17px;
  }
  .programme-schedule .schedule-timeline .timeline-item .timeline-date {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .programme-schedule {
    padding: 60px 0;
  }
  .programme-schedule .section-heading h2 {
    font-size: 28px;
  }
  .programme-schedule .schedule-timeline .timeline-item .timeline-content {
    padding: 22px;
  }
  .programme-schedule .schedule-timeline .timeline-item .timeline-content h4 {
    font-size: 20px;
  }
}

.scientific-tracks {
  padding: 0 80px 0;
}
.scientific-tracks .section-heading {
  max-width: 850px;
  margin: 0 auto 50px;
}
.scientific-tracks .section-heading .section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #124166;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.scientific-tracks .section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #124166;
  margin-bottom: 20px;
}
.scientific-tracks .section-heading h4 {
  color: #23ad9e;
  margin-bottom: 20px;
}
.scientific-tracks .section-heading p {
  color: #555;
  line-height: 1.9;
}
.scientific-tracks .track-item {
  text-decoration: none;
}
.scientific-tracks .track-search {
  max-width: 500px;
  margin: 0 auto 50px;
}
.scientific-tracks .track-search input {
  height: 58px;
  border-radius: 50px;
  padding: 0 25px;
}
.scientific-tracks .track-card {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 18px;
  transition: 0.35s;
  cursor: pointer;
}
.scientific-tracks .track-card:hover {
  transform: translateY(-8px);
  border-color: #124166;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.scientific-tracks .track-card i {
  font-size: 40px;
  color: #124166;
  margin-bottom: 20px;
}
.scientific-tracks .track-card h5 {
  margin: 0;
  color: #124166;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}
.scientific-tracks .expect-section {
  margin-top: 90px;
}
.scientific-tracks .expect-section .expect-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  background: #fff;
}
.scientific-tracks .expect-section .expect-card i {
  font-size: 28px;
  color: #124166;
}
.scientific-tracks .expect-section .expect-card h5 {
  margin: 0;
  color: #124166;
  font-size: 20px;
  font-weight: 600;
}
.scientific-tracks .audience-section {
  margin-top: 90px;
}
@media (max-width: 991px) {
  .scientific-tracks .section-heading h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .scientific-tracks {
    padding: 60px 0;
  }
  .scientific-tracks .section-heading h2 {
    font-size: 28px;
  }
  .scientific-tracks .track-card {
    padding: 25px 20px;
  }
  .scientific-tracks .track-card i {
    font-size: 32px;
  }
  .scientific-tracks .track-card h5 {
    font-size: 18px;
  }
  .scientific-tracks .expect-section,
  .scientific-tracks .audience-section {
    margin-top: 60px;
  }
}

.track-overview {
  padding: 80px 0;
}
.track-overview .overview-card {
  height: 100%;
  padding: 40px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.track-overview .overview-card .section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #124166;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.track-overview .overview-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: #124166;
  margin-bottom: 20px;
}
.track-overview .overview-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}
.track-overview .overview-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.track-overview .overview-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 500;
  color: #444;
}
.track-overview .overview-list li i {
  color: #124166;
  font-size: 18px;
}
.track-overview .audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.track-overview .audience-grid .audience-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  transition: 0.3s;
}
.track-overview .audience-grid .audience-item:hover {
  background: #124166;
  color: #fff;
}
.track-overview .audience-grid .audience-item:hover i {
  color: #fff;
}
.track-overview .audience-grid .audience-item i {
  font-size: 22px;
  color: #124166;
}
.track-overview .audience-grid .audience-item span {
  font-weight: 600;
}
@media (max-width: 991px) {
  .track-overview {
    padding: 60px 0;
  }
  .track-overview .overview-card {
    padding: 30px;
  }
  .track-overview .overview-card h2 {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .track-overview .audience-grid {
    grid-template-columns: 1fr;
  }
  .track-overview .overview-card {
    padding: 25px;
  }
  .track-overview .overview-card h2 {
    font-size: 24px;
  }
}

.call-for-papers {
  padding: 0 80px 0;
}
.call-for-papers img {
  width: 100%;
  border-radius: 20px;
}
.call-for-papers .section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #124166;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.call-for-papers h2 {
  font-size: 24px;
  font-weight: 700;
  color: #124166;
  margin-bottom: 20px;
}
.call-for-papers p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}
.call-for-papers .why-submit,
.call-for-papers .important-dates {
  margin-top: 90px;
}
.call-for-papers .section-heading {
  margin-bottom: 45px;
}
.call-for-papers .submit-card {
  height: 100%;
  padding: 20px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  transition: 0.35s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.call-for-papers .submit-card:hover {
  transform: translateY(-8px);
  border-color: #124166;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.call-for-papers .submit-card i {
  font-size: 42px;
  color: #124166;
  margin-bottom: 20px;
}
.call-for-papers .submit-card h5 {
  color: #124166;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.call-for-papers .submit-card p {
  margin: 0;
}
.call-for-papers .date-card {
  position: relative;
  height: 100%;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  transition: 0.3s;
}
.call-for-papers .date-card:hover {
  transform: translateY(-6px);
  border-color: #124166;
}
.call-for-papers .date-card .date {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 18px;
  background: #124166;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}
.call-for-papers .date-card h5 {
  margin: 0;
  color: #124166;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .call-for-papers h2 {
    font-size: 34px;
  }
  .call-for-papers img {
    margin-top: 30px;
  }
  .call-for-papers .why-submit,
  .call-for-papers .important-dates {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .call-for-papers {
    padding: 60px 0;
  }
  .call-for-papers h2 {
    font-size: 28px;
  }
  .call-for-papers .submit-card,
  .call-for-papers .date-card {
    padding: 25px;
  }
}

.submission-categories {
  padding: 3rem 0;
}
.submission-categories h2 {
  color: #124166;
  text-align: center;
  margin-bottom: 2rem;
}
.submission-categories .track-tabs {
  border: 1px solid #e8edf3;
  border-radius: 15px;
  overflow: hidden;
  max-height: 700px;
  overflow-y: auto;
}
.submission-categories .track-tabs .nav-link {
  text-align: left;
  padding: 18px 22px;
  border-radius: 0;
  color: #124166;
  border-bottom: 1px solid #edf2f7;
  font-weight: 600;
  transition: 0.3s;
}
.submission-categories .track-tabs .nav-link:hover {
  background: #f7fafc;
}
.submission-categories .track-tabs .nav-link.active {
  background: #124166;
  color: #fff;
}
.submission-categories .track-content {
  padding: 35px;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  min-height: 600px;
}
.submission-categories .track-content h3 {
  color: #124166;
  margin-bottom: 30px;
}
.submission-categories .track-content .content-block {
  margin-bottom: 35px;
}
.submission-categories .track-content .content-block:last-child {
  margin-bottom: 0;
}
.submission-categories .track-content .content-block h5 {
  margin-bottom: 15px;
  color: #124166;
  font-weight: 700;
}
.submission-categories .track-content .content-block p {
  line-height: 1.8;
}
.submission-categories .track-content .content-block ul {
  padding-left: 20px;
}
.submission-categories .track-content .content-block ul li {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .submission-categories .track-tabs {
    margin-bottom: 30px;
    max-height: 350px;
  }
  .submission-categories .track-content {
    min-height: auto;
  }
}

.submission-guidelines {
  padding: 80px 0;
  background: #f8fafc;
}
.submission-guidelines .section-heading {
  max-width: 850px;
  margin: 0 auto 60px;
}
.submission-guidelines .section-heading .section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #124166;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.submission-guidelines .section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #124166;
  margin-bottom: 20px;
}
.submission-guidelines .section-heading p {
  line-height: 1.9;
  color: #555;
}
.submission-guidelines .guideline-card,
.submission-guidelines .presentation-wrapper {
  height: 100%;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.submission-guidelines .guideline-card h3,
.submission-guidelines .presentation-wrapper h3 {
  color: #124166;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
.submission-guidelines .guideline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.submission-guidelines .guideline-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  line-height: 1.8;
}
.submission-guidelines .guideline-list li:last-child {
  margin-bottom: 0;
}
.submission-guidelines .guideline-list li i {
  color: #124166;
  font-size: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}
.submission-guidelines .presentation-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  border: 1px solid #edf2f7;
  border-radius: 15px;
  transition: 0.35s;
}
.submission-guidelines .presentation-card:not(:last-child) {
  margin-bottom: 20px;
}
.submission-guidelines .presentation-card:hover {
  border-color: #124166;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.submission-guidelines .presentation-card .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124166;
  flex-shrink: 0;
}
.submission-guidelines .presentation-card .icon i {
  color: #fff;
  font-size: 28px;
}
.submission-guidelines .presentation-card h4 {
  color: #124166;
  font-size: 22px;
  margin-bottom: 10px;
}
.submission-guidelines .presentation-card p {
  margin: 0;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 991px) {
  .submission-guidelines {
    padding: 70px 0;
  }
  .submission-guidelines .guideline-card,
  .submission-guidelines .presentation-wrapper {
    padding: 30px;
  }
  .submission-guidelines .section-heading h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .submission-guidelines {
    padding: 60px 0;
  }
  .submission-guidelines .section-heading {
    margin-bottom: 40px;
  }
  .submission-guidelines .section-heading h2 {
    font-size: 28px;
  }
  .submission-guidelines .presentation-card {
    flex-direction: column;
  }
  .submission-guidelines .presentation-card .icon {
    width: 60px;
    height: 60px;
  }
}

.why-attend {
  padding: 3rem 0;
  position: relative;
}
.why-attend h2 {
  color: #124166;
  text-align: center;
  font-weight: 700;
}
.why-attend .card {
  height: 100%;
  padding: 35px;
  background: linear-gradient(180deg, #2b8ccc, #124166);
  border-radius: 18px;
  border: 1px solid #e8edf3;
  transition: 0.35s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.why-attend .card .card-body {
  padding: 0;
}
.why-attend .card .card-body p {
  margin-bottom: 0;
  color: #ffffff;
}
.why-attend .card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  background: #124166;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}
.why-attend .card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
}
@media (max-width: 840px) {
  .why-attend .card {
    min-height: auto;
  }
}

.feature {
  padding: 3rem 0 6rem;
  background: linear-gradient(45deg, #124166, #0265ab);
  text-align: center;
  position: relative;
}
.feature:after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 40px;
  width: 148px;
  height: 148px;
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
  background-size: 12px 12px;
  transform: rotate(45deg);
}
.feature::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 40px;
  width: 148px;
  height: 148px;
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
  background-size: 12px 12px;
  transform: rotate(45deg);
  opacity: 0.5;
}
.feature marquee {
  background: transparent;
}
.feature h2 {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}
.feature .divider-line {
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}
.feature .pulse-path {
  stroke: #ffffff;
}
.feature p {
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}
.feature span {
  font-weight: 700;
}
.feature .badge {
  width: 100%;
  margin: auto;
  font-size: 1rem;
  color: #ffffff;
  background: #297ec2;
  border: 1px solid #ffffff;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: 0.3s all;
  font-weight: 600;
}
.feature .badge:hover {
  transform: scale(105%);
  background: #124166;
}
@media (max-width: 840px) {
  .feature .badge {
    margin-left: 0;
    width: 100%;
  }
}
.feature .btn {
  width: auto;
  margin: 3rem auto 0;
}
@media (max-width: 840px) {
  .feature {
    text-align: center;
  }
}

.registrtaion {
  padding: 5rem 0;
  position: relative;
}
.registrtaion h2 {
  color: #124166;
}
.registrtaion .form {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(35, 173, 157, 0.2196078431);
  padding: 1rem;
  border-radius: 20px;
}
.registrtaion .form .form-control {
  border-radius: 20px;
}
.registrtaion p {
  text-align: center;
  margin-bottom: 3rem;
}
.registrtaion .btn {
  width: 100%;
}

.partner {
  background: linear-gradient(45deg, #124166, #23ad9e, #297ec2);
  padding: 3rem 0;
  text-align: center;
}
.partner h2 {
  color: #ffffff;
}
.partner .divider-line {
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}
.partner .pulse-path {
  stroke: #ffffff;
}
.partner p {
  color: #ffffff;
  text-align: center;
}

footer {
  background: #124166;
  padding: 3rem 0 1px;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  position: relative;
}
footer img {
  width: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
footer .links-heading {
  border-bottom: 1px solid white;
  width: -moz-fit-content;
  width: fit-content;
}
footer .nav-link {
  padding-left: 0;
  color: #ffffff;
}
footer a {
  text-decoration: none;
  color: #ffffff;
}
footer p {
  color: #ffffff;
  font-weight: 400;
}
footer .bootom-strip {
  border-top: 1px solid #fff;
}
footer .bootom-strip p {
  text-align: center;
  margin-top: 1.125rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  transition: all 0.35s ease;
}

.social-icon:hover {
  transform: translateY(-6px);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Brand Colors */
.facebook {
  background: #1877f2;
}

.twitter {
  background: #000000;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.linkedin {
  background: #0a66c2;
}

.youtube {
  background: #ff0000;
}

.navbar-expand-lg {
  flex-wrap: wrap;
  justify-content: flex-start;
}

#cursor {
  position: fixed;
  width: 30px;
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform: 0.5s all;
  z-index: 9999;
}

.about-congress-theme .card {
  min-height: 17rem;
}
@media (max-width: 840px) {
  .about-congress-theme .card {
    min-height: auto;
  }
}

.reasons-to-attend {
  background: #124166;
  padding: 3rem 0;
}
.reasons-to-attend h2 {
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}
.reasons-to-attend .card {
  border: 1px solid #23ad9e;
  background: rgba(35, 173, 157, 0.2156862745);
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  min-height: 8rem;
  min-width: 10rem;
  position: relative;
}
.reasons-to-attend .card span {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.reasons-to-attend .card h4 {
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
}

.leadership {
  padding: 3rem 0;
  background: linear-gradient(45deg, #124166, #23ad9e, #0a66c2);
  scroll-margin-top: 100px;
}
.leadership h2 {
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}
.leadership .card {
  padding: 1.5rem;
  border-color: rgba(18, 66, 102, 0);
  box-shadow: 0 0 10px #124166;
  background: rgba(18, 65, 102, 0.2);
  color: #ffffff;
  margin-bottom: 1rem;
}
.leadership .card img {
  width: 200px;
  background: white;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: auto;
  border-radius: 20px;
  margin-bottom: 1rem;
  float: left;
  margin-right: 1rem;
}
@media (max-width: 480px) {
  .leadership .card img {
    width: 100%;
  }
}
.leadership .card span {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-bottom: 1rem;
}
.leadership .card .quote {
  position: relative;
  display: inline-block;
  padding: 0 25px;
}
.leadership .card .quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 50px;
  color: #124166;
}
.leadership .card .quote::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: -40px;
  font-size: 50px;
  color: #124166;
}
.leadership .card .btn {
  width: -moz-fit-content;
  width: fit-content;
}
.leadership .card i {
  font-size: 0.75rem;
}

.modal-title {
  color: #124166;
}

.rh-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.royal-hospital-section {
  padding: 3rem 0;
}
.royal-hospital-section .section-tagline {
  margin-bottom: 0;
}
.royal-hospital-section h2 {
  color: #124166;
  margin-bottom: 2rem;
  text-align: center;
}
.royal-hospital-section .rh-stat-card {
  background: rgba(35, 173, 157, 0.3333333333);
  backdrop-filter: blur(20px);
  color: #124166;
  border-radius: 20px;
  width: 250px;
  height: 130px;
  padding: 1rem;
}
.royal-hospital-section .rh-stat-card .stat-icon i {
  font-size: 1.5rem;
}
.royal-hospital-section .rh-stat-card .stat-info h3 {
  margin-bottom: 0;
  font-weight: 700;
}
.royal-hospital-section .rh-feature-badge-section {
  background: rgba(18, 66, 102, 0.8549019608);
  color: #ffffff;
  padding: 1rem;
  border-radius: 20px;
  margin-top: 1rem;
}
.royal-hospital-section .rh-feature-badge-section .rh-feature-badge {
  margin-bottom: 0.5rem;
}
.royal-hospital-section .rh-feature-badge-section .rh-feature-badge i {
  margin-right: 0.5rem;
}

.three-pillers {
  padding: 100px 0;
}
.three-pillers h2 {
  text-align: center;
  font-weight: 700;
  color: #124166;
  margin: 15px auto 60px;
}
.three-pillers .nav-tabs {
  border: 0;
  margin-bottom: 40px;
}
.three-pillers .nav-tabs .nav-item {
  flex: 1;
  max-width: 390px;
}
.three-pillers .nav-tabs .nav-link {
  position: relative;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  font-size: 28px;
  color: #fff;
  transition: 0.35s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.three-pillers .nav-tabs .nav-link h5 {
  text-transform: uppercase;
}
.three-pillers .nav-tabs .nav-link:hover {
  transform: translateY(-6px);
}
.three-pillers .nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 26px;
  height: 26px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
.three-pillers .nav-tabs .nav-link.active {
  color: #fff;
  border: none;
}
.three-pillers .nav-tabs .nav-link.active::after {
  opacity: 1;
  z-index: -1;
}
.three-pillers .nav-tabs .tab-1 {
  background: linear-gradient(135deg, #14835d, #22b287);
}
.three-pillers .nav-tabs .tab-2 {
  background: linear-gradient(135deg, #183454, #22476b);
}
.three-pillers .nav-tabs .tab-3 {
  background: linear-gradient(135deg, #148eb8, #25abd1);
}
.three-pillers .tab-content .tab-pane {
  position: relative;
  padding: 70px;
  border-radius: 25px;
  background: #fff !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.three-pillers .tab-content .tab-pane img {
  width: 100%;
  margin: auto;
  display: block;
}
.three-pillers .tab-content .tab-pane h4 {
  color: #124166;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}
.three-pillers .tab-content .tab-pane p {
  line-height: 1.9;
  color: #505050;
  max-width: 700px;
}
.three-pillers .tab-content .tab-pane::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(35, 173, 158, 0.08);
}
.three-pillers .tab-content .tab-pane::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#bfeff3 2px, transparent 2px);
  background-size: 12px 12px;
}
.three-pillers .tab-icon {
  width: 65px;
  height: 65px;
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.three-pillers .tab-icon i {
  font-size: 30px;
  color: #fff;
}
.three-pillers .tab-text {
  text-align: left;
}
.three-pillers .tab-text h5 {
  margin: 0;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.three-pillers .tab-text span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}
@media (max-width: 991px) {
  .three-pillers h2 {
    font-size: 42px;
  }
  .three-pillers .nav-tabs .nav-item {
    max-width: 100%;
  }
  .three-pillers .nav-tabs .nav-link {
    min-height: 90px;
    font-size: 22px;
  }
  .three-pillers .nav-tabs .nav-link::after {
    display: none;
  }
  .three-pillers .tab-content .tab-pane {
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .three-pillers {
    padding: 70px 0;
  }
  .three-pillers h2 {
    font-size: 34px;
  }
  .three-pillers .nav-tabs .nav-link {
    min-height: 75px;
    font-size: 18px;
  }
  .three-pillers .tab-content .tab-pane {
    padding: 30px 20px;
  }
  .three-pillers .tab-content .tab-pane h4 {
    font-size: 28px;
  }
  .three-pillers .tab-content .tab-pane p {
    font-size: 16px;
  }
}

.inspired {
  padding: 3rem 0;
}
.inspired h2 {
  color: #124166;
  margin-bottom: 2rem;
}
.inspired .image-gallery {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 20px;
}
.inspired .image-gallery:hover .card {
  opacity: 0.6;
}
.inspired .image-gallery .card {
  position: relative;
  width: 180px;
  height: 420px;
  margin-left: -35px;
  overflow: hidden;
  cursor: pointer;
  /* Slanted shape */
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  transition: 0.5s;
}
.inspired .image-gallery .card:hover {
  width: 260px;
  opacity: 1;
  z-index: 5;
}
.inspired .image-gallery .card:hoverimg {
  transform: scale(1.08);
}
.inspired .image-gallery .card:first-child {
  margin-left: 0;
}
.inspired .image-gallery .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
.inspired .image-gallery .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.15), transparent);
}

.experience {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6745098039), rgba(24, 118, 242, 0.3176470588)), url("../images/oman-about.jpg");
  background-size: 100%;
  background-position: left center;
  height: 500px;
  position: relative;
  color: white;
}
.experience span {
  font-family: "Noto Kufi Arabic", sans-serif;
}
.experience h2 {
  color: #124166;
}
.experience .right-section {
  position: absolute;
  right: 0;
  top: 20%;
  background: rgba(35, 173, 158, 0.5803921569);
  backdrop-filter: blur(30px);
  padding: 2rem;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media (max-width: 840px) {
  .experience .right-section {
    position: relative;
    border-radius: 20px;
  }
}

.thread {
  padding: 3rem 0;
  background: #124166;
  color: #23ad9e;
}
.thread h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 2rem;
}
.thread p {
  color: #dbd6d6;
}

.registration-includes {
  padding: 80px 0 0;
}
.registration-includes .section-heading {
  max-width: 850px;
  margin: 0 auto 60px;
}
.registration-includes .section-heading .section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #124166;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.registration-includes .section-heading h2 {
  font-weight: 700;
  color: #124166;
  margin-bottom: 20px;
}
.registration-includes .section-heading p {
  color: #555;
  line-height: 1.8;
}
.registration-includes .include-card {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  transition: 0.35s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.registration-includes .include-card:hover {
  transform: translateY(-8px);
  border-color: #124166;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.registration-includes .include-card:hover .icon {
  background: #124166;
}
.registration-includes .include-card:hover .icon i {
  color: #fff;
}
.registration-includes .include-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf5fb;
  transition: 0.35s;
}
.registration-includes .include-card .icon i {
  font-size: 34px;
  color: #124166;
  transition: 0.35s;
}
.registration-includes .include-card h5 {
  color: #124166;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.registration-includes .registration-note {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: #124166;
  border-radius: 20px;
}
.registration-includes .registration-note .note-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.registration-includes .registration-note .note-icon i {
  color: #fff;
  font-size: 30px;
}
.registration-includes .registration-note h5 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 24px;
}
.registration-includes .registration-note p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .registration-includes .section-heading h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .registration-includes {
    padding: 60px 0;
  }
  .registration-includes .section-heading {
    margin-bottom: 40px;
  }
  .registration-includes .section-heading h2 {
    font-size: 28px;
  }
  .registration-includes .include-card {
    padding: 25px 20px;
  }
  .registration-includes .include-card .icon {
    width: 70px;
    height: 70px;
  }
  .registration-includes .include-card .icon i {
    font-size: 30px;
  }
  .registration-includes .include-card h5 {
    font-size: 18px;
  }
  .registration-includes .registration-note {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
}

.registration-pricing {
  padding: 90px 0;
  background: #f7fcfc;
}
.registration-pricing .price-card {
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid #d9ece9;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.registration-pricing .price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-color: #23ad9e;
}
.registration-pricing .price-card:hover .icon {
  transform: rotate(-10deg) scale(1.08);
  background: #23ad9e;
}
.registration-pricing .price-card:hover .icon i {
  color: #fff;
}
.registration-pricing .price-card:hover .btn-register {
  background: #23ad9e;
  color: #fff;
}
.registration-pricing .price-card::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(35, 173, 158, 0.06);
}
.registration-pricing .featured {
  border: 2px solid #23ad9e;
}
.registration-pricing .badge {
  position: absolute;
  right: 25px;
  top: 25px;
  background: #23ad9e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
}
.registration-pricing .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.registration-pricing .icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  background: #edf9f7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.registration-pricing .icon i {
  font-size: 34px;
  color: #23ad9e;
}
.registration-pricing .price {
  text-align: right;
}
.registration-pricing .price .currency {
  display: block;
  font-size: 15px;
  color: #777;
  letter-spacing: 1px;
}
.registration-pricing .price h3 {
  font-size: 56px;
  color: #124166;
  margin: 0;
  font-weight: 700;
}
.registration-pricing h4 {
  font-size: 30px;
  color: #124166;
}
.registration-pricing ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.registration-pricing ul li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.registration-pricing ul li i {
  color: #23ad9e;
  margin-right: 10px;
}
.registration-pricing .btn-register {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 52px;
  border-radius: 50px;
  background: #edf9f7;
  color: #124166;
  text-decoration: none;
  font-weight: 600;
  transition: 0.35s;
}
@media (max-width: 991px) {
  .registration-pricing .price-card {
    padding: 30px;
  }
  .registration-pricing h4 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .registration-pricing {
    padding: 70px 0;
  }
  .registration-pricing .price h3 {
    font-size: 46px;
  }
  .registration-pricing .icon {
    width: 65px;
    height: 65px;
  }
}

.workshop-registration-section {
  padding: 40px 0 0;
}
.workshop-registration-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(35, 173, 158, 0.12);
  color: #23ad9e;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.workshop-registration-section .section-tag i {
  font-size: 16px;
}
.workshop-registration-section h2 {
  font-weight: 700;
  color: #124166;
  margin-bottom: 15px;
}
.workshop-registration-section h4 {
  color: #23ad9e;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 600;
}
.workshop-registration-section .lead-text {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.workshop-registration-section p {
  color: #666;
  line-height: 1.9;
}
.workshop-registration-section .action-buttons {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.workshop-registration-section .action-buttons .btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
}
.workshop-registration-section .registration-note {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid #e7edf4;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.workshop-registration-section .registration-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #23ad9e, #124166);
}
.workshop-registration-section .registration-note .card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  background: none;
  border: none;
  padding: 0;
}
.workshop-registration-section .registration-note .card-header .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(35, 173, 158, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.workshop-registration-section .registration-note .card-header .icon i {
  font-size: 28px;
  color: #23ad9e;
}
.workshop-registration-section .registration-note .card-header h5 {
  margin-bottom: 5px;
  font-size: 26px;
  color: #124166;
  font-weight: 700;
}
.workshop-registration-section .registration-note .card-header p {
  margin: 0;
  color: #777;
}
.workshop-registration-section .registration-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.workshop-registration-section .registration-note ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid #eef3f7;
  color: #555;
  line-height: 1.7;
}
.workshop-registration-section .registration-note ul li:last-child {
  border-bottom: none;
}
.workshop-registration-section .registration-note ul li i {
  color: #23ad9e;
  font-size: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .workshop-registration-section {
    padding: 70px 0;
  }
  .workshop-registration-section h2 {
    font-size: 40px;
  }
  .workshop-registration-section h4 {
    font-size: 24px;
  }
  .workshop-registration-section .registration-note {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .workshop-registration-section h2 {
    font-size: 32px;
  }
  .workshop-registration-section h4 {
    font-size: 20px;
  }
  .workshop-registration-section .lead-text {
    font-size: 17px;
  }
  .workshop-registration-section .action-buttons .btn {
    width: 100%;
  }
  .workshop-registration-section .registration-note {
    padding: 25px;
  }
}

.meet-luban {
  padding: 3rem 0;
}
.meet-luban h2 {
  color: #124166;
}
.meet-luban h3 {
  color: #23ad9e;
  margin-bottom: 2rem;
}
.meet-luban img {
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
  animation: upDown 3s linear infinite;
}
@keyframes upDown {
  0% {
    transform: translate(10px, 10px);
  }
  50% {
    transform: translate(20px, 20px);
  }
  100% {
    transform: translate(10px, 10px);
  }
}

.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #124166, #23ad9e);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(18, 65, 102, 0.25);
}
.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(18, 65, 102, 0.35);
}
.scroll-top:hover i {
  transform: translateY(-3px);
}
.scroll-top i {
  transition: transform 0.3s ease;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 576px) {
  .scroll-top {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */