/* ==========================================
   Google Fonts
========================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

/* Rest Default Styles */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  scroll-behavior: smooth;
}

/* ==========================================
   Body Styles
========================================== */
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-weight: 400;
  line-height: 1.8;
  color: #4b5563;
  background-color: var(--primary-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ==========================================
   Scrollbar Styles
========================================== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #0b1d37;
}

/* ==========================================
   CSS Variables
========================================== */
:root {
  --primary-color: #0b1d37;
  --light-primry: #385b88;
  --secondary-color: ;
  --primary-bg: #fff;
  --secondary-bg: linear-gradient(
    135deg,
    #fffdf8 0%,
    #fcf3df 40%,
    #f6e7ca 100%
  );
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "Inter", sans-serif;
  --para: #313131;
  --footer-bg: linear-gradient(180deg, #fde0b2, #ffffff, #fdfdfd, #ffc48c);
  --highlight-color: #751414;
}

/* ==========================================
   Headings
========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1rem;
}

/* ==========================================
   Heading Sizes
========================================== */
h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

/* ==========================================
   Paragraph
========================================== */
p {
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--para);
  margin-bottom: 1.25rem;
}

/* ==========================================
   Links
========================================== */
a {
  font-family: var(--body-font);
  text-decoration: none;
  transition: all 0.4s ease;
}

/* ==========================================
   Buttons
========================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  padding: 10px 20px;
  border: 1px solid var(--primary-color);
  background: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #000;
  transition: transform 0.4s ease;
}

/* ==========================================
   Lists
========================================== */
li {
  font-family: var(--body-font);
  line-height: 1.8;
}

/* ==========================================
   Form Elements
========================================== */
input,
textarea,
select,
button {
  font-family: var(--body-font);
}

/* ==========================================
   Navbar
========================================== */
.navbar {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: none;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0;
  font-size: 14px;
  border: none;
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  transform: rotate(0deg);
  transition: transform 0.4s ease;
}
.dropdown-menu {
  border: none;
}

.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.btn:hover {
  color: #fff;
}

.register-now::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.8s ease;
}

.register-now:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Desktop Only */
@media (min-width: 992px) {
  .nav-link {
    position: relative;
    display: inline-block;
  }

  .navbar-nav {
    gap: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-link:not(.dropdown-toggle) {
    position: relative;
  }

  .nav-link:not(.dropdown-toggle):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: width 0.4s ease;
  }

  .nav-link:hover:not(.dropdown-toggle):after {
    width: 100%;
  }

  .nav-link:hover {
    color: #000;
  }

  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s ease;
    pointer-events: none;
  }

  .dropdown-menu.show-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dropdown-toggle:hover::after {
    transform: rotate(180deg);
  }
}

/* ==========================================
   Hero Section
========================================== */

.hero-section {
  width: 100%;
  min-height: 880px;
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/bg-start-frame.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -3;
  will-change: transform;
}

/* Canvas */
#heroParticles,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.hero-title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: 1.05;
  /* background: linear-gradient(
    180deg,
    #5b769b 0%,
    #2d4d77 22%,
    #0b1d37 48%,
    #3b5f8d 72%,
    #0b1d37 100%
  ); */
  background: var(--primary-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  filter: drop-shadow(0 2px 8px rgba(11, 29, 55, 0.18));
}
.date-and-venue-grid {
  display: grid;
  grid-template-columns: auto 2px 1fr;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.date,
.venue {
  text-align: start;
  color: var(--highlight-color);
  font-weight: 600;
  font-size: clamp(1rem, 1vw + 0.75rem, 1.375rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.date > span:first-child {
  display: block;
  text-align: end;
}

.vertical-line {
  width: 2px;
  height: 100%;
  /* background: linear-gradient(
    180deg,
    #5b769b 0%,
    #2d4d77 22%,
    #0b1d37 48%,
    #3b5f8d 72%,
    #0b1d37 100%
  ); */
  background: var(--primary-color);
}

#cta-1 {
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1);
  transition: transform 0.4s ease;
}

#cta-1:hover {
  transform: scale(1.1);
}

/* ------ Countdown --------- */
.count-down-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 1rem;
}
.count-down-item {
  padding: 10px;
  border-radius: 5px;
  display: flex;
  gap: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top: 5px solid var(--highlight-color);
  background-color: #fff;
}

.count-down-item span:first-child {
  font-weight: 900;
  font-size: 40px;
  color: var(--primary-color);
  line-height: 1;
}

