/* ----------------------------------
   ROOT VARIABLES
-------------------------------------*/
:root {
  /* Fonts */
  --font-primary: 'urw-din', sans-serif;

  /* Colors */
  --color-primary: #ACB8FF;
  --color-primary-dark: #181581;
  --color-text: #0D0F2C;
  --color-text-light: #4b5563;
  --color-bg: #f5f7fc;
  --color-white: #ffffff;
  --color-border: #dbe3ff;
  --color-secondary: #cfd8ff;
  --color-card-bg: #ffffff;
  --color-btn-start: #181581;
  --color-btn-end: #00A7DC;
  --color-box-shadow: 0 20px 40px rgba(75, 97, 206, 0.18);

  /* Gradient */
  --gradient-hero: linear-gradient(135deg, rgba(24, 21, 129, 0.09) 0%, #edf2ff 50%, #e4ebff 100%);

  /* Layout */
  --container-max: 1440px;

  /* Radius */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Shadow */
  --shadow-soft: 0 10px 30px rgba(79, 109, 245, 0.08);

  /* Spacing */
  --section-padding: 100px 0;
}


/* ----------------------------------
   BASIC RESET
-------------------------------------*/
body {
  font-family: "urw-din", sans-serif;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  background-color: var(--color-bg);
  letter-spacing: -0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "refrigerator-deluxe", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* Headings & Text */

li,
p,
a {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* Links */
a {
  color: inherit;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

/* Images */
img {
  max-width: 100%;
}

/* Sections */
.section-padding {
  padding: var(--section-padding);
}

.pb0 {
  padding-bottom: 0;
}

/* Container override */
.container {
  max-width: var(--container-max);
  padding-left: 20px;
  padding-right: 20px;
}

/* ----------------------------------
   UTILITIES
-------------------------------------*/
.text-primary {
  color: #181581 !important;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}


.pulse-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #181581 !important;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border: none;
  position: relative;
  transition: all 0.3s ease;
  /* This creates the initial "breathing" shadow */
  animation: attention-pulse 2s infinite;
}



/* The "Ring" that expands outward */
.pulse-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: white;
  z-index: -1;
  animation: ripple 2s infinite;
}

.pulse-button:hover {
  transform: scale(1.05);
  background-color: #f8f9fa;
}

/* Animation 1: The soft glow pulse */
@keyframes attention-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Animation 2: The expanding ripple */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}


/* The dark background overlay */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

/* When the modal is active */
.video-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* The container for the video */
.video-container {
  width: min(90vw, 900px);
  position: relative;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-overlay.active .video-container {
  transform: scale(1);
}

/* 16:9 Aspect Ratio */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 35px;
  cursor: pointer;
  transition: transform 0.2s;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* Tablet */
@media (max-width: 991px) {
  .video-overlay {
    padding: 20px;
  }

  .video-container {
    width: min(94vw, 760px);
  }

  .close-btn {
    top: -42px;
    font-size: 26px;
    width: 38px;
    height: 38px;
  }

  .video-wrapper {
    border-radius: 10px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .video-overlay {
    padding: 16px;
    align-items: center;
  }

  .video-container {
    width: 100%;
    max-width: 100%;
  }

  .close-btn {
    top: -38px;
    right: 0;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .video-wrapper {
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .video-overlay {
    padding: 12px;
  }

  .video-container {
    width: 100%;
  }

  .close-btn {
    top: -34px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .video-wrapper {
    border-radius: 6px;
  }
}


/* new header */


html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}

.invite-topbar-new {
  background: linear-gradient(90deg, #1585E1 0%, #181581 100%);
  color: #fff;
  transition: transform 0.35s ease, opacity 0.35s ease, height 0.35s ease, padding 0.35s ease;
  overflow: hidden;
}

.invite-topbar-new.hide-topbar {
  transform: translateY(-100%);
  opacity: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.invite-topbar-new-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.invite-topbar-new-text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}
.invite-topbar-new-text a:hover {
  text-decoration: underline;
}

.custom-invite-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #eef2fb;
  border-bottom: 1px solid rgba(18, 28, 68, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.custom-invite-header.scrolled {
  backdrop-filter: saturate(200%) blur(12px);
  background-color: rgba(255, 255, 255, .72);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo img {
  max-height: 100px;
  width: auto;
  display: block;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  text-decoration: none;
  color: #26324b;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(72, 95, 214, 0.08);
  color: #181581;
}

.nav-arrow {
  font-size: 11px;
}

.dropdown-menu-box {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 270px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(17, 24, 56, 0.16);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.28s ease;
  z-index: 20;
}

.nav-item:hover .dropdown-menu-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:last-child .dropdown-menu-box,
.nav-item:nth-last-child(2) .dropdown-menu-box {
  left: auto;
  right: 0;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  color: #26324b;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.dropdown-link i {
  width: 18px;
  text-align: center;
  color: #181581;
  font-size: 15px;
}

.dropdown-link:hover {
  background: rgba(24, 21, 129, 0.09);
  color: #16213d;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}


.header-btn-primary {
  background: #EDE941;
  color: #181581;
  transition: 0.3s all;
}

.header-btn-primary:hover {
  background-color: #181581;
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: #181581;
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100vh;
  background: #fff;
  z-index: 10000;
  box-shadow: -12px 0 30px rgba(20, 27, 60, 0.14);
  overflow: hidden;
}

.mobile-nav-panel.show {
  display: block;
}

.mobile-nav-inner {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 16px 28px;
}

.mobile-dropdown-item {
  border: 1px solid #e8edfa;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #f9fbff;
}

.mobile-dropdown-toggle {
  width: 100%;
  border: none;
  background: transparent;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #26324b;
}

.mobile-dropdown-item.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-submenu {
  display: none;
  padding: 0 10px 10px;
}

.mobile-dropdown-item.active .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  color: #42506d;
  font-size: 15px;
  font-weight: 500;
}

.mobile-submenu a i {
  width: 18px;
  text-align: center;
  color: #181581;
}

.mobile-submenu a:hover {
  background: #eef3ff;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.mobile-menu-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #eef2fb;
  color: #26324b;
  font-size: 18px;
}

.support-footer {
  margin-top: 12px;
  padding: 14px 16px;


  background: linear-gradient(91.92deg, #5E55B8 -20.26%, #5683C1 50.38%, #309FB3 121.02%);
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.support-item i {
  font-size: 14px;
  color: #fff;
}

.support-item a {
  color: #fff;
  text-decoration: none;
}

.support-item a:hover {
  opacity: 0.85;
}

.support-heading {
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.support-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .invite-topbar-new {
    display: none;
  }
}

@media (max-width: 1199px) {
  .nav-link {
    font-size: 14px;
    padding: 12px 10px;
  }

  .header-btn {
    padding: 0 16px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .header-nav {
    display: none;
  }

  .header-right .header-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-wrap {
    min-height: 74px;
  }

  .invite-topbar-new-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

}


/* Section 1 */

/* =========================
   HERO SECTION
========================= */
.hero-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url(../img/Hero-background.png);
  background-size: cover;
  background-position: center center;
}

.hero-title {
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  background: transparent !important;
}


.logo-update {
  color: #fff;
}

/* New Slider CSS */
.hero-section .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}


.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 23px;
  padding: 15px;
}

.hero-logo img {
  max-width: 100%;
  width: 350px;
  object-fit: contain;
}



.hero-title {
  text-align: center;
}

.highlight-slider {
  display: inline-block;
  vertical-align: baseline;
  height: 1.15em;
  overflow: hidden;
  transition: width 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlight-slider-track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  width: max-content;
}

.highlight-slide {
  display: block;
  height: 1.15em;
  line-height: 1.15em;
  white-space: nowrap;
  color: #ede941;
}

/* New Slider CSS */



.hero-title {
  color: #fff;
  font-weight: 600;
  font-size: 70px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 30px;

}

h1.hero-title.first {
  display: flex;
  gap: 11px;
  margin-top: 40px;
  margin-bottom: 0;
}

.hero-description {
  max-width: 900px;
  margin: 0 auto 12px;
  color: #fff;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;

}




.hero-desc-lg {
  max-width: 1080px;
}

.hero-description strong {
  font-weight: 600;
}

.hero-description .invite {
  font-size: 30px;
}

.hero-description span {
  color: #EDE941 !important;


}

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* =========================
   HERO ACTIVATE BOX
========================= */
.hero-activate-box {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 60px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--color-box-shadow);
  background-size: cover;
  box-shadow: 0px 0px 40px 0px #0000001A;
  width: 100%;

}

.activate-title {
  margin-bottom: 40px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

}

.text-white-custom {
  color: #181581;
}

.activate-row {
  margin-bottom: 40px;
}

/* Individual Card */
.activate-card {
  background-color: var(--color-card-bg);
  border-radius: 8px;
  padding: 24px 16px;
  box-shadow: 0px 8px 16px rgba(35, 52, 130, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  min-height: 250px;
  border: 1px solid #E9E9E9
}

.activate-card:hover {
  transform: scale(1.03);
  /* Slightly scale the card */
  box-shadow: 0px 12px 28px rgba(35, 52, 130, 0.2);
  /* Stronger shadow */
  background-color: rgba(24, 21, 129, 0.09);
  /* Slight background change */
}

.activate-icon {
  transition: transform 0.3s ease;
}

.activate-card:hover .activate-icon {
  transform: translateY(-8px);
  /* Bounce effect on icon */
}

.activate-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #F1F5FE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181581;
  font-size: 35px;
}

.activate-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #181581;
}

.activate-card p {
  margin-bottom: 30px;
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;

}

.activate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  padding: 16px;
  border-radius: 4px;
  background: #53CEDA;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s all ease;
}

.activate-btn:hover {
  transform: translateY(-1px);
  background: #181581;
}

.activate-note {
  color: #181581;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}


/* section 2 */

/* Sidebar Button Styling */
/* =========================
   SIDEBAR BUTTON WITH IMAGES
========================= */
/* Sidebar Button Styling */


.landing-section .row {
  margin-inline: 0px;

}

.content-section {
  scroll-margin-top: 200px;
}

.left-container {
  width: 380px;
  /* Fixed width for the left section (sidebar) */
  padding-right: 0px;
  padding-left: 0px;
}

.landing-header-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  margin-bottom: 54px;
}

.landing-header-center .landing-title {
  margin: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 101px;
}

.sidebar-btn {
  width: 100%;
  padding: 45px 20px;
  background-color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  /* Aligns the icon and text vertically in the center */
  transition: 0.3s ease;
  border: 0 none;
  border-left: 5px solid transparent;
  box-shadow: 0px 10px 30px 0px #49639E1A;
}

.sidebar-btn.tab-btn.active {
  background: rgba(24, 21, 129, 0.09);
  border-left: 5px solid rgb(24, 21, 129);
}

.sidebar-btn:last-child {
  margin-bottom: 0;
}

.sidebar-btn:hover {
  background-color: rgba(24, 21, 129, 0.09);
}

.row.g-5 {
  gap: 20px;
  /* Adds 20px gap between left and right sections */
}

.right-container {
  flex-grow: 1;
  /* The right section will take up the remaining space */
  /* Optional: You can set a max-width if needed */
  max-width: 1440px;
  overflow-x: auto;

  /* To allow horizontal scrolling if necessary */
}

/* .sidebar-btn.active {
} */

.sidebar-btn .sidebar-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #F1F5FE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181581;
  font-size: 35px;
  margin-right: 16px;
}

.text-container {
  display: flex;
  flex-direction: column;
}

.button-title {
  font-size: 16px;
  font-weight: 600;
  color: #181581;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  margin-bottom: 6px;

}

.small-text {
  color: #181581;
  font-weight: 400;
  font-size: 18px;
  line-height: 26.99px;
  letter-spacing: 0%;

}

.sidebar-btn.active .small-text,
.sidebar-btn.active .button-title,
.sidebar-btn.active .sidebar-icon {
  color: #181581;
}

.right-container {
  background-color: var(--color-white);

  box-shadow: 0px 10px 30px 0px #49639E1A;
  border-radius: 20px;
  padding: 40px;
}

/* Title styling */
.landing-title {
  color: #181581;
  margin-bottom: 54px;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;

}

/* Landing URL input styling */
.landing-url {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-input {
  width: 80%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d9e6;
  font-size: 16px;
}

.landing-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 12px;
  border-radius: 4px;
  background: #53CEDA;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.btn-copy:hover {
  color: var(--color-white);
  background: #181581 !important;
}

.btn-copy:active {
  color: var(--color-white) !important;
  background: #181581 !important;
}


.btn-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #0F2A1D;
  color: var(#000);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.btn-preview:hover {
  color: #ffffff;
  border: 1px solid #53CEDA; 
   background: #53CEDA !important;
}

.btn-preview:active {
  color: #ffffff !important;
    background: #53CEDA !important;
}

/* Landing Page Description */
.landing-description {
  margin-top: 40px;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #181581;
}

.landing-short-description {
  margin-top: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #0D0F2C;


}

/* Bullet Points styling */
.landing-features {
  margin-top: 20px;
  list-style-type: none;
  padding-left: 0;
  font-size: 16px;
}

.landing-features li {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: var(--color-text);

}

.landing-features li::before {
  content: "✔";
  color: #000;
  margin-right: 8px;
}

/* Testimonial Section */

.testimonial-content {
  width: 50%;
}

.testimonial-cta-card .testimonial-content {
  width: 100%;
}

.testimonial-text {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: 0;
  color: #0D0F2C;
  margin-bottom: 28px;
}

.testimonial-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-left-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.testimonial-rating span {
  font-size: 34px !important;
  color: #F5A623;
}

.testimonial-author {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #0D0F2C;
  margin: 0;
}

.testimonial-watch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  background: #181581;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(17, 104, 175, 0.08);
}

.testimonial-watch-btn:hover {
  transform: translateY(-2px);
}


.testimonial-card {
  background: linear-gradient(91.92deg, #5E55B8 -20.26%, #5683C1 50.38%, #309FB3 121.02%);
  padding: 30px;
  border-radius: 10px;
  margin-top: 20px;
}

.testimonial-text {
  font-weight: 400;
  font-style: Regular;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #fff;
}

.testimonial-author {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #fff;

}

.testimonial-rating span {
  font-size: 18px;
  color: #ffac33;
}

/* Social Sharing Section */
.social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns for social buttons */
  gap: 20px;
  /* Space between buttons */
  margin-top: 24px;
}

/* Social Sharing Section */
#advanced-tools .social-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 3 columns for social buttons */
  gap: 20px;
  /* Space between buttons */
  margin-top: 24px;
}


.social-btn {
  border: 0.72px solid #E9E9E9;
  background-color: var(--color-white);
  box-shadow: 0px 0px 8.59px 0px #59595914;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  cursor: pointer;
  transition: background-color 0.3s ease;
  gap: 12px;
  font-weight: 500;
  font-size: 16.82px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: scale(1.03);
  /* Slightly scale the card */
  box-shadow: 0px 12px 28px rgba(35, 52, 130, 0.2);
  /* Stronger shadow */
  background-color: rgba(24, 21, 129, 0.09);
  /* Slight background change */
}


.social-btn:hover .social-icons {
  transform: translateY(-8px);
  /* Bounce effect on icon */
}




.social-btn:hover {
  background-color: rgba(24, 21, 129, 0.09);
}

.social-icons {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #F1F5FE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181581;
  font-size: 35px;
  transition: transform 0.3s ease;
}

/* section 3 */

/* Section Styling */
.track-comp-code-box {
  max-width: 990px;
  background: #53CEDA5E;
  margin-inline: auto;
  padding-inline: 100px;
  padding-block: 60px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Title Styling */
.track-comp-code-title h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #181581;
  margin-bottom: 20px;
  text-align: center;
}

.track-comp-code-title span {
  color: var(--color-primary);
}

/* Description Styling */
.track-comp-code-description {
  color: #0D0F2C;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;

}

.track-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 4px;
  background: #EDE941;
  color: #181581;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  min-width: 284px;
}

.track-link-btn:hover {
  background-color: #181581;
  color: #ffffff;
}

/* section 4 */

/* FAQ Section Styling */

/* Styling for Accordion */

.question-answer h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #181581;
  margin-bottom: 60px;
}


.faq-item {
  margin-bottom: 20px;
}
.faq-wrapper {
    margin-bottom: 20px;
}
.faq-question {
    background-color: unset;
    border: unset;
    padding-block: 15px;
    padding-inline: 20px;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0F172A;
    box-shadow: 0px 0px 20px 0px #10182814;
    border-radius: 10px;
    background: #ffffff;
    margin-bottom: 20px;
}


/* Hover effect for FAQ buttons */
.faq-question:hover {
  background-color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  margin-top: -25px;
  margin-bottom: 0;
  background-color: #fff;
  font-size: 18px;
  color: #0F172A;
  border-radius: 0 0 10px 10px;
  box-shadow: none;
  transition:
    max-height 0.5s ease-in-out,
    padding 0.3s ease,
    margin 0.3s ease,
    box-shadow 0.3s ease;
}

/* Active class for displaying answers */
.faq-answer.active {
  box-shadow: 0px 10px 20px -10px #10182814;
}

.faq-question:has(+ .faq-answer.active) {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  margin-bottom: 20px;
}

.faq-answer p {
  margin: 0;
}

/* FAQ Categories Buttons */
.faq-categories {
    background: #FFFFFF;
    box-shadow: 0px 6px 40px 0px #10182814;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    padding-inline: 30px;
    padding-block: 20px;
    margin-bottom: 40px;
}
.faq-categories button {
  flex: 1;
}
.faq-category {
  padding: 15px 15px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  /* Added transition */
  border-radius: 30px;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #181581;
  border: unset;
  background-color: #FFFFFF;
}

/* Active Button Styling */
.faq-category.active {
  background-color: #F2F4FE;
  color: #181581;
  border: 1px solid #181581;
  font-weight: 400;
  transform: scale(1.1);
  /* Slightly enlarges the button */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Adds shadow to the active button */
  transition: transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover Effect on Category Buttons */
.faq-category:hover {
  transform: scale(1.1);
  /* Slightly enlarges the button on hover */
}

/* Add smooth transition for when switching between the FAQ sections */
.faq-content {
  overflow: hidden;
}

.faq-section {
  transition: opacity 0.3s ease;
  opacity: 0;
  display: none;
}

.faq-section.active {
  display: block;
  opacity: 1;
}

/* Icon style */
.faq-question i {
  font-size: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #00161F26;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

.inner-img img {
  max-width: 750px;
  border: 5px dashed var(--color-primary-dark);
  padding: 10px;
}

.ins-img .inner-img img {
  max-width: 320px;
}


/* Fifth section */


.further-questions-inner {
  text-align: center;
}

.further-questions h2 {
  color: #181581;
  margin-bottom: 45px;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;

}

.fq-subtitle {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  color: #0F172A;
  margin: 0 auto 45px;
}

.fq-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fq-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0F172A;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

.fq-contact-item i {
  font-size: 22px;
  color: #0F172A;
  flex-shrink: 0;
}

.fq-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fq-logo-wrap img {
  max-width: 190px;
  width: 100%;
  height: auto;
  display: block;
}

.fq-contact-item a {
  color: #0F172A;
  text-decoration: none;
  transition: 0.3s;
}

.fq-contact-item a:hover {
  color: #181581;
}

/* Footer */
.custom-footer {
  background-color: #fff;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Images */
.footer-left img,
.footer-right img {
  max-height: 150px;
  width: auto;
  display: block;

}


.footer-left {
  justify-self: start;
  width: 33%;
}

.footer-left img {
  max-height: 120px;
  width: auto;
  display: block;
}

.footer-center {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 33%;
  justify-content: end;

}

.footer-center a {
  color: var(--color-primary-dark);
  font-size: 26px;
  text-decoration: none;
}

.footer-right {
  display: flex;
  text-align: center;

  justify-content: center;
  width: 33%;
}

.footer-right p {
  margin: 0;
  font-size: 18px;
  color: var(--color-text);
  font-weight: 600;
}
