@charset "UTF-8";
/* CSS Document */
:root {
    --primary-blue: #1f4d97;
    --secondary-blue: #2fc6ff;
    --dark-bg: #111827;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --text-light-gray: #666666;
    --border-color: #e5e7eb;
    --font-main: 'Figtree', sans-serif;
    --font-display: "Open Sans", sans-serif;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-style: normal;
}
* {
    box-sizing: border-box;
     transition: all 0.3s ease-in-out;
}
.page-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 80px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}
h1 {
    font-size: 4rem;
}
h2, h3 {
    font-size: clamp(1.5rem, 2vh, 2.5rem);
}
h4, h5, h6 {
    font-size: 1.5rem;
}
p, a, ul {
    font-size: clamp(1rem, 1vh, 1.25rem);
}
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}
.btn-primary:hover {
    opacity: 0.9;
}
.btn-secondary {
    background-color: transparent;
    color: var(--secondary-blue);
    border: 2px solid var(--secondary-blue);
}
.btn-secondary:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
}
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #0284c7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    cursor: pointer;
}
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio → 9 / 16 = 0.5625 */
    overflow: hidden;
    border-radius: 12px; /* optional */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* optional */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.main {
    display: flex;
    flex-direction: column;
    gap: clamp(4rem, 5vh, 5rem);
    width: 100%;
    margin: 0 auto;
    padding: clamp(1rem, 2vh, 2rem);
    max-width: 1280px;
}
.hero-section, .about-section, .features-section, .teams-section, .alert-section, .testimonials-section.form-section, .faq-section, .cta-section, .site-footer {
    width: 100%;
}
.main-section {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem,10vw,6rem);
    width: 100%;
    margin: 0 auto;
    padding: 0;
    padding: clamp(1.5rem,2vw,3rem);
}
.container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: clamp(.5rem, 2vw, 2rem);
}
/* CSS from section:header */
.site-header {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding:24px 30px;
    position: sticky;
    top: 20px;
    z-index: 100;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.header-container {
    display: flex;
    display-direction:row;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: block;
    width:inherit;
}
    .header-logo-img {
        width: 150px;
    }
    .header-logo-tagline {
        font-size: 0.85rem;
    }

/*.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}*/
/* CSS from section:hero */
.hero-section {
    background-image: url("../img/landing-page/bg-hero-section.png");
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    /*padding: clamp(1rem, 3vw, 2.5rem);*/
    color: var(--white);
}
.hero-container {
    gap: 48px;
    padding-top:clamp(4rem, 3vw, 7.5rem);
    padding-bottom:clamp(4rem, 3vw, 7.5rem);
}
.hero-video-wrapper {
    display:flex;
    flex: 1;
    padding: 8px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
    width:100%;
    height:365px;
}
.hero-video-player {
    width:100%;
    height:100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--dark-bg);
}
.hero-video-thumb {
    width: 100%;
    display: block;
    aspect-ratio: 576 / 320;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1vh, 2rem);
}
.hero-content h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 3vw, 5rem);
    line-height: clamp(3rem, 4vw, 6rem);
}
.hero-content h1 span {
    color: var(--secondary-blue);
}
.hero-content p {
    font-size:clamp(1.5rem, 2vw, 2rem);
    line-height: 1.5;
    /*max-width: 512px;*/
}
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}
.btn-large {
    padding: 16px 30px;
    font-size: 1.25rem;
}
.btn-icon {
    margin-right: 8px;
}
/* CSS from section:about */
.about-section {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1), 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-text h2 {
    font-family: var(--font-display);
    color: var(--primary-blue);
    /*font-size: 2rem;*/
    line-height: 1.2;
    font-weight: 400;
}
.about-text p {
    /*  font-size: 16px;
*/ line-height: 1.625;
    color: #333333;
}
.about-image {
    width: 100%;
    border-radius: 16px;
    display: block;
    height: 440px;
    background: url("../img/report-images/sanctions-compliance-ubo-screening-subject-matter.png") no-repeat center top;
    overflow: hidden;
}
.about-image img {}
/* CSS from section:features */
.features-section {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 30px;
}
.features-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.features-title {
    font-family: var(--font-display);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.feature-card {
    background-color: var(--white);
    border: 1px solid #b1c8e2;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.feature-icon-wrapper.color-1 {
    background-color: #dbeafe;
}
.feature-icon-wrapper.color-2 {
    background-color: #dcfce7;
}
.feature-icon-wrapper.color-3 {
    background-color: #f3e8ff;
}
.feature-icon-wrapper.color-4 {
    background-color: #ffedd5;
}
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}
.feature-card p {
    font-size: 1rem;
    line-height: 1.3;
    color: var(--text-light-gray);
}
/* CSS from section:teams */
.teams-section {
    padding: 40px;
    border-radius: 30px;
}
.teams-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
}
.teams-title {
    font-family: var(--font-display);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
}
.teams-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 257px;
}
.team-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.team-icon-wrapper.color-1 {
    background-color: #dbeafe;
}
.team-icon-wrapper.color-2 {
    background-color: #dcfce7;
}
.team-icon-wrapper.color-3 {
    background-color: #fee2e2;
}
.team-item p {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.33;
    color: var(--text-dark);
}
/* CSS from section:alert */
.alert-section {
    background-color: #fefce8;
    border: 1px solid #fef08a;
    border-radius: 30px;
    padding: 60px 20px;
}
.alert-box {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 19px;
}
.alert-box h3 {
    font-family: var(--font-display);
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
}
.alert-box h3 img {
    display: inline-block;
    vertical-align: middle;
}
.alert-box p {
    color: #374151;
    font-size: 1.5rem;
    line-height: 1.65;
}
/* CSS from section:testimonials */
.testimonials-section {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1), 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.testimonials-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.testimonials-header h4 {
    color: var(--text-light-gray);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.testimonials-header h2 {
    color: var(--text-gray);
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
}
.testimonials-container {
    display: grid;
    flex-direction: row;
   grid-template-columns: 1.8fr 1fr;
    gap: 48px;
    align-items: center;
}
.testimonial-card {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 26px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.quote-icon {
    flex-shrink: 0;
    width: 48px;
    height: 41px;
    margin-top: -10px;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.testimonial-content h5 {
    color: var(--secondary-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.7px;
}
.testimonial-content blockquote, .testimonial-content p {
    font-size: 1rem;
    line-height: 1.2;
}
.testimonial-content blockquote {
    font-weight: 500;
    margin-bottom: 10px;
}
.testimonial-content p {
    color: #e5e7eb;
    font-weight: 400;
}
/* SECTION: Testimonials */
.testimonials-section {
    background-color: #f9fafb;
}
.testimonials-section .section-title-tag {
    color: var(--color-primary);
}
.testimonial-card {
    background-color: #1f4d97;
    border-radius: 16px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.testimonial-content { /* Node I171:3686;153:1116 */
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
    padding: 32px;
}
.quote-icon {
    width: 48px;
    height: 40.91px;
    flex-shrink: 0;
}
.testimonial-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.testimonial-text h4 {
    width: 100%;
    height: auto;
    color: var(--color-primary); /* style_116 for title */
    font-family: var(--font-secondary);
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    text-transform: uppercase;
}
.quote-body {
    color: #fff;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}
.quote-context {
    color: #e5e7eb;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 17px;
    margin: 0;
}


/* ==== SECTION :: Testimonial Carousel ===== */

/* ==== CAROUSEL WRAPPER ==== */
.carousel {
  position: relative;
  overflow: hidden;
     width: 100%;
  padding:clamp(1rem,1vw,2rem); /* space for arrows + dots */
}
/* JS CAROUSEL */

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 36px;
    width:100%;
  transition: transform 0.3s ease;
  will-change: transform;
}

.carousel-card {
    flex: 0 0 100%;
  flex-shrink: 0;
  width: 100%;
    padding: clamp(1rem, 1vw,2rem);
  box-sizing: border-box;
}
.carousel-dots {
    display: flex;
    padding: 24px 0;
    justify-content: center;
    gap:10px;
    margin-top: 12px;
}
.carousel-dots .dot {
    width: 24px;
  height: 24px;
  background-color: rgba(47, 198, 255, 0.3);
  border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}
.carousel-dots .dot.active {
    background-color: var(--secondary-blue);
}

/* ==== ARROWS ==== */
.carousel-arrow {
  position: absolute;
  /*top: 40%;*/
  transform: translateY(-50%);
  background:url("../img/icons/chevron-left.svg") no-repeat center center;
  border:none;
  color: #333;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
    width:48px;
    height:48px;
   opacity: 1;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.carousel-arrow:hover {
  background: #f0f0f0;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.carousel-arrow.inactive {
  pointer-events: none;
  filter: grayscale(100%) brightness(80%);
  opacity: 0.5;
}

.carousel-arrow.prev {
  left: 0;
    background: url("../img/icons/chevron-left.svg") no-repeat center center;
}

.carousel-arrow.next {
  right: 0;
    background: url("../img/icons/chevron-right.svg") no-repeat center center;
}



/* ==== SECTION :: Testimonial Video ===== */
.testimonial-video-wrapper {
    display: flex;
flex-direction: row;
align-items: center;
padding: 20px;
gap: 10px;
width: 400px;
height: 440px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0px 25px 50px 0px rgba(0, 0, 0, 0.25);
}

.testimonial-video-player {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--dark-bg);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}


.testimonial-video-player .video-container {
    /*padding-bottom: 126.25%;*/padding-bottom:106.25%;
}
.testimonial-video-thumb {
    width: 100%;
    display: block;
}
.pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: rgba(47, 198, 255, 0.3);
}
.dot.active {
    background-color: var(--secondary-blue);
}
/* CSS from section:form */
.form-section {
    background-color: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1), 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.form-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1132px;
}
.form-header h2 {
    font-family: var(--font-display);
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
}
.form-header p {
    color: var(--text-gray);
    font-size: 1.5rem;
    line-height: 1.4;
}
.trial-form {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
    max-width: 1132px;
}
.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 34px;
    cursor: pointer;
}
.upload-title {
    color: #374151;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
}
.upload-subtitle {
    color: #6b7280;
    font-size: 1rem;
}
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-fields input, .form-fields textarea {
    width: 100%;
    padding: 20px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-gray);
}
.form-fields input::placeholder, .form-fields textarea::placeholder {
    color: #adaebc;
}
.form-fields textarea {
    resize: vertical;
}
.btn-submit {
    background-color: var(--secondary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-submit:hover {
    background-color: #25b4e6;
}
.form-terms {
    color: var(--text-gray);
    font-size: 1rem;
}
/* SECTION | PRICING PAGE | FAQ's */
.faq-intro {
    flex:auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .faq-main-title {
    margin: 0;
    color: #183e6d;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
  }

  .faq-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .faq-contact-text {
    margin: 0;
    color: #4b5563;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 24px;
  }

  .faq-contact-text strong {
    font-weight: 700;
    color: #111827; /* Slightly darker for emphasis */
  }

  .faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    transition: all 0.3s ease;
  }

  .btn-icon {
    width: 18px;
    height: 18px;
  }

  .btn-primary {
    background-color: #2fc6ff;
    color: #ffffff;
  }
  
  .btn-primary:hover {
    opacity: 0.9;
  }

  .btn-secondary {
    background-color: transparent;
    color: #2fc6ff;
    border: 2px solid #2fc6ff;
    padding-top: 14px; /* Adjust padding to account for border */
    padding-bottom: 14px;
  }

  .btn-secondary:hover {
    background-color: #2fc6ff;
    color: #ffffff;
  }

.faq-section {
  background-color: var(--white);
  padding: 40px;
  border-radius: 30px;
}


.faq-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
      width: 100%;;
      max-width: 100%;
}
.faq-title {
  font-family: var(--font-display);
  color: #183e6d;
  font-size: 36px;
  font-weight: 700;
}
.faq-list {
  background-color: #f9fbff;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 30px;
align-items: flex-start;
    width:100%;
      width: auto;
      max-width: 100%;
}
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
    background-color: #f9fbff;
    display: flex;
    flex-direction: column;
    width:100%;
    
}
.faq-item summary {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1b263b;
    width:100%;
}
.faq-item summary span.question{
  display: flex;
  justify-content:flex-start;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #1b263b;
    width:90%;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

.icon-toggle {
    
  width: 24px;
  height: 24px;
  background-image:url("../img/landing-page/Plus.svg");
  background-repeat: no-repeat;
  background-size:24px 24px;
  transition: transform 0.3s ease;
}

.faq-item[open] .icon-toggle {
  background-image: url("../img/landing-page/Minus.svg");
    background-size:24px 24px;
  transform: rotate(180deg);
}

.faq-item p {
    display: inline-flex;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #1b263b;
    opacity: 1;
  transition: none;
}
.faq-item .icon-plus { display: block; }
.faq-item .icon-minus { display: none; }
.faq-item[open] .icon-plus { display: none; }
.faq-item[open] .icon-minus { display: block; }


/* CSS from section:cta */
.cta-section {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 30px;
}
.cta-container {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}
.cta-container h2 {
    font-family: var(--font-display);
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
}
.cta-container p {
    color: var(--text-gray);
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 592px;
}
.cta-buttons {
    display: flex;
    gap: 24px;
}
.cta-buttons .btn {
    padding: 16px 30px;
    font-size: 1.25rem;
    gap: 12px;
}
.btn-primary-alt {
    background-color: var(--secondary-blue);
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* CSS from section:footer */
.site-footer {
    background-color: var(--dark-bg);
    color: #9ca3af;
    padding: 60px 60px 40px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 17px;
    max-width: 284px;
}
.footer-logo img {
    height: 32px;
}
.footer-info p {
    font-size: 1rem;
    line-height: 1.5;
}
.social-links {
    display: flex;
    gap: 24px;
    align-items: center;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-grow: 1;
    justify-content: space-around;
}
.link-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.link-column h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}
.link-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.link-column a {}
.footer-bottom {
    border-top: 1px solid var(--text-gray);
    padding-top: 20px;
    text-align: center;
    font-size: 1rem;
}

/* ==== VIDEO LODAER ==== */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
}

.video-container video {
  width: 100%;
  height:auto;
  object-fit: cover;
  display: block;
}

.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 2;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--accent, #00bfff);
  width: 0;
  transition: width 0.2s linear;
  z-index: 2;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
}