.count-down-item span:last-child {
  font-weight: 600;
  color: var(--highlight-color);
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Mouse */
.mouse {
  width: 34px;
  height: 56px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  position: relative;
  display: flex;
  justify-content: center;
  /* backdrop-filter: blur(8px); */
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 20px;
  margin-top: 8px;
  animation: mouseWheel 2s infinite;
}

/* Text */
.scroll-text {
  color: var(--primary-color);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  animation: textFloat 2s ease-in-out infinite;
}

/* Mouse Wheel Animation */
@keyframes mouseWheel {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* Text Animation */
@keyframes textFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ---------- Tablet ---------- */
@media (max-width: 991.98px) {
  .date-and-venue-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    justify-items: center;
    text-align: center;
  }

  .vertical-line {
    width: 100%;
    height: 2px;
  }

  .date,
  .venue {
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
  }

  .date > span:first-child {
    display: block;
    text-align: center;
  }

  .scroll-down {
    bottom: 24px;
  }

  .count-down-grid {
    grid-template-columns: repeat(4, minmax(100px, 1fr));
  }

  .mouse {
    width: 30px;
    height: 48px;
  }

  .scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 575.98px) {
  .date-and-venue-grid {
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .date,
  .venue {
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }

  .count-down-grid {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}

/* ==========================================
   About Section
========================================== */
.section-padding-y-100 {
  padding: 100px 0;
}

.left-50 {
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.section-title {
  display: inline-flex;
  align-items: center;
  color: var(--highlight-color);
  font-weight: 600;
  gap: 0;
}

.section-title::before {
  content: "";
  width: 100px;
  height: 2px;
  background: var(--highlight-color);
  margin-left: 12px;
  order: 2;
}

.section-title::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--highlight-color);
  border-radius: 50%;
  margin-left: 0;
  order: 3;
}

.about-esmo {
  /* background-color: var(--secondary-bg); */
  min-height: 500px;
}

.sectio-heading {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-color);
}

.text-justify {
  text-align: justify;
}

.sectio-heading {
  overflow: hidden;
}

.sectio-heading span {
  display: inline-block;
  transform: translateY(100%);
}

.about-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: auto;
}

.about-rotate-shape {
  position: absolute;
  width: 38%;
  top: -8%;
  right: -8%;
  z-index: 0;

  animation: rotateShape 20s linear infinite;
}

.about-image-desc {
  position: absolute;
  width: 78%;
  height: 88%;
  left: -10%;
  top: 8%;
  background: var(--light-primry);
  border-radius: 24px;
  transform: rotate(-8deg);
  z-index: 1;
}

.h-about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  position: relative;
  z-index: 2;
}

@keyframes rotateShape {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .about-rotate-shape {
    width: 32%;
    top: -5%;
    right: -5%;
  }
}

/* ==========================================
   Highlights Section
========================================== */
.highlights-section {
  background: var(--secondary-bg);
  min-height: 400px;
  background:
    radial-gradient(circle at top, rgba(255, 210, 120, 0.22), transparent 45%),
    linear-gradient(
      180deg,
      rgba(255, 249, 240, 0.92),
      rgba(247, 231, 197, 0.92),
      rgba(239, 208, 156, 0.92)
    ),
    url("../images/desc-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.highlights-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 1rem;
}

/* Card Positions */
#highlights-item-1 {
  grid-column: span 2;
  transform: translateY(-20px);
  animation: floatUp 5s ease-in-out infinite;
}

#highlights-item-2 {
  grid-column: span 2;
  transform: translateY(20px);
  animation: floatDown 5s ease-in-out infinite 0.8s;
}

#highlights-item-3 {
  grid-column: span 2;
  transform: translateY(-20px);
  animation: floatUp 5s ease-in-out infinite 1.4s;
}

#highlights-item-4 {
  grid-column: span 2;
  transform: translateY(20px);
  animation: floatDown 5s ease-in-out infinite 2s;
}

/* Card */
.highlights-item {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 20px;

  padding: 20px;
  border-radius: 5px;

  background: var(--primary-bg);
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s,
    background-color 0.45s;
}

.highlights-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Left Accent Line */
.highlights-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #d89a45, #ffcf76);
  transition: height 0.45s ease;
}

.highlights-item:hover::before {
  height: 100%;
}

/* Icon */
.highlights-item-icon {
  width: 70px;
  height: 70px;

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
  background: var(--primary-color);

  transition:
    transform 0.45s,
    background 0.45s;
}

.highlights-item-icon::after {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 110%;
  height: 110%;

  border-radius: 50%;
  border: 1px dashed var(--primary-color);

  transition: transform 0.45s;
}

.highlights-item:hover .highlights-item-icon {
  transform: rotate(-8deg) scale(1.08);
  background: #17386b;
}

.highlights-item:hover .highlights-item-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.highlights-item-icon img {
  filter: brightness(0) invert(1);
  transition: transform 0.45s;
}

.highlights-item:hover .highlights-item-icon img {
  transform: scale(1.15);
}

/* Content */
.highlights-item-content span:first-child {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  color: #000;

  transition:
    color 0.4s,
    transform 0.4s;
}

.highlights-item-content span:last-child {
  color: var(--para);
}

.highlights-item:hover .highlights-item-content span:first-child {
  color: var(--primary-color);
  transform: scale(1.08);
}

/* ==========================================
   Floating Animations
========================================== */

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-28px);
  }
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(12px);
  }
}
/* ==========================================
   Responsive
========================================== */

/* Large Tablets */
@media (max-width: 991px) {
  .highlights-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #highlights-item-1,
  #highlights-item-2,
  #highlights-item-3,
  #highlights-item-4 {
    grid-column: span 1;
    transform: translateY(0);
    animation: floatMobile 5s ease-in-out infinite;
  }

  #highlights-item-2 {
    animation-delay: 0.6s;
  }

  #highlights-item-3 {
    animation-delay: 1.2s;
  }

  #highlights-item-4 {
    animation-delay: 1.8s;
  }

  .highlights-item {
    padding: 18px;
    gap: 16px;
  }

  .highlights-item-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
  }

  .highlights-item-content span:first-child {
    font-size: 34px;
  }
}

