/* Responsive About Video Embed (YouTube) */

/* Responsive YouTube Embed for About Section */
.about-video-embed {
  position: relative;
  width: 75vw;
  max-width: 75vw;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
}
.about-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}
@media (max-width: 1000px) {
  .about-video-embed {
    width: 95vw;
    max-width: 100vw;
    border-radius: 10px;
  }
  .about-video-embed iframe {
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .about-video-embed {
    width: 100vw;
    min-width: 0;
    border-radius: 6px;
  }
  .about-video-embed iframe {
    border-radius: 6px;
  }
}
/* Responsive About Video */
.about-video {
  text-align: center;
  margin-bottom: 32px;
}
.about-video video {
  width: 80%;
  max-width: 700px;
  height: 600px;
  border-radius: 16px;
}
@media (max-width: 800px) {
  .about-video video {
    max-width: 100vw;
    height: auto;
  }
}
@media (max-width: 500px) {
  .about-video {
    margin-bottom: 18px;
  }
  .about-video video {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}
:root {
  --st-patricks-blue: hsl(236, 57%, 28%);
  --amaranth-purple: hsl(335, 88%, 38%);
  --royal-blue-dark: hsl(231, 68%, 21%);
  --chrome-yellow: hsl(39, 100%, 52%);
  --space-cadet-1: hsl(230, 41%, 25%);
  --space-cadet-2: hsl(230, 59%, 16%);
  --winter-sky_50: hsla(335, 87%, 53%, 0.5);
  --purple-navy: hsl(236, 26%, 43%);
  --ksu-purple: hsl(275, 54%, 33%);
  --winter-sky: rgba(255, 255, 255, 0.844);

  --razzmatazz: hsl(335, 87%, 51%);

  --platinum: hsl(0, 0%, 90%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --rajah: hsl(29, 99%, 67%);

  --white: #24283a;

  --gradient-1: linear-gradient(
    90deg,
    d #6e9eec 0,
    #d4e1e9 51%,
    rgb(185, 205, 234)
  );

  --gradient-2: #4043eef8;

  /**
   * typography
   */

  --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.8rem;
  --fs-3: 3.6rem;
  --fs-4: 2.5rem;
  --fs-5: 2.4rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-12: 12px;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * shadow
   */

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

button,
input {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

img {
  height: auto;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Offset for fixed header */
}

body {
  background-color: rgba(255, 255, 255, 0.626);
  color: var(--purple-navy);
  font-size: 1.6rem;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.h2,
.h3 {
  font-family: var(--ff-source-sans-pro);
}

.btn {
  background-color: var(--gradient-2);
  background-size: 200%;
  color: #fff !important;
  padding: 12px 35px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  border-radius: 5px;
  transition: var(--transition-2);
  width: fit-content;
  cursor: pointer;
}

.btn:is(:hover, :focus) {
  background-position: right;
  background-color: #0c10ea;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  font-weight: var(--fw-600);
  font-size: var(--fs-8);
  line-height: 1.2;
  background: transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease,
    color 0.3s ease, transform 0.3s ease;
}

.btn-outline ion-icon {
  font-size: 18px;
}

.btn-outline:is(:hover, :focus) {
  border-color: #fff;
  background-color: #fff;
  color: #0f111c;
  transform: translateY(-2px);
}

.w-100 {
  width: 100%;
}

.banner-animation {
  animation: waveAnim 2s linear infinite alternate;
}

@keyframes waveAnim {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  100% {
    transform: translate(2px, 2px) rotate(1deg);
  }
}

.section {
  padding-block: var(--section-padding);
  padding-top: 90px;
}

.section-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-3);
  margin-block-end: 30px;
  max-width: max-content;
  margin-inline: auto;
}

.underline {
  position: relative;
}

.underline::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background-image: var(--gradient-2);
  border-radius: 10px;
}

:is(.service-card, .features-card) .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

:is(.service-card, .features-card, .blog-card) .text {
  font-size: var(--fs-8);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  --color: var(--white);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 14px;
  z-index: 4;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.header.active {
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
  --color: var(--space-cadet-1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  color: var(--color);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-3);
  height: 70px;
}

.nav-open-btn {
  color: var(--color);
  font-size: 32px;
  padding: 4px;
}

.navbar {
  background-color: white;
  position: fixed;
  top: 0;
  left: -280px;
  width: 100%;
  max-width: 280px;
  min-height: 100vh;
  padding: 20px;
  visibility: hidden;
  z-index: 1002;
  transition: 0.25s var(--cubic-in);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.navbar.active {
  transform: translateX(280px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.15);
}
@media (min-width: 992px) {
  .navbar {
    position: static;
    left: 0;
    top: 0;
    max-width: none;
    min-height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    visibility: visible !important;
    transform: none !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: auto;
  }
  .navbar.active {
    box-shadow: none;
    transform: none;
    visibility: visible;
  }
  .navbar-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: auto;
    background: none;
    padding: 0;
    margin: 0;
  }
  .navbar-item:not(:last-child) {
    border-bottom: none;
  }
  .nav-close-btn,
  .overlay {
    display: none !important;
  }
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.navbar-top .logo {
  color: white;
  font-size: 4.2rem;
  font-weight: var(--fw-700);
  height: 50px;
}

.nav-close-btn {
  color: var(--space-cadet-1);
  font-size: 2.8rem;
  padding: 4px;
}

.navbar-item:not(:last-child) {
  border-bottom: 1px solid var(--platinum);
}

.navbar-link {
  color: var(--space-cadet-1);
  font-size: 16px;
  font-weight: 500;
  padding-block: 12px;
}

.navbar-link:hover {
  color: #0c10ea;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_70);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-image: url('../images/hero-bg-bottom.png'),
    url('../images/hero-bg.png'), var(--gradient-1);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -280px bottom, center, center;
  background-size: auto, cover, auto;
  padding-block-start: 120px;
  padding-block-end: var(--section-padding);
}

.hero-content {
  margin-block-end: 50px;
}

.hero-subtitle {
  color: var(--chrome-yellow);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-7);
  margin-block-end: 15px;
}

.hero-title {
  color: var(--white);
  font-size: 36px;
  font-weight: bold;
  line-height: 40px;
}

.hero-sub-title {
  color: var(--chrome-yellow);
  font-family: var(--ff-source-sans-pro);
  font-size: 30px;
  margin-block-end: 15px;
}

.hero-text {
  color: var(--white);
  margin-top: 10px;
  font-size: 16px;
  margin-block-end: 30px;
  line-height: 20px;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-wrapper {
  display: flex;
  /* justify-content; */
}

.about-banner {
  margin-block-end: 30px;
}

.about .section-title {
  margin-inline: 0;
}

.about .underline::before {
  left: 0;
  transform: translateX(0);
}

.about-text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.stats-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.stats-icon {
  padding: 20px;
  background: #f3f6ff;
  border-radius: 10px;
  height: fit-content;
}

.stat-img {
  width: 28px;
  height: 28px;
}

.stats-card {
  display: flex;
  gap: 10px;
  padding: 15px;
}

.stats-title {
  color: var(--st-patricks-blue);
  font-size: 18px;
  font-weight: 600;
}

.stats-text {
  font-size: 14px;
}

/*-----------------------------------*\
  #OUR PARTNERS
\*-----------------------------------*/

.partners {
  padding: 60px 0;
  background: #ffffff;
}

.partners .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.swiper {
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  height: 100px;
  transition: all 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.swiper-slide img {
  max-width: 100%;
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.swiper-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #4169e1;
  width: 30px;
  border-radius: 5px;
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

/* Style the tab */
.tab {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: #f3f6ff;
  border: 1px solid #3c63da;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  padding: 5px 8px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #3c63da;
  color: white;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #3c63da;
  color: white;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.price-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.price-card {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: 0.5s;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.price-card:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
  transform: scale(1.1);
}

.price-card-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.price-card-logo {
  color: #0a82ec;
  font-size: 30px;
}

.price-card-title {
  font-size: 14px;
  font-weight: 500;
}

.price-items {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.84);
  margin-top: 20px;
  margin-bottom: 10px;
}

.price-description {
  font-size: 12px;
}
.price-description-items {
  display: grid;
  grid-template-columns: 30px auto;
  margin-bottom: 10px;
  place-items: center;
}

.price-circle-icon {
  font-size: 25px;
  width: 20px;
  height: 20px;
  color: green;
}

/*-----------------------------------*\
  #PROCESS
\*-----------------------------------*/
.process {
  background: radial-gradient(
    116.18% 118% at 50% 100%,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(218, 70, 239, 0.05) 41.83%,
    rgba(241, 244, 253, 0.07) 82.52%
  );
}

.process-container {
  margin-top: 40px;
  display: grid;
  gap: 100px;
  grid-template-columns: 1fr;
  padding: 0px 10px;
}

.process-timeline-item {
  font-size: 1em;
  line-height: 1.75em;
  border-top: 3px solid;
  border-image: linear-gradient(to right, #0c10ea 0%, #069b17 100%);
  border-image-slice: 1;
  border-width: 3px;
  margin: 0;
  padding: 20px !important;
  counter-increment: section;
  position: relative;
  color: black;
}

.process-timeline-item::before {
  content: counter(section);
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  height: 40px;
  width: 40px;
  background-color: white;
  border: 3px solid #1876f1;
  text-align: center;
  line-height: 1.25em;
  color: black;
  font-size: 1em;
}

.process-timeline-item:last-child::before {
  background-color: orange;
  color: white;
}

.process-timeline-item:nth-child(odd) {
  border-right: 3px solid;
  padding-left: 0;
}

.process-timeline-item:nth-child(odd)::before {
  left: 100%;
  margin-left: -19px;
}

.process-timeline-item:nth-child(even) {
  border-left: 3px solid;
  padding-left: 0;
}

.process-timeline-item:nth-child(even)::before {
  right: 100%;
  margin-right: -19px;
}

.process-timeline-item:first-child {
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.process-timeline-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.process-timeline-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-timeline-des {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 20px;
  margin-bottom: 15px;
}

.process-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-details li {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 18px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.process-details li::before {
  content: '•';
  color: #1876f1;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.process-result {
  margin-top: 40px;
  text-align: center;
}

.result-highlight {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  border: 2px solid rgba(24, 118, 241, 0.1);
}

.result-highlight p {
  font-size: 16px;
  font-weight: 500;
  margin: 8px 0;
  color: #333;
}

.result-highlight strong {
  color: #1876f1;
}

/*-----------------------------------*\
  #EVENTS GALLERY
\*-----------------------------------*/
.events-gallery {
  background: #f4f7ff;
}

.events-gallery .container {
  max-width: 1200px;
}

.events-gallery-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.events-gallery .section-title {
  margin-bottom: 12px;
}

.events-card-carousel {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}

.events-card-window {
  overflow: hidden;
  width: 100%;
}

.events-card-track {
  display: flex;
  transition: transform 0.45s ease;
}

.events-card-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.events-card-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(64, 93, 255, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.events-card-dots button.is-active {
  background: rgba(64, 93, 255, 0.85);
  transform: scale(1.15);
}

.events-card-nav {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, rgba(79, 108, 255, 0.95), rgba(51, 84, 235, 0.9));
  box-shadow: 0 14px 26px rgba(51, 84, 235, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.events-card-nav ion-icon {
  font-size: 22px;
}

.events-card-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(51, 84, 235, 0.3);
}

.events-card-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.event-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 35, 95, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  flex-shrink: 0;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 35, 95, 0.12);
}

.event-card-highlight {
  border: 2px solid rgba(64, 123, 255, 0.3);
  box-shadow: 0 24px 60px rgba(64, 123, 255, 0.2);
}

.event-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #4f6cff 0%, #6b8dff 100%);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  z-index: 2;
}

.event-card-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 190px;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-media img {
  transform: scale(1.05);
}

.event-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.event-card-label {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 108, 255, 0.12), rgba(79, 108, 255, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #405dff;
  font-size: 24px;
}

.event-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #162255;
  line-height: 1.4;
}

.event-card-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #3c4366;
  font-size: 1.05rem;
  font-weight: 500;
}

.event-card-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-card-meta ion-icon {
  font-size: 20px;
  color: #405dff;
}

.event-card-text {
  color: #4a4f65;
  line-height: 1.6;
  font-size: 0.95rem;
}

.events-media-gallery {
  background: linear-gradient(145deg, rgba(79, 108, 255, 0.12), rgba(22, 34, 85, 0.08));
  border-radius: 28px;
  padding: 36px 28px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(64, 93, 255, 0.12);
}

.events-media-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 30px;
}

.events-media-header .h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
  color: #152350;
}

.events-media-header p {
  color: #4a4f65;
  font-size: 0.96rem;
}

.events-media-viewer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.events-media-frame {
  flex: 1;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(120% 120% at 50% 20%, rgba(22, 34, 85, 0.22), rgba(22, 34, 85, 0.4));
  box-shadow: 0 30px 60px rgba(15, 35, 95, 0.25);
}

.events-media-frame img,
.events-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events-media-frame video {
  background: #000;
}

.events-media-nav {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, rgba(79, 108, 255, 0.95), rgba(51, 84, 235, 0.9));
  box-shadow: 0 12px 24px rgba(51, 84, 235, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.events-media-nav ion-icon {
  font-size: 22px;
}

.events-media-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(51, 84, 235, 0.3);
}

.events-media-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.events-media-thumbs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.events-media-thumb {
  width: 140px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 20px rgba(15, 35, 95, 0.12);
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.events-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events-media-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(15, 35, 95, 0.22);
}

.events-media-thumb.is-active {
  border-color: rgba(79, 108, 255, 0.9);
  box-shadow: 0 18px 36px rgba(79, 108, 255, 0.25);
}

/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.testimonials .container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.testimonials-left {
  flex-shrink: 0;
  width: 280px;
}

.testimonials .section-title {
  text-align: left;
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
}

.testimonials-navigation {
  display: flex;
  gap: 15px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  color: #666;
}

.testimonial-nav-btn:hover {
  background: #1876f1;
  color: #ffffff;
  border-color: #1876f1;
  transform: scale(1.05);
}

.testimonial-nav-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.testimonial-nav-btn:disabled:hover {
  background: #ffffff;
  color: #666;
  border-color: #e0e0e0;
  transform: scale(1);
}

.testimonials-right {
  flex: 1;
  min-width: 0;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 5px 0;
}

.testimonials-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  margin-top: 0;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 480px;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4169e1 0%, #6b8ef6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-icon ion-icon {
  font-size: 28px;
  color: #ffffff;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 5px;
}

.star {
  font-size: 18px;
  color: #fbbf24;
}

.star.empty {
  color: #e5e7eb;
}

.testimonial-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 10px;
  font-style: normal;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 0;
  border-top: none;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-flag {
  font-size: 18px;
  line-height: 1;
}

.author-title {
  font-size: 13.5px;
  color: #999999;
  font-weight: 400;
}

/*-----------------------------------*\
  #QUESTION ASK AND ANSWER
\*-----------------------------------*/

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #0c10ea;
}
.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #0c10ea;
  border: 1px solid #0c10ea;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded='true'] {
  color: #0c10ea;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 14px;
  font-weight: 300;
  margin: 2em 0;
}

/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.features-list > li:first-child {
  margin-block-end: 30px;
}

.features-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features-card .icon {
  background-image: var(--gradient-1);
  background-size: 200%;
  color: var(--white);
  min-width: max-content;
  max-width: max-content;
  font-size: 36px;
  padding: 22px;
  border-radius: 50%;
}

.features-card .icon ion-icon {
  --ionicon-stroke-width: 20px;
}

.features-card .title {
  margin-block-end: 10px;
}

.features-banner {
  margin-block: 40px;
}

.features-banner > img {
  max-width: max-content;
  margin-inline: auto;
}

/*-----------------------------------*\
  #NEWS PREVIEW
\*-----------------------------------*/

.news-preview {
  background: #0f111c;
  color: #f6f7ff;
  border-radius: 32px;
  margin-inline: 24px;
  padding: 80px 0;
}

.news-preview .container {
  max-width: 1140px;
}

.news-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.news-eyebrow {
  color: #ff5168;
  font-weight: var(--fw-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.news-preview .section-title {
  color: #ffffff;
  margin: 0;
  text-align: left;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.news-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.news-card-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 6px;
  border-radius: 24px;
}

.news-card-media {
  position: relative;
  height: 190px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.news-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
  pointer-events: none;
}

.news-card-media-1 {
  background: linear-gradient(135deg, #ff8085, #4a1bb2);
}

.news-card-media-2 {
  background: linear-gradient(135deg, #3d8bff, #1d1d52);
}

.news-card-media-3 {
  background: linear-gradient(135deg, #ffc857, #26224b);
}

.news-card-badge {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.1rem;
  font-weight: var(--fw-600);
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-card-content {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.news-card-title {
  font-size: 2rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: var(--fw-600);
}

.news-card-excerpt {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.news-card-date {
  margin-top: auto;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.news-view-all {
  white-space: nowrap;
}

/*-----------------------------------*\
  #NEWS PAGE LAYOUT
\*-----------------------------------*/

.news-page-hero {
  background: radial-gradient(circle at 20% 20%, #2d3750, #090b14 70%);
  color: #ffffff;
  padding: 160px 0 100px;
}

.news-page-hero .container {
  max-width: 960px;
}

.news-page-title {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  font-weight: var(--fw-700);
  line-height: 1.2;
  margin-bottom: 18px;
  color: inherit;
}

.news-page-subtitle {
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
}

.news-articles {
  background: #f5f7ff;
  padding: 80px 0 120px;
}

.news-articles .container {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.news-entry {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(18, 25, 56, 0.12);
  border: 1px solid rgba(18, 25, 56, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  scroll-margin-top: 120px;
}

.news-entry summary {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 48px 32px 48px;
  padding-right: 104px;
  position: relative;
  list-style: none;
}

.news-entry summary::-webkit-details-marker,
.news-entry summary::marker {
  display: none;
}

.news-entry summary::after {
  content: '\2193';
  position: absolute;
  top: 40px;
  right: 48px;
  font-size: 2.4rem;
  color: #4b5fff;
  transition: transform 0.3s ease;
}

.news-entry summary:focus-visible {
  outline: 2px solid rgba(75, 95, 255, 0.7);
  outline-offset: 0;
  border-radius: 22px;
}

.news-entry[open] summary::after {
  transform: rotate(180deg);
}

.news-entry-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.news-entry-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #635bff, #c850c0);
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
}

.news-entry-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #1c1f2b;
  line-height: 1.25;
  font-weight: var(--fw-700);
  max-width: 720px;
}

.news-entry-date {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(28, 31, 43, 0.6);
}

.news-entry-summary-excerpt {
  font-size: 1.5rem;
  color: rgba(28, 31, 43, 0.68);
  line-height: 1.6;
  max-width: 720px;
}

.news-entry-content {
  padding: 0 48px 48px;
  border-top: 1px solid rgba(18, 25, 56, 0.08);
}

.news-entry[open] {
  border-color: rgba(99, 91, 255, 0.25);
  box-shadow: 0 40px 90px rgba(18, 25, 56, 0.16);
}

.news-entry-content > * + * {
  margin-top: 20px;
}

.news-entry-image {
  margin-top: 18px;
}

.news-entry-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.news-entry-content p {
  color: #2e3354;
  line-height: 1.75;
}

.news-entry-content h3 {
  font-size: 2.2rem;
  margin-top: 36px;
  color: #1c1f2b;
  font-weight: var(--fw-700);
}

.news-entry-content h4 {
  font-size: 1.8rem;
  margin-top: 26px;
  color: #232745;
  font-weight: var(--fw-600);
}

.news-entry-content ul,
.news-entry-content ol {
  padding-left: 22px;
  margin-top: 16px;
  color: #2e3354;
}

.news-entry-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.news-entry-content li:last-child {
  margin-bottom: 0;
}

.news-entry-cta {
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(200, 80, 192, 0.1));
  border: 1px solid rgba(99, 91, 255, 0.18);
  border-radius: 20px;
  padding: 28px;
  margin-top: 32px;
}

.news-entry-cta strong {
  display: block;
  font-size: 1.6rem;
  color: #1c1f2b;
  margin-bottom: 10px;
}

.news-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.news-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #ffffff;
}

.news-comparison-table thead {
  background: linear-gradient(135deg, #635bff, #c850c0);
  color: #ffffff;
}

.news-comparison-table th,
.news-comparison-table td {
  padding: 18px 20px;
  border: 1px solid rgba(18, 25, 56, 0.08);
  text-align: left;
  vertical-align: top;
}

.news-comparison-table th {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-comparison-table td {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #2e3354;
}

.news-entry-content a {
  display: inline;
  color: #4b5fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(75, 95, 255, 0.4);
  transition: border-color 0.2s ease;
}

.news-entry-title a,
.news-entry-summary-excerpt a {
  display: inline;
}

.news-entry-content a:hover {
  border-color: rgba(75, 95, 255, 0.9);
}

/*-----------------------------------*\
  #CONTACT US
\*-----------------------------------*/
.contact-us {
  background-color: #f3f6ff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

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

.contact-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.contact-text {
  font-size: 16px;
  color: black;
  font-weight: 500;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
}

.icon-tele-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 11px;
  color: #0c10ea;
  margin-bottom: 10px;
}
.contact-social-tele {
  width: 120px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #0c10ea;
  border-radius: 10px;
  background-color: white;
  color: #0c10ea;
}

.contact-social-tele:hover {
  background: #0c10ea;
  color: white;
}

.contact-social-tele:hover .icon-tele-wrapper {
  color: white;
}

.icon-tele {
  font-size: 15px;
}

.contact-social-whatsapp {
  width: 120px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(34, 197, 94, 1);
  border-radius: 10px;
  background-color: white;
  color: rgba(34, 197, 94, 1);
}

.contact-social-whatsapp:hover {
  background: rgba(34, 197, 94, 1);
  color: white;
}

.contact-social-skype {
  width: 120px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 10px;
  background-color: white;
  color: #01a3e3;
}

.contact-social-skype:hover {
  background: #01a3e3;
  color: white;
}

.contact-social-mail {
  width: 260px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 10px;
  background-color: white;
  color: #01a3e3;
}

.contact-social-mail:hover {
  background: #01a3e3;
  color: white;
}
.mail-show {
  display: none;
}
.contact-social-mail:hover .mail-hide {
  transition: 0.3s;
  display: none;
}
.contact-social-mail:hover .mail-show {
  transition: 0.3s;
  display: block;
  cursor: pointer;
  color: white;
  text-align: center;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  margin-top: 100px;
  position: relative;
  width: 100%;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2.5rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1.4rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('https://i.ibb.co/wQZVxxk/wave.png');
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-position-x: 0px;
  }
}

/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background-color: var(--winter-sky);
  color: var(--white);
  font-size: 2rem;
  padding: 14px;
  border-radius: var(--radius-4);
  box-shadow: -3px 3px 15px var(--winter-sky_50);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .section-title {
    --fs-3: 3.6rem;
  }

  /**
   * HEADER
   */

  .header .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: auto;
    color: var(--color);
    transition: all 0.3s ease;
  }

  .header.active .btn {
    color: var(--space-cadet-1);
    border-color: var(--space-cadet-1);
  }

  .hero-title {
    font-size: 56px;
    line-height: 60px;
  }

  /* Style the tab */
  .tab {
    gap: 20px;
    font-size: 16px;
  }

  /* Style the buttons that are used to open the tab content */
  .tab button {
    padding: 10px 16px;
  }

  .price-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .process-container {
    margin-top: 80px;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
  }

  .process-timeline-item {
    padding: 40px !important;
  }

  /**
   * ABOUT
   */

  .stats-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /**
   * BLOG
   */

  .blog-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    padding: 30px;
  }

  .blog-card .banner {
    margin-block-end: 0;
  }

  .blog-card .banner a {
    height: 100%;
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .contact-img {
    width: 78px;
    height: 78px;
  }

  .contact-text {
    font-size: 22px;
    color: black;
    font-weight: 500;
  }

  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:not(:last-child) {
    margin-block-end: 0;
  }

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 600px;
    display: grid;
    place-items: center;
  }

  .hero-content {
    margin-block-end: 0;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  /**
   * FEATURES
   */

  .features-list > li:first-child {
    margin-block-end: 0;
  }

  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.4rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 950px;
  }

  /**
   * HEADER
   */

  .header {
    padding-block: 20px;
  }

  .overlay,
  .nav-open-btn,
  .navbar-top {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .header .btn {
    margin-inline-start: 0;
  }

  .navbar-list {
    display: flex;
    gap: 25px;
  }

  .navbar-item:not(:last-child) {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--color);
  }

  /**
   * HERO
   */

  .hero {
    min-height: 700px;
  }

  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 80px;
  }

  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /**
   * FEATURES
   */

  .features-list {
    grid-template-columns: 1fr;
  }

  .features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .features .section-title {
    grid-column: 1 / 4;
  }

  .features-banner {
    margin-block: 0;
    display: grid;
    place-items: center;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
  }

  .footer-brand .text {
    max-width: 45ch;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1200px;
  }

  .section-title {
    --fs-3: 3.6rem;
  }

  /**
   * HERO
   */

  .hero {
    min-height: 800px;
  }

  /**
   * BLOG
   */

  .blog-list {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card {
    height: 100%;
  }

  .blog-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/*-----------------------------------*\
  #TEAM MEMBERS
\*-----------------------------------*/

.team {
  background: linear-gradient(
    135deg,
    var(--gradient-1),
    rgba(255, 255, 255, 0.95)
  );
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23667eea" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
  z-index: 0;
}

.team .container {
  position: relative;
  z-index: 1;
}

.team .section-text {
  text-align: center;
  margin-bottom: 60px;
  font-size: var(--fs-6);
  color: var(--space-cadet-1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(103, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 60px rgba(31, 38, 135, 0.5);
  border-color: rgba(103, 126, 234, 0.3);
}

.team-card-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.founder-card {
  background: linear-gradient(135deg, var(--gradient-2) 0%, #667eea 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.founder-card::before {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2) 0%,
    rgba(255, 107, 107, 0.2) 100%
  );
}

.founder-card::after {
  content: '👑';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  opacity: 0.8;
}

.team-name {
  color: var(--st-patricks-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  margin-bottom: 12px;
  font-family: var(--ff-source-sans-pro);
}

.founder-card .team-name {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-title {
  color: var(--razzmatazz);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.team-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--razzmatazz), var(--chrome-yellow));
  border-radius: 2px;
}

.founder-card .team-title {
  color: var(--chrome-yellow);
}

.founder-card .team-title::after {
  background: linear-gradient(90deg, var(--chrome-yellow), white);
}

.team-desc {
  font-size: var(--fs-8);
  line-height: 1.7;
  color: var(--purple-navy);
  text-align: left;
}

.founder-card .team-desc {
  color: rgba(255, 255, 255, 0.95);
}

/*-----------------------------------*\
  #GLOBAL PRESENCE
\*-----------------------------------*/

.global-presence {
  background: linear-gradient(
    135deg,
    var(--space-cadet-2) 0%,
    var(--st-patricks-blue) 50%,
    var(--space-cadet-1) 100%
  );
  position: relative;
  overflow: hidden;
}

.global-presence::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.global-presence .container {
  position: relative;
  z-index: 1;
}

.global-presence .section-title {
  color: white;
  text-align: center;
}

.global-presence .section-text {
  text-align: center;
  margin-bottom: 60px;
  font-size: var(--fs-6);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.global-map-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.world-map {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.map-dot {
  cursor: pointer;
  filter: drop-shadow(0 0 8px currentColor);
}

.continents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.continent-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.continent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--chrome-yellow), var(--razzmatazz));
  transition: width 0.3s ease;
}

.continent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.continent-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.continent-name {
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  color: white;
  margin-bottom: 10px;
  font-family: var(--ff-source-sans-pro);
}

.continent-countries {
  font-size: var(--fs-8);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.stat-item:hover::before {
  animation: shine 0.6s ease-in-out;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--chrome-yellow), var(--razzmatazz));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: var(--fw-700);
  color: white;
  margin-bottom: 8px;
  font-family: var(--ff-source-sans-pro);
}

.stat-label {
  font-size: var(--fs-8);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: var(--fw-500);
}

/* Animations */
@keyframes shine {
  0% {
    opacity: 0;
    transform: rotate(45deg) translateX(-100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translateX(100%);
  }
}

/* Responsive Design for Team and Global sections */
@media (max-width: 767px) {
  .partners-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .swiper-slide {
    height: 80px;
    padding: 15px;
  }

  .swiper-slide img {
    height: 45px;
  }

  .testimonials .container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .testimonials-left {
    width: 100%;
  }

  .testimonials .section-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .testimonials-navigation {
    justify-content: flex-start;
  }

  .testimonial-card {
    width: 90vw;
    padding: 30px 25px;
  }

  .quote-icon {
    width: 48px;
    height: 48px;
  }

  .quote-icon ion-icon {
    font-size: 24px;
  }

  .testimonial-text {
    font-size: 14.5px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .events-gallery {
    padding: 60px 0;
  }

  .events-gallery-header {
    margin-bottom: 30px;
  }

  .event-card-content {
    padding: 20px;
  }

  .events-card-carousel {
    gap: 12px;
    margin-bottom: 24px;
  }

  .events-card-nav {
    min-width: 42px;
    height: 42px;
  }

  .events-card-dots {
    margin-bottom: 28px;
  }

  .event-card {
    border-radius: 16px;
  }

  .events-media-gallery {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .events-media-viewer {
    gap: 12px;
  }

  .events-media-frame {
    border-radius: 18px;
    max-height: 320px;
  }

  .events-media-nav {
    min-width: 46px;
    height: 46px;
  }

  .events-media-thumbs {
    gap: 12px;
  }

  .events-media-thumb {
    width: calc(50% - 6px);
    border-radius: 14px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .events-card-carousel {
    gap: 16px;
  }

  .events-card-nav {
    min-width: 48px;
    height: 48px;
  }

  .events-media-frame {
    max-height: 420px;
  }

  .testimonials .container {
    flex-direction: column;
    gap: 35px;
  }

  .testimonials-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .testimonials .section-title {
    font-size: 2.2rem;
    margin-bottom: 0;
  }

  .testimonial-card {
    width: 100%;
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .founder-card {
    grid-column: 1 / -1;
  }

  .continents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .founder-card {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
  }

  .continents-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .global-map-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .testimonials .container {
    flex-direction: row;
    gap: 60px;
  }

  .testimonials-left {
    width: 280px;
  }

  .testimonials .section-title {
    font-size: 2.5rem;
  }

  .testimonial-card {
    width: 480px;
  }
}

@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-card {
    grid-column: 1 / -1;
  }
}
.language {
  display: flex;
  justify-content: end;
  width: 100%;
}
.flag {
  width: 40px;
  height: 22px;
  margin-left: 10px;
}
.russia {
  box-shadow: 0px 0px 0px 0.4px;
}

/*-----------------------------------*\
  #COBE GLOBE STYLES
\*-----------------------------------*/

.cobe-globe-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.globe-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cobe-globe {
  display: block;
  border-radius: 20px;
  cursor: grab;
  transition: all 0.3s ease;
}

#cobe-globe:active {
  cursor: grabbing;
}

.globe-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid var(--chrome-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.globe-controls {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.controls-title {
  color: white;
  font-family: var(--ff-source-sans-pro);
  font-weight: var(--fw-700);
  font-size: var(--fs-5);
  margin-bottom: 15px;
  text-align: center;
  background: linear-gradient(135deg, var(--chrome-yellow), var(--razzmatazz));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.controls-desc {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 30px;
  font-size: var(--fs-8);
}

.country-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--ff-poppins);
}

.country-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.country-btn.active {
  background: linear-gradient(135deg, var(--chrome-yellow), var(--razzmatazz));
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.country-btn .flag {
  font-size: 2rem;
  width: auto;
  height: auto;
  margin: 0;
  box-shadow: none;
}

.country-btn .country-name {
  font-weight: var(--fw-600);
  font-size: var(--fs-8);
  flex: 1;
}

.country-btn .client-count {
  font-size: var(--fs-9);
  opacity: 0.8;
  font-weight: var(--fw-500);
}

.globe-controls .client-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.globe-controls .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 20px 15px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.globe-controls .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.globe-controls .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.globe-controls .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: var(--fw-700);
  color: white;
  margin-bottom: 5px;
  font-family: var(--ff-source-sans-pro);
}

.globe-controls .stat-label {
  font-size: var(--fs-9);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: var(--fw-500);
}

/* Responsive Design for Cobe Globe */
@media (min-width: 768px) {
  .cobe-globe-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .country-buttons {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .cobe-globe-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
  }

  .globe-wrapper {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .globe-wrapper {
    height: 400px;
  }

  #cobe-globe {
    width: 400px !important;
    height: 400px !important;
  }

  .country-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .country-btn {
    padding: 12px 15px;
    gap: 10px;
  }

  .country-btn .flag {
    font-size: 1.5rem;
  }

  .country-btn .country-name {
    font-size: var(--fs-9);
  }

  .country-btn .client-count {
    font-size: 0.75rem;
  }
}

@media (max-width: 1100px) {
  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-preview {
    margin-inline: 12px;
  }
}

@media (max-width: 720px) {
  .news-preview {
    border-radius: 20px;
    padding: 60px 0;
    margin-inline: 0;
  }

  .news-preview-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-view-all {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    border-radius: 20px;
  }

  .news-card-media {
    height: 160px;
  }

  .news-card-title {
    font-size: 1.7rem;
  }

  .news-card-excerpt {
    font-size: 1.35rem;
  }

  .news-page-hero {
    padding: 120px 0 70px;
  }

  .news-page-title {
    font-size: 3.2rem;
  }

  .news-page-subtitle {
    font-size: 1.6rem;
  }

  .news-articles .container {
    gap: 36px;
  }

  .news-entry summary {
    padding: 28px 24px 20px;
    padding-right: 70px;
  }

  .news-entry summary::after {
    top: 28px;
    right: 24px;
  }

  .news-entry-content {
    padding: 0 24px 24px;
  }

  .news-entry-title {
    font-size: 2.2rem;
  }

  .news-entry-content h3 {
    font-size: 1.9rem;
  }

  .news-entry-content h4 {
    font-size: 1.6rem;
  }
}