/* === DESKTOP (default) === */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: static;
  transform: none;
  transition: none;
}

.main-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
}

.main-nav ul a {
    display:block;
    padding:.3rem .2rem;
    margin:0;
    border-bottom:1px solid #fff;
 
}
.main-nav ul a:hover {
    display:block;
    padding:.3rem .2rem;
    color:var(--secondary-blue);
    border-bottom:1px solid var(--secondary-blue); 
}
/* ========== HAMBURGER ========== */
#mobile-nav-toggle {
  display: none;
  background:url("../img/icons/ico-hamburger.svg") center center no-repeat;
    background-size: 36px 36px;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.4rem;
  color: #00bfff;
    height:30px;
    width:30px;
    border-radius: 5px;
}

#mobile-nav-toggle:hover {
  background:url("../img/icons/ico-hamburger.svg") center center no-repeat;
    background-size: 36px 36px;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.4rem;
  color: #00bfff;
}

/* === Mobile < 1024px === */
@media (max-width: 1023px) {
 .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
  }
    .main-nav ul{
        margin-top:5rem;
        display:flex;
        flex-direction: column;
        justify-content: flex-start;
        width:100%;
    }
    .main-nav ul li, .main-nav ul li a{
        display: block;
     width:100%;
        
    }
    .main-nav a{
        width:100%;
    }
  .main-nav.active {
    transform: translateX(0%);
  }

  #mobile-nav-toggle {
    display: block;
    position: relative;
    z-index: 1100;
   background:url("../img/icons/ico-hamburger.svg") center center no-repeat;
  }
}
.floating-chat-icon { /* Node 169:2888 */
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-blue); /* style_213 */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1001;
}
.floating-chat-icon:hover{
    opacity:0.7;
}
.floating-chat-icon img { /* SVG I169:2888;169:2884 */
    width: 24px;
    height: 24px;
}
.backtoTop{
    position:fixed;
    Width:48px!important;
    height:48px!important;
    bottom:10px;
    right:0;
    left:0;
    margin:0 auto;
    background:var(--secondary-blue) url("../img/nav-arrow.svg") no-repeat center center;
    border:1px solid #fff;
    border-radius: 50px;
    transform: rotate(180deg);
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.backtoTop:hover{
    opacity:.7;
}