/* Tablets */
@media (max-width: 767px) {
  .highlights-items {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .highlights-item {
    padding: 18px;
    gap: 16px;
    align-items: center;
  }

  .highlights-item-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .highlights-item-content span:first-child {
    font-size: 32px;
  }

  .highlights-item-content span:last-child {
    font-size: 15px;
    line-height: 1.5;
  }

  .highlights-item:hover {
    transform: translateY(-5px);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .highlights-section {
    padding: 70px 0;
  }

  .highlights-items {
    gap: 15px;
  }

  .highlights-item {
    padding: 16px;
    gap: 14px;
    border-radius: 10px;
  }

  .highlights-item-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }

  .highlights-item-icon img {
    width: 28px;
    height: 28px;
  }

  .highlights-item-content span:first-child {
    font-size: 28px;
  }

  .highlights-item-content span:last-child {
    display: block;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Small Mobile */
@media (max-width: 380px) {
  .highlights-item {
    padding: 14px;
    gap: 12px;
  }

  .highlights-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .highlights-item-icon img {
    width: 24px;
    height: 24px;
  }

  .highlights-item-content span:first-child {
    font-size: 24px;
  }

  .highlights-item-content span:last-child {
    font-size: 13px;
  }
}

/* Mobile Floating Animation */
@keyframes floatMobile {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/*====================================================
                SPEAKER CARD
====================================================*/

.landing-v2-speaker-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px 35px;
}

/*--------------------------------------------------*/

.landing-v2-single-speaker {
  position: relative;

  padding: 30px 20px;

  text-align: center;

  border-radius: 24px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.8);

  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.05);
}

.landing-v2-single-speaker:hover {
  transform: translateY(-12px);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 45px 80px rgba(0, 0, 0, 0.12);
}

/* GOLD SHIMMER */

.landing-v2-single-speaker::before {
  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 60%;
  height: 100%;

  transform: skewX(-25deg);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
}

.landing-v2-single-speaker:hover::before {
  animation: shine 1.1s;
}

@keyframes shine {
  100% {
    left: 180%;
  }
}

/*====================================================
                    IMAGE
====================================================*/

.landing-v2-speaker-thumb {
  width: 190px;

  margin: auto;

  position: relative;

  padding: 14px;

  animation: floating 5s ease-in-out infinite;
}

.thumb {
  overflow: hidden;

  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);

  position: relative;
}

.thumb img {
  width: 100%;
  display: block;
  transition: 0.6s;
}

/* .landing-v2-single-speaker:hover .thumb img{

    transform:scale(1.12);

} */

/*====================================================
                SVG BORDER
====================================================*/

.shape-1 {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: 0.6s;
}

.shape-1 img {
  width: 100%;
}

.landing-v2-single-speaker:hover .shape-1 {
  transform: rotate(10deg) scale(1.05);
}

/* GOLD GLOW */

.shape-1::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(rgba(212, 162, 67, 0.25), transparent 70%);

  filter: blur(20px);
  opacity: 0;
  transition: 0.5s;
}

.landing-v2-single-speaker:hover .shape-1::after {
  opacity: 1;
}

/*====================================================
            DECORATION
====================================================*/

.shape-2 {
  position: absolute;
  top: 30px;
  right: -18px;
  opacity: 0;
  transform: translate(-20px, 20px);
  transition: 0.45s;
  z-index: -1;
}

.shape-3 {
  position: absolute;
  left: -12px;
  bottom: 48px;
  opacity: 0;
  transform: translate(20px, -20px);
  transition: 0.45s;
  z-index: -1;
}

.landing-v2-single-speaker:hover .shape-2,
.landing-v2-single-speaker:hover .shape-3 {
  opacity: 1;
  transform: translate(0);
}

/*====================================================
                    CONTENT
====================================================*/

.landing-v2-speaker-title {
  margin-top: 20px;
}

.landing-v2-speaker-title h4 {
  font-size: 30px;

  font-weight: 800;

  color: #00253a;

  transition: 0.35s;

  margin-bottom: 8px;
}

.landing-v2-speaker-title span {
  display: block;

  color: #666;

  font-size: 17px;

  margin-bottom: 12px;
}

.landing-v2-speaker-title a {
  color: #00253a;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.landing-v2-speaker-title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #d4a243;
  transition: 0.35s;
}

.landing-v2-speaker-title a:hover::after {
  width: 100%;
}

.landing-v2-single-speaker:hover h4 {
  color: #d4a243;
}

/*====================================================
                    FLOAT
====================================================*/

