/* ==========================================
   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, #fff6e8, #fad7a0, #efb366, #d8893f);
  --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, 4rem);
  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.4s 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;
}

.shape-3 {
  position: absolute;
  left: -12px;
  bottom: 48px;
  opacity: 0;
  transform: translate(20px, -20px);
  transition: 0.45s;
}

.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;
}

/* ===============================
   Social Icons
================================== */

.social-icons {
  margin: 0;
  padding: 0;
}

.social-icons li {
  list-style: none;
}

.social-icons a {
  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 {
  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: #dd8633;
  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;
  }
}