@keyframes floating {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/*====================================================
                RESPONSIVE
====================================================*/

@media (max-width: 991px) {
  .landing-v2-speaker-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .landing-v2-speaker-wrapper {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .landing-v2-speaker-thumb {
    width: 170px;
  }

  .landing-v2-speaker-title h4 {
    font-size: 24px;
  }
}

/* ==========================================
   Footer Section
========================================== */
.footer-section {
  min-height: 400px;
  padding-left: 100px;
  padding-right: 100px;
  background: var(--footer-bg);
}

.social-icons i {
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
}

.footer-section h4{
    position:relative;
    color: var(--primary-color) !important;
}

.footer-section h4::after {
    content: "";
    position: absolute;
    left: 0;
    height: 4px;
    width: 80px;
    bottom: -10px;
    border-radius:20px;
    background: #eaba90;
}



/* ===============================
   Social Icons
================================== */

.social-icons {
  margin: 0;
  padding: 0;
}

.social-icons li {
  list-style: none;
}

.social-icons a {
  border:1px solid var(--primary-color);
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s,
    color 0.35s,
    box-shadow 0.35s;
}

/* Ripple Circle */
.social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary-color);
  transform: scale(0);
  transition: transform 0.35s ease;
  z-index: 0;
}

/* Icon */
.social-icons i {
  position: relative;
  z-index: 2;
  font-size: 18px;
  transition:
    transform 0.35s,
    color 0.35s;
}

/* Hover */
.social-icons a:hover {
    border:none;
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.social-icons a:hover::before {
  transform: scale(1);
}

.social-icons a:hover i {
  color: #fff;
  transform: scale(1.2) rotate(8deg);
}

/* Click Effect */
.social-icons a:active {
  transform: scale(0.95);
}

.social-icons li {
  animation: socialFloat 4s ease-in-out infinite;
}

.social-icons li:nth-child(2) {
  animation-delay: 0.4s;
}

.social-icons li:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/*=========================
      Links
==========================*/

.footer-links,
.footer-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-item li {
  margin-bottom: 5px;
}

.footer-links a,
.footer-item a {
  position: relative;
  color: #444;
  text-decoration: none;
  transition: 0.35s;
}

.footer-links a::before,
.footer-item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 0.35s;
}

.footer-links a:hover,
.footer-item a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-links a:hover::before,
.footer-item a:hover::before {
  width: 100%;
}

/*=========================
      Copyright
==========================*/

.copyright {
  /* margin-top: 80px; */
  padding: 18px 0;
  background: #ffc58f;
  color: #fff;
}

.copyright p {
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: var(--primary-color);
}

.copyright a {
  color: var(--highlight-color);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .footer-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Class added dynamically via JS when user scrolls down */
.scroll-down {
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
}

.scroll-down.fade-out {
  opacity: 0;
  visibility: hidden;
}

/** about-style-two **/

.about-style-two {
  position: relative;
}

.about-style-two .content-box {
  position: relative;
  display: block;
}

.about-style-two .content-box .text-box p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.about-style-two .image-box {
  position: relative;
  display: block;
  margin-left: 238px;
  margin-right: -255px;
}

.about-style-two .image-box .image-1 {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.about-style-two .image-box .image-1:before {
  position: absolute;
  content: "";
  /* background: #001C3D; */
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.8;
}

.about-style-two .image-box .image-1 img {
  width: 100%;
}

.about-style-two .image-box .image-2 {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.about-style-two .pattern-layer .pattern-1 {
  position: absolute;
  top: -116px;
  right: 0px;
  width: 827px;
  height: 841px;
  background-repeat: no-repeat;
}

.about-style-two .pattern-layer .pattern-2 {
  position: absolute;
  right: 567px;
  bottom: 50px;
  width: 215px;
  height: 144px;
  background-repeat: no-repeat;
}

/** about-style-three **/

.about-style-three {
  position: relative;
}

.about-style-three .content-box {
  position: relative;
  display: block;
  margin-right: 30px;
}

.about-style-three .content-box .text-box .bold-text {
  font-weight: 700;
  margin-bottom: 20px;
}

.about-style-three .content-box .text-box p {
  font-weight: 400;
  margin-bottom: 0px;
}

.funfact-block-one .inner-box {
  position: relative;
  display: block;
  margin-bottom: 50px;
}

.funfact-block-one .inner-box .count-outer {
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 80px;
  font-family: var(--secondary-font);
  font-weight: 700;
}

.funfact-block-one .inner-box h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: var(--text-color);
}

.about-style-three .image-box {
  position: relative;
  display: block;
  padding-bottom: 38px;
  /*padding-left: 123px;*/
}

.about-style-three .image-box .image-1 {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.about-style-three .image-box .image-1:before {
  position: absolute;
  top: 0;
  left: -85%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.3))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.about-style-three .image-box .image-1:hover:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.about-style-three .image-box .image-1 img {
  width: 100%;
  border-radius: 20px;
}

/*.about-style-three .image-box .image-2 {*/
/*  position: absolute;*/
/*    right: max(15px, calc((100vw - 1320px) / 2));*/
/*  bottom: 0px;*/
/*  width: 257px;*/
/*  height: 257px;*/
/*  border-radius: 50%;*/
/*  border: 10px solid #fff;*/
/*  box-shadow: 0px 4px 20px 0px rgba(176, 172, 172, 0.05);*/
/*}*/


.about-style-three .image-box .image-2 {
    position: absolute;

    right: clamp(-60px, calc(-20px - (100vw - 1200px) * 0.08), -20px);

    bottom: 0;

    width: 257px;
    height: 257px;

    border-radius: 50%;
    border: 10px solid #fff;

    box-shadow: 0 4px 20px rgba(176, 172, 172, 0.05);
}

.about-style-three .image-box .image-2 img {
  width: 100%;
  border-radius: 50%;
}

.about-style-three .image-box .image-shape {
  position: absolute;
  left: 0px;
  bottom: 285px;
  width: 124px;
  height: 140px;
  background-repeat: no-repeat;
}

.about-style-three .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about-style-two.pt_200 .pattern-layer .pattern-1 {
  top: 100px;
}
.about-style-three .pattern-layer {
  position: absolute;
  left: 92px;
  top: 195px;
  width: 70px;
  height: 167px;
  background-repeat: no-repeat;
}
.pt_200 {
  padding-top: 200px;
}
.pt_120 {
  padding-top: 120px;
}
.pt_80 {
  padding-top: 80px;
}
.pb_120 {
  padding-bottom: 120px;
}

.pb_50 {
  padding-bottom: 50px;
}
.pb_60 {
  padding-bottom: 60px;
}
.pb_70 {
  padding-bottom: 70px;
}
.mb_50{
  margin-bottom: 50px;
}

.content-section {
  position: relative;
  background: url(../images/who-should.jpg);
  background-size: contain;
  padding-bottom: 280px;
  background-repeat: no-repeat;
  background-position: bottom;
}

.cat-box {
  position: relative;
  padding-left: 15px;
  margin-top: 20px;
}

.cat-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #008665;
  transform-origin: top;
  transition: transform 0.4s ease;
}

/* Reset */
.cat-box:not(:hover)::before {
  transform: scaleY(1);
}

/* Animate */
.cat-box:hover::before {
  animation: borderMove 0.5s ease;
}

@keyframes borderMove {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

.cat-box h4,
.cat-box p {
  text-align: left;
}
.chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.chip {
    background-image: url("../images/Paper--roll-1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: none;
    min-height: 52px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: #121826;
    transition: all 0.3s ease;
}

.chip:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 15px rgba(176, 97, 26, 0.35));
}

/* Tablet */
@media (max-width: 991px) {
    .chips {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 575px) {
    .chips {
        grid-template-columns: 1fr;
    }
}
/** page-title **/

.page-title{
  position: relative;
  padding: 140px 0px 140px 0px;
  overflow: hidden;
}

.page-title .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title .bg-layer:before{
  position: absolute;
  content: '';
  background-image: linear-gradient(180deg, #fbfbfb, #ffffff, #fdfdfd78, #ffc48c00);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.8;
}

.page-title .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: -56px;
  width: 100%;
  height: 118px;
  background-repeat: repeat-x;
}

.page-title .pattern-layer .pattern-2{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 177px;
  height: 177px;
  background-repeat: no-repeat;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  float: left;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--secondary-font);
  font-weight: 700;
  background: linear-gradient(135deg, #0b1d37 0%, #164a95 100%);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-title .bread-crumb li a{
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #0b1d37 0%, #164a95 100%);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-title .bread-crumb li a:hover{
  text-decoration: underline;
}

.page-title h1{
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 60px;
  color: #751414;
}


/** rtl-css **/

.rtl .page-title .bread-crumb li{
  float: right;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .page-title{
    padding: 200px 0px 180px 0px;
  }

  .page-title h1{
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}


.sec-title {
    position: relative;
    display: block;
    padding-bottom: 20px;
    text-align: center;
}

.sec-title:before {
    position: absolute;
    content: '';
    background: linear-gradient(135deg, #0b1d37 0%, #164a95 100%);
    width: 150px;
    height: 5px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.sec-title .sub-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-family: var(--secondary-font);
    font-weight: 700;
    margin-bottom: 20px;

    background: linear-gradient(135deg, #0b1d37 0%, #164a95 100%);
    color: transparent !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.sec-title h2 {
    position: relative;
    display: block;
}

.sec-title.light h2 {
    color: #fff !important;
}
/* .clients-style-two{
  position: relative;
    background-size: contain;
    padding-bottom: 320px;
    background-repeat: no-repeat;
    background-position: bottom;
}
.clients-bg-1{
  background: url(../images/about-internal.jpg);
} */

.clients-style-two {
    position: relative;
    background-size: contain;
    padding-bottom: 320px;
    background-repeat: no-repeat;
    background-position: bottom;
}

/* Image 1 */
.clients-bg-1 {
    background-image: url("../images/about-internal.jpg");
}
.clients-bg-2 {
    background-image: url("../images/host.jpg");
}






/* Outer container: center the table horizontally and vertically */
.registration-table-container {
  border-radius: 16px;
  padding: 20px 8px;
  width: 100%;
  box-sizing: border-box;
}

/* Inner table styling remains unchanged */
.registration-table {
  background: #083158;
  border-radius: 16px;
  padding: 24px;
  min-width: 1000px;  /* Desktop min-width */
  max-width: 98vw;
  box-sizing: border-box;
  margin: 0 auto;
  width: 800px;
}

.table-header, .table-row {
  display: flex;
  align-items: center;
}

.table-header {
  font-weight: 600;
  color: #fff;
  padding-bottom: 10px;
}

.header-category, .header-regular, .header-late {
  flex: 1.5;
  text-align: left;
  font-size: 20px;
}

.header-regular, .header-late {
  flex: 1;
  text-align: center;
}

.sub-text {
  font-size: 0.85em;
  color: #b7d2eb;
  display: block;
  margin-top: 2px;
  font-weight: 400;
}

.table-row {
  margin-bottom: 10px;
}

.table-row:last-child {
  border-bottom: none;
}

.cell {
  padding: 10px 6px;
  color: #fff;
  flex: 1.5;
  font-size: 1em;
}

.cell.fee {
    background: #053156;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    margin: 4px 4px;
    font-weight: 600;
    font-size: 1.09em;
    border: 1.5px solid #ffffff;
}

.cell.category {
    font-weight: 500;
    color: #f1f5f9;
    background: none;
    border: 1px solid #fff;
    border-radius: 10px;
    margin-right: 40px;
}

/* Responsive: reduce min-width for mobile and enable wrapping */
@media (max-width: 900px) {
  .registration-table {
    min-width: 0;
    width: 100%;
    padding: 10px 2px;
  }
  .table-header, .table-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .cell,
  .cell.fee,
  .cell.category,
  .header-category,
  .header-regular,
  .header-late {
    flex: unset !important;
    width: 100% !important;
    margin: 4px 0;
    text-align: left;
    box-sizing: border-box;
  }
  .cell.fee {
    text-align: left;
  }
}
.registration-info-list {
  max-width: 800px;
  margin: 18px auto 0 auto;
  background: #eaf6fa;
  border: 1.5px solid #b6d6f2;
  border-radius: 9px;
  padding: 15px 36px 15px 36px;
  color: #193c57;
  font-size: 1em;
  box-shadow: 0 2px 6px rgba(8,49,88,0.04), 0 0.5px #b6d6f2;
  list-style-type: disc;
  list-style-position: inside;
  line-height: 1.7;
}
.registration-info-list li {
  list-style-type: disc;
  list-style-position: inside;
  line-height: 1.7;

}
.registration-info-list .info-label {
  color: #083158;
  font-weight: 600;
}

@media (max-width: 900px) {
  .registration-info-list {
    max-width: 98vw;
    font-size: 0.99em;
    padding: 10px 5vw 10px 6vw;
    margin-left: 0;
  }
}
    .abstract-guidelines-row {
        --ag-header: #751414;
        --ag-para: #313131;
        --ag-bg: #f3c9a1;
    }

    .ag-main-title {
        font-weight: 700;
        color: var(--ag-header);
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        font-size: 2.5rem;
    }

    .ag-title-underline {
        display: inline-block;
        width: 70px;
        height: 3px;
        background: var(--ag-header);
        border-radius: 3px;
        margin: 0 auto;
    }

    .abstract-guidelines-row .single-guideline-card {
        background: #fff;
        border-radius: 12px;
        padding: 40px 32px 32px;
        height: 100%;
        box-shadow: 0 6px 24px rgba(117, 20, 20, 0.08);
        border-top: 4px solid var(--ag-bg);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        position: relative;
    }

    .abstract-guidelines-row .single-guideline-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 34px rgba(117, 20, 20, 0.16);
        border-top-color: var(--ag-header);
    }

    .abstract-guidelines-row .single-guideline-card h5 {
        font-weight: 700;
        color: var(--ag-header);
        margin-bottom: 16px;
        font-size: 22px;
        line-height: 1.4;
    }

    .abstract-guidelines-row .single-guideline-card p,
    .abstract-guidelines-row .single-guideline-card li {
        color: var(--ag-para);
        font-family: var(--body-font);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.8;
    }

    .abstract-guidelines-row .single-guideline-card ul,
    .abstract-guidelines-row .single-guideline-card ol {
        padding-left: 18px;
        margin: 0;
    }

    .abstract-guidelines-row .single-guideline-card ul li,
    .abstract-guidelines-row .single-guideline-card ol li {
        margin-bottom: 8px;
    }

    .abstract-guidelines-row .single-guideline-card a {
        color: var(--ag-header);
        font-weight: 600;
        text-decoration: none;
    }

    .abstract-guidelines-row .single-guideline-card a:hover {
        text-decoration: underline;
    }

    .abstract-guidelines-row .ag-dates-card {
        background: var(--ag-header);
        border-radius: 12px;
        padding: 36px 30px;
        margin-top: 10px;
        box-shadow: 0 8px 26px rgba(117, 20, 20, 0.25);
    }

    .abstract-guidelines-row .ag-dates-card h5 {
        color: #fff;
        text-align: center;
        font-weight: 700;
        margin-bottom: 24px;
        font-size: 19px;
        letter-spacing: 0.5px;
    }

    .abstract-guidelines-row .ag-dates-row {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 24px;
    }

    .abstract-guidelines-row .ag-date-item {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 16px 20px;
        flex: 1;
        text-align: center;
    }

    .abstract-guidelines-row .ag-date-divider {
        width: 1px;
        background: rgba(255, 255, 255, 0.25);
    }

    .abstract-guidelines-row .ag-date-label {
        color: var(--ag-bg);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .abstract-guidelines-row .ag-date-value {
        color: #fff;
        font-weight: 700;
        font-size: 18px;
    }

    @media (max-width: 767px) {
        .abstract-guidelines-row .single-guideline-card {
            padding: 30px 24px 24px;
        }

        .abstract-guidelines-row .ag-dates-row {
            gap: 10px;
        }

        .abstract-guidelines-row .ag-date-item {
            padding: 12px 8px;
        }

        .abstract-guidelines-row .ag-date-label {
            font-size: 11px;
        }

        .abstract-guidelines-row .ag-date-value {
            font-size: 15px;
        }
    }
    
    
    
    
/* ==========  CONTACT FORM ======== */
/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
  position: relative;
  padding: 100px 0;
}

.contact-section .form-inner {
  position: relative;
  background: #fff;
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* =========================================
   FORM GROUP
========================================= */

.contact-section .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-section .form-group:last-child {
  margin-bottom: 0;
}

/* =========================================
   INPUT & TEXTAREA
========================================= */

.contact-section .form-group input,
.contact-section .form-group textarea {
  display: block;
  width: 100%;
  border: 1px solid #f6f7f9;
  border-radius: 6px;
  background: #f6f7f9;
  color: #222;
  font-size: 16px;
  font-family: inherit;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Inputs */

.contact-section .form-group input {
  height: 65px;
  padding: 10px 30px;
}

/* Textarea */

.contact-section .form-group textarea {
  min-height: 180px;
  padding: 15px 30px;
  resize: vertical;
}

/* =========================================
   PLACEHOLDER
========================================= */

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
  color: var(--primary-color);
  opacity: 1;
}

/* =========================================
   FOCUS
========================================= */

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--primary-color);
  font-size: 18px;
  pointer-events: none;
}

.input-icon input,
.input-icon textarea {
  padding-left: 60px !important;
}

.textarea-icon i {
  top: 25px;
  transform: none;
}

/* =========================================
   VALIDATION
========================================= */

.contact-section .form-group input:invalid:not(:placeholder-shown),
.contact-section .form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.contact-section .form-group input:valid:not(:placeholder-shown) {
  border-color: #198754;
}

/* =========================================
   BUTTON
========================================= */

.contact-section .message-btn {
  margin-top: 5px;
}

.contact-section .message-btn .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 12px 28px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.contact-section .message-btn .btn:hover {
  transform: translateY(-2px);
}

.contact-section .message-btn .btn:focus-visible {
  outline: 3px solid rgba(0, 123, 255, 0.3);
  outline-offset: 3px;
}

/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-section .info-inner {
  /* height: 100%; */
  padding: 50px 30px;
}

.contact-section .single-item h6 {
  margin: 0 0 25px;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-section .info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-section .info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
}

.contact-section .info-list li:last-child {
  margin-bottom: 0;
}

.contact-section .info-list li i {
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-section .info-list li a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-section .info-list li a:hover {
  text-decoration: underline;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-section .form-inner {
    padding: 40px;
  }

  .contact-section .info-inner {
    padding: 30px 10px 0;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-section .form-inner {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .contact-section .form-group input {
    height: 58px;
    padding: 10px 20px;
  }

  .contact-section .form-group textarea {
    min-height: 150px;
    padding: 15px 20px;
  }

  .contact-section .message-btn .btn {
    width: 100%;
  }

  .contact-section .info-inner {
    padding: 30px 0 0;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-section .form-inner {
    padding: 25px 15px;
  }

  .contact-section .form-group {
    margin-bottom: 15px;
  }

  .contact-section .info-list li {
    font-size: 15px;
  }
}

.contact-section .info-inner {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  padding: 40px 35px;
}

.contact-section .info-inner h6 {
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.contact-section .info-inner .info-list li {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  font-family: var(--secondary-font);
  font-weight: 600;
  padding-left: 21px;
  margin-bottom: 5px;
}

.contact-section .info-inner .info-list li:last-child {
  margin-bottom: 0px;
}

.contact-section .info-inner .info-list li i {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 15px;
}

.contact-section .info-inner .info-list li a {
  display: inline-block;
}

.contact-section .info-inner .info-list li a:hover {
  text-decoration: underline;
}

/** rtl-css **/

.rtl .contact-section .info-inner .info-list li {
  padding-left: 0px;
  padding-right: 21px;
}

.rtl .contact-section .info-inner .info-list li i {
  left: inherit;
  right: 0px;
}

.rtl .address-section .single-info-box span {
  padding-left: 0px;
  padding-right: 22px;
}

.rtl .address-section .single-info-box span img {
  left: inherit;
  right: 0px;
}

.rtl .address-section .single-info-box .light-icon {
  right: inherit;
  left: 16px;
}

.contact-section .form-inner .form-group input[type="text"],
.contact-section .form-inner .form-group input[type="email"],
.contact-section .form-inner .form-group textarea {
  color: var(--highlight-color);
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 991px) {
  .contact-section .form-inner {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-section {
    padding: 70px 0px;
  }

  .contact-section .form-inner {
    padding: 60px 30px;
  }
}

@media only screen and (max-width: 599px) {
}

@media only screen and (max-width: 499px) {
}

/* ================ SPONSORSHIP ============= */
.sponsor-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  max-width: 100%;
  padding-bottom: 8px; /* optional padding below scroll bar */
}

.sponsor-table-container {
  border-radius: 16px;
  padding: 20px 10px;
  max-width: 100vw;
  box-sizing: border-box;
  width: 1165px;
}

.sponsor-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  min-width: 900px;
  box-shadow: 0 2px 12px rgba(32, 80, 180, 0.06);
  font-family: "Segoe UI", sans-serif;
  margin: 0 auto;
  max-width: 1250px;
}

.sponsor-header-row {
  display: flex;
  background: var(--primary-color);
}

.entitlement-header {
  flex: 1.25;
  min-width: 160px;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 500;
  padding: 16px 10px;
  border-right: 2px solid #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.sponsor-header {
  flex: 1;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color);
  padding: 18px 0 8px 0;
  background: #fafdff;
  border-right: 2px solid #e0e9ef;
  font-size: 1.12em;
  border-radius: 16px 16px 0 0;
  position: relative;
}
.sponsor-header:last-child {
  border-right: none;
}
.sponsor-header .amt {
  display: block;
  font-weight: 700;
  font-size: 1.15em;
  color: var(--primary-color);
  margin-top: 3px;
}

.sponsor-row {
  display: flex;
  border-bottom: 1.5px solid #e1ecf5;
  background: #fafdff;
}

.sponsor-row:last-child {
  border-bottom: none;
}

.entitlement-cell {
  flex: 1.25;
  min-width: 160px;
  background: var(--primary-color);
  color: #ffffff;
  font-weight: 500;
  padding: 16px 10px;
  border-right: 2px solid #ffffff;
  font-weight: 700;
}

.sponsor-cell {
  flex: 1;
  text-align: center;
  color: var(--primary-color);
  padding: 16px 0;
  border-right: 2px solid #e0e9ef;
  background: #fff;
  font-size: 1em;
  font-weight: 500;
}
.sponsor-cell:last-child {
  border-right: none;
}
.sponsor-cell ul {
  text-align: left;
  display: inline-block;
  margin: 0;
  padding-left: 14px;
  font-size: 0.94em;
}
.sponsor-cell ul li {
  list-style: disc;
  margin-bottom: 3px;
  color: var(--primary-color);
}


/* =========================================
                            WHY ESMO LIST
                            ========================================= */

.why-esmo-list {
  width: 100%;
}

/* =========================================
                            CARD
                            ========================================= */

.why-esmo-card {
  position: relative;
  padding: 16px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* =========================================
                            CARD TOP
                            ========================================= */

.why-esmo-card .card-top {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* =========================================
                            ICON OUTER
                            ========================================= */

.why-esmo-card .img-outer {
  position: relative;

  flex: 0 0 70px;
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--primary-color);

  transition:
    transform 0.4s ease,
    background-color 0.4s ease;
}

/* Dashed outer circle */

.why-esmo-card .img-outer::after {
  content: "";

  position: absolute;
  inset: -5px;

  border: 1px dashed var(--primary-color);
  border-radius: 50%;

  opacity: 1;

  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
}

/* =========================================
                            ICON
                            ========================================= */

.why-esmo-card .img-outer img {
  display: block;

  width: 30px;
  height: 30px;

  object-fit: contain;

  filter: brightness(0) invert(1);

  transition: transform 0.4s ease;
}

/* =========================================
                            CONTENT
                            ========================================= */

.why-esmo-card .card-content {
  flex: 1;
  min-width: 0;
}

/* =========================================
                            TITLE
                            ========================================= */

.why-esmo-card .card-content h5 {
  margin: 0 0 6px;

  font-size: 20px;
  line-height: 1.25;

  font-weight: 700;

  color: var(--primary-color);

  /* text-transform: uppercase; */

  transition: color 0.3s ease;
}

/* =========================================
                            DESCRIPTION
                            ========================================= */

.why-esmo-card .card-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: inherit;
}

/* =========================================
                            SEPARATOR
                            ========================================= */

.why-esmo-card:not(:last-child)::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background: #e8e8ed;
}

/* =========================================
                            HOVER
                            ========================================= */

.why-esmo-card:hover .img-outer {
  transform: scale(1.08);
  background: #17386b;
}

.why-esmo-card:hover .img-outer::after {
  opacity: 1;
  transform: rotate(180deg);
}

.why-esmo-card:hover .img-outer img {
  transform: scale(1.1);
}

.why-esmo-card:hover .card-content h5 {
  color: var(--primary-color);
}

/* =========================================
                            TABLET
                            ========================================= */

@media (max-width: 767px) {
  .why-esmo-card {
    padding: 14px 0;
  }

  .why-esmo-card .card-top {
    gap: 18px;
  }

  .why-esmo-card .img-outer {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
  }

  .why-esmo-card .img-outer img {
    width: 28px;
    height: 28px;
  }

  .why-esmo-card .card-content h5 {
    font-size: 18px;
  }

  .why-esmo-card .card-content p {
    font-size: 14px;
  }
}

/* =========================================
                            MOBILE
                            ========================================= */

@media (max-width: 480px) {
  .why-esmo-card {
    padding: 15px 0;
  }

  .why-esmo-card .card-top {
    gap: 15px;
  }

  .why-esmo-card .img-outer {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .why-esmo-card .img-outer img {
    width: 24px;
    height: 24px;
  }

  .why-esmo-card .card-content h5 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .why-esmo-card .card-content p {
    font-size: 13px;
    line-height: 1.45;
  }
}
