@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  right: 0;
  top: 30px;
  z-index: 999;
  width: 100%;
  margin-bottom: 50px;
}

@media (min-width: 1900px) {
  .nav-container {
    top: 40px;
  }
}

@media (max-width: 992px) {
  .nav-container {
    top: 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    margin-bottom: 40px;
    position: relative;
    top: 0;
  }
}

@media (max-width: 480px) {
  .nav-container {
    margin-bottom: 30px;
    position: relative;
    top: 0;
  }
}

.navbar {
  background-color: #323232;
  border-radius: 50px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 700px;
  border: solid 1px #fff;
  color: #fff;
}

@media (min-width: 1900px) {
  .navbar {
    width: 1000px;
    border-radius: 60px;
    padding: 5px 40px;
  }
}

@media (max-width: 992px) {
  .navbar {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
    padding: 5px 13px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.navbar .nav-logo {
  font-weight: 700;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navbar .nav-logo a {
  display: contents;
}

@media (min-width: 1900px) {
  .navbar .nav-logo {
    font-size: 24px;
  }
}

.navbar .nav-logo svg {
  width: 60px;
  height: 60px;
}

@media (min-width: 1900px) {
  .navbar .nav-logo svg {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .navbar .nav-logo svg {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .navbar .nav-logo svg {
    width: 30px;
    height: 30px;
  }
}

.navbar .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1900px) {
  .navbar .nav-links {
    gap: 50px;
  }
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (min-width: 1900px) {
  .navbar .nav-links a {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .navbar .nav-links a {
    font-size: 14px;
  }
}

.navbar .nav-links a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .navbar .nav-links {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    border-top: solid 1px #afafaf;
    gap: 20px;
    width: 100%;
  }
}

@media (min-width: 1900px) {
  .navbar .account-btn {
    font-size: 20px;
    padding: 12px 24px;
  }
}

.zeeker-hero-section {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #333333;
  color: #F7F6F4;
  padding: 60px 0;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .zeeker-hero-section {
    padding: 50px 0px;
  }
}

.zeeker-hero-section .hero {
  text-align: center;
  padding: 0 0 50px;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .hero {
    padding: 0 0 70px;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .hero {
    padding: 0 0 30px;
  }
}

.zeeker-hero-section .hero-title {
  font-size: 4.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 0;
  border-right: 0;
  overflow: hidden;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .hero-title {
    font-size: 7rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .zeeker-hero-section .hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}

.zeeker-hero-section .hero-title .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 15px;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .hero-title .middle {
    margin: 0 30px;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .hero-title .middle {
    margin: 10px 0;
  }
}

.zeeker-hero-section .hero-title .middle .arrow-icon {
  margin: 0 auto;
  display: inline;
  text-align: center;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .hero-title .middle .arrow-icon {
    padding: 0 50px;
  }
  .zeeker-hero-section .hero-title .middle .arrow-icon svg {
    width: 120px;
    height: 55px;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .hero-title .middle .arrow-icon {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .hero-title .middle .arrow-icon {
    padding: 0 15px;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .zeeker-hero-section .hero-title .middle .arrow-icon {
    padding: 0 10px;
  }
}

.zeeker-hero-section .hero-title .middle .arrow-icon svg {
  width: 88px;
  height: 39px;
}

@media (max-width: 992px) {
  .zeeker-hero-section .hero-title .middle .arrow-icon svg {
    width: 70px;
    height: 31px;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .hero-title .middle .arrow-icon svg {
    width: 60px;
    height: 27px;
  }
}

@media (max-width: 480px) {
  .zeeker-hero-section .hero-title .middle .arrow-icon svg {
    width: 50px;
    height: 22px;
  }
}

.zeeker-hero-section .hero-subtitle {
  font-family: "Times New Roman", Times, serif;
  font-size: 2.75rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.1;
  color: #F7F6F4;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .hero-subtitle {
    font-size: 4rem;
    max-width: 1500px;
    line-height: 1.2;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .hero-subtitle {
    font-size: 2rem;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .hero-subtitle {
    font-size: 1.8rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .zeeker-hero-section .hero-subtitle {
    font-size: 1.5rem;
  }
}

.zeeker-hero-section .features-title {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #F7F6F4;
  text-align: left;
  font-style: italic;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .features-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .features-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .features-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .zeeker-hero-section .features-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}

.zeeker-hero-section .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .features-grid {
    gap: 40px;
    margin-bottom: 100px;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .features-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .features-grid {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    margin-bottom: 40px;
  }
}

.zeeker-hero-section .feature-card {
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  gap: 20px;
  background: #434141;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .feature-card {
    border-radius: 20px;
    padding: 25px 35px;
    gap: 30px;
  }
}

.zeeker-hero-section .feature-card svg {
  width: 60px;
  height: 60px;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .feature-card svg {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .feature-card {
    padding: 25px;
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .feature-card {
    padding: 10px 20px;
    min-height: 46px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    flex-direction: row;
  }
  .zeeker-hero-section .feature-card svg {
    width: 30px;
    height: 30px;
  }
}

.zeeker-hero-section .feature-card .feature-title {
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
  color: #F7F6F4;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .feature-card .feature-title {
    font-size: 32px;
    margin-bottom: 5px;
  }
}

@media (max-width: 992px) {
  .zeeker-hero-section .feature-card .feature-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .feature-card .feature-title {
    font-size: 18px;
    margin-bottom: 0px;
    display: inline-block;
    line-height: 1;
  }
}

.zeeker-hero-section .feature-card .feature-description {
  color: #ccc;
  line-height: 1.4;
}

@media (min-width: 1900px) {
  .zeeker-hero-section .feature-card .feature-description {
    font-size: 22px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .zeeker-hero-section .feature-card .feature-description {
    font-size: 15px;
    display: inline;
  }
}

/* Text rotation containers */
.text-rotation-container,
.bottom-text-container {
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
}

.end-text {
  font-style: italic;
}

@media (min-width: 1900px) {
  .end-text {
    font-size: 7rem;
  }
}

/* Individual text items */
.rotated-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  opacity: 0;
  max-height: 0;
  overflow: visible;
  -webkit-transition: opacity 0.6s ease, max-height 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, max-height 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, max-height 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, max-height 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  width: 100px;
}

@media (min-width: 1900px) {
  .rotated-text {
    width: 180px;
    font-size: 7rem;
  }
}

.text-start {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

/* Active text state */
.rotated-text.visible {
  opacity: 1;
  max-height: 6rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (min-width: 1900px) {
  .rotated-text.visible {
    max-height: 9rem;
  }
}

.account-btn {
  background-color: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #F7F6F4;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  background-color: #333333;
  padding: 8px 15px;
  border-radius: 8px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-family: 'GeorgiaCustom';
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #575555;
}

@media (min-width: 1900px) {
  .account-btn {
    font-size: 22px;
    padding: 12px 24px;
    border-radius: 12px;
    gap: 15px;
  }
}

.account-btn:hover {
  background-color: #262626;
}

@media (max-width: 768px) {
  .account-btn {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .account-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.account-btn .circle {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.account-btn .circle svg path {
  stroke: #000;
}

@media (min-width: 1900px) {
  .account-btn .circle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .account-btn .circle {
    width: 20px;
    height: 20px;
  }
}

.account-btn .circle svg {
  width: 11px;
  height: 8px;
}

@media (min-width: 1900px) {
  .account-btn .circle svg {
    width: 18px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .account-btn .circle svg {
    width: 9px;
    height: 6px;
  }
}

.Custome-action {
  border: solid 1px #fff;
  margin: 0px auto;
  margin-bottom: 20px;
  font-size: 25px;
}

@media (min-width: 1900px) {
  .Custome-action {
    font-size: 38px;
    padding: 15px 35px;
    margin-bottom: 40px;
  }
}

.Custome-action .circle {
  background-color: #fff;
}

.Custome-action .circle svg path {
  stroke: #000;
}

.loader_logo {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin: 0 auto;
  width: 60px;
  height: 60px;
  top: -20px;
}

@media (min-width: 1900px) {
  .loader_logo {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .loader_logo {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .loader_logo {
    width: 22px;
    height: 22px;
    margin-top: 6px;
  }
}

.loader_logo .icon {
  width: 40px;
  height: 40px;
  position: absolute;
  opacity: 0;
  -webkit-animation: icon-change 4s infinite ease-in-out;
          animation: icon-change 4s infinite ease-in-out;
}

@media (min-width: 1900px) {
  .loader_logo .icon {
    width: 70px;
    height: 70px;
  }
}

.loader_logo .icon path {
  fill: #F7F6F4;
  stroke: none;
}

@media (max-width: 768px) {
  .loader_logo .icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .loader_logo .icon {
    width: 25px;
    height: 25px;
  }
}

.loader_logo .icon:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.loader_logo .icon:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.loader_logo .icon:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.loader_logo .icon:nth-child(4) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

@-webkit-keyframes icon-change {
  0%,
  20% {
    opacity: 0;
  }
  25%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes icon-change {
  0%,
  20% {
    opacity: 0;
  }
  25%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* ADD NEW CSS FOR TEXT ROTATION - BEGINNING */
.info-text {
  text-align: left;
}

@media (min-width: 1900px) {
  .info-text {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .info-text {
    text-align: left;
  }
}

.zeeker-call-to-actions {
  /* Responsive styles */
}

.zeeker-call-to-actions .cta-container {
  background-image: url("https://cdn.zeeker.com/assets/images/website/wave.svg");
  background-size: cover;
  background-position: top;
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 480px) {
  .zeeker-call-to-actions .cta-container {
    background-position: left;
  }
}

.zeeker-call-to-actions .cta-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.2;
}

.zeeker-call-to-actions .cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.zeeker-call-to-actions .cta-button .svg-icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.zeeker-call-to-actions .cta-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.zeeker-call-to-actions .button-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: white;
  margin-left: 12px;
}

.zeeker-call-to-actions .button-icon svg {
  width: 16px;
  height: 16px;
}

.zeeker-call-to-actions .button-icon svg path {
  stroke: #000;
}

.zeeker-call-to-actions .sparkle-icon {
  margin-right: 10px;
}

.zeeker-call-to-actions .cta-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  opacity: 0.8;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .zeeker-call-to-actions .cta-heading {
    font-size: 2rem;
  }
  .zeeker-call-to-actions .cta-container {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .zeeker-call-to-actions .cta-heading {
    font-size: 1.75rem;
  }
  .zeeker-call-to-actions .cta-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .zeeker-call-to-actions .cta-tagline {
    font-size: 1rem;
  }
  .zeeker-call-to-actions .cta-container {
    padding: 40px 15px;
  }
}

/* Zeeker Info Section Styles */
.zeeker-info-section {
  background-color: #F7F6F4;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

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

/* Large Screen Support */
@media screen and (min-width: 1900px) {
  .container {
    max-width: 1800px;
    padding: 0 40px;
  }
}

/* Section Title */
.zeeker-section-title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #28282d;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: zeeker-fadeSlideUp 0.8s forwards;
          animation: zeeker-fadeSlideUp 0.8s forwards;
  line-height: 1.2;
}

@media screen and (min-width: 1900px) {
  .zeeker-section-title {
    font-size: 70px;
    margin-bottom: 50px;
  }
}

/* Flex Container */
.flex-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 1900px) {
  .flex-div {
    gap: 60px;
  }
}

/* Left Section */
.left-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 40px;
  position: relative;
  max-width: 600px;
  padding-left: 0;
}

@media screen and (min-width: 1900px) {
  .left-section {
    max-width: 800px;
    padding: 30px 60px;
    padding-left: 0;
  }
}

/* Right Section */
.right-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  min-height: 570px;
}

/* Video */
.zeeker-video {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 10%;
  left: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

@media screen and (min-width: 1900px) {
  .zeeker-video {
    border-radius: 25px;
  }
}

.zeeker-video.active {
  opacity: 1;
}

/* Timeline */
.timeline {
  position: relative;
}

@media screen and (min-width: 1900px) {
  .timeline {
    margin-left: 20px;
  }
}

/* Timeline Items */
.timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
  position: relative;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 5px;
  border: solid 1px transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1900px) {
  .timeline-item {
    margin-bottom: 55px;
  }
}

.timeline-item.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.highlight {
  border: solid 1px #434cfc;
  border-radius: 10px;
}

.timeline-item.highlight .icon {
  color: #434cfc;
}

.timeline-item.highlight h2 {
  color: #434cfc;
}

/* Icon Container */
.icon-container {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 1900px) {
  .icon-container {
    width: 80px;
    height: 80px;
  }
}

/* Icon */
.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 40px;
  font-weight: bold;
}

@media screen and (min-width: 1900px) {
  .icon {
    font-size: 45px;
  }
}

/* Content */
.content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
}

@media screen and (min-width: 1900px) {
  .content {
    padding-left: 30px;
  }
}

.content h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #333333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media screen and (min-width: 1900px) {
  .content h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

/* Button */
.btn-create {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #434cfc;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 20px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 1900px) {
  .btn-create {
    padding: 20px 36px;
    font-size: 24px;
    border-radius: 12px;
    margin-top: 50px;
  }
}

.btn-create .circle {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background-color: #fff;
}

.btn-create .circle path {
  stroke: #434cfc;
}

@media screen and (min-width: 1900px) {
  .btn-create .circle {
    margin-left: 20px;
    width: 40px;
    height: 40px;
  }
  .btn-create .circle svg {
    width: 24px;
    height: 16px;
  }
}

.btn-create:hover {
  background-color: #434cfc;
}

.btn-create:hover .circle {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* Mobile Carousel Styles */
.mobile-carousel {
  display: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}

.carousel-slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  padding: 20px;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.bullet-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  gap: 10px;
  position: relative;
  z-index: 99;
}

.bullet {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1900px) {
  .bullet {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.bullet.active {
  background-color: #434cfc;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.mobile-text {
  text-align: center;
  margin-top: 20px;
  font-size: 18px !important;
  font-weight: bold;
  color: #333;
  min-height: 60px;
}

@media screen and (min-width: 1900px) {
  .mobile-text {
    font-size: 28px;
    min-height: 100px;
  }
}

.mobile-button {
  display: none;
  margin: 30px auto 0;
  width: 80%;
  max-width: 250px;
}

@media screen and (min-width: 1900px) {
  .mobile-button {
    max-width: 400px;
    font-size: 24px;
  }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .zeeker-section-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 992px) {
  .flex-div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .left-section {
    max-width: 100%;
    width: 100%;
    padding: 20px 0;
  }
  .right-section {
    width: 100%;
  }
  .timeline-item {
    margin-bottom: 40px;
  }
  .timeline-item .icon {
    font-size: 35px;
  }
  .timeline-item h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-section-title {
    font-size: 32px;
    text-align: center;
  }
  .left-section .timeline {
    display: none;
  }
  .right-section {
    min-height: 300px;
  }
  .mobile-carousel {
    display: block;
  }
  .timeline-item {
    margin-bottom: 30px;
  }
  .icon-container {
    width: 40px;
    height: 40px;
  }
  .content h2 {
    font-size: 18px;
  }
  .mobile-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .btn-create {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-section-title {
    font-size: 26px;
    margin-bottom: 0px;
  }
  .right-section {
    min-height: 220px;
  }
  .mobile-text {
    font-size: 25px;
    line-height: 1.2;
  }
}

/* Animations */
@-webkit-keyframes zeeker-fadeSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes zeeker-fadeSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.zeeker-testimonials {
  background-color: #343434;
  padding: 60px 0 100px;
  overflow: hidden;
  position: relative;
  color: #fff;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials {
    padding: 100px 0 150px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials {
    padding: 50px 0 70px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials {
    padding: 40px 0 60px;
  }
}

.zeeker-testimonials .zeeker-section-title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
  opacity: 0;
  -webkit-animation: zeeker-fadeSlideUp 0.8s forwards;
          animation: zeeker-fadeSlideUp 0.8s forwards;
  line-height: 1.1;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-section-title {
    font-size: 70px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .zeeker-testimonials .zeeker-section-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

.zeeker-testimonials .zeeker-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-container {
    max-width: 1800px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px;
  }
}

.zeeker-testimonials .zeeker-left-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-left-section {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.zeeker-testimonials .zeeker-testimonial-slider {
  position: relative;
  height: 500px;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-testimonial-slider {
    height: 600px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-testimonial-slider {
    margin: 0 auto;
    max-width: 450px;
    height: 550px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-testimonial-slider {
    height: 340px;
  }
}

.zeeker-testimonials .zeeker-testimonial-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.zeeker-testimonials .zeeker-testimonial-container.active {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.zeeker-testimonials .zeeker-testimonial-card {
  border: solid 2px #414141;
  border-radius: 30px 30px 0 30px;
  padding: 40px;
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-testimonial-card {
    padding: 60px;
    border-radius: 40px 40px 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-testimonial-card {
    padding: 30px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-testimonial-card {
    padding: 20px;
    border-radius: 20px 20px 0 20px;
  }
}

.zeeker-testimonials .zeeker-testimonial-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.3;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-testimonial-card h3 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-testimonial-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-testimonial-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.zeeker-testimonials .zeeker-quote-icon {
  margin-bottom: 25px;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-quote-icon {
    margin-bottom: 35px;
  }
  .zeeker-testimonials .zeeker-quote-icon svg {
    width: 80px;
    height: 63px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-quote-icon {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-quote-icon {
    margin-bottom: 15px;
  }
  .zeeker-testimonials .zeeker-quote-icon svg {
    width: 40px;
    height: 32px;
  }
}

.zeeker-testimonials .zeeker-testimonial-text {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 30px;
  padding-left: 20px;
  color: #e0e0e0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-testimonial-text {
    font-size: 32px;
    line-height: 1.6;
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-testimonial-text {
    font-size: 20px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-testimonial-text {
    font-size: 16px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}

.zeeker-testimonials .zeeker-testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.zeeker-testimonials .zeeker-author-avatar {
  height: 60px;
  width: 60px;
  margin-right: 15px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 100px;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-author-avatar {
    height: 80px;
    width: 80px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-author-avatar {
    height: 50px;
    width: 50px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-author-avatar {
    height: 40px;
    width: 40px;
    margin-right: 10px;
  }
}

.zeeker-testimonials .zeeker-author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.zeeker-testimonials .zeeker-author-info {
  text-align: left;
}

.zeeker-testimonials .zeeker-author-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2px;
  color: #fff;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-author-name {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-author-name {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-author-name {
    font-size: 14px;
  }
}

.zeeker-testimonials .zeeker-author-title {
  font-size: 14px;
  color: #aaa;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-author-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-author-title {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-author-title {
    font-size: 12px;
  }
}

.zeeker-testimonials .zeeker-author-title b {
  color: #434cfc;
  font-weight: 600;
}

.zeeker-testimonials .zeeker-slider-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  width: 100%;
  bottom: -20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  padding: 0;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-slider-navigation {
    bottom: -12%;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-slider-navigation {
    bottom: -20%;
    width: 100%;
  }
}

.zeeker-testimonials .zeeker-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-arrow {
    width: 64px;
    height: 64px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-arrow {
    width: 40px;
    height: 40px;
  }
}

.zeeker-testimonials .zeeker-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.zeeker-testimonials .zeeker-arrow svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-arrow svg {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-arrow svg {
    width: 20px;
    height: 20px;
  }
}

.zeeker-testimonials .zeeker-arrow.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.zeeker-testimonials .zeeker-arrow.prev:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}

.zeeker-testimonials .zeeker-right-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-right-section {
    padding-left: 60px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-right-section {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 60px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-right-section {
    gap: 15px;
    margin-top: 50px;
  }
}

.zeeker-testimonials .zeeker-stats-card {
  background-color: #333;
  border-radius: 20px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  border: solid 1px #9a9a9a;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-stats-card {
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-stats-card {
    max-width: 600px;
    padding: 25px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-stats-card {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    width: 100%;
  }
}

.zeeker-testimonials .zeeker-stats-card:nth-child(1) {
  -webkit-animation: zeeker-fadeSlideUp 0.8s forwards 0.2s;
          animation: zeeker-fadeSlideUp 0.8s forwards 0.2s;
}

.zeeker-testimonials .zeeker-stats-card:nth-child(2) {
  -webkit-animation: zeeker-fadeSlideUp 0.8s forwards 0.4s;
          animation: zeeker-fadeSlideUp 0.8s forwards 0.4s;
}

.zeeker-testimonials .zeeker-stats-card:nth-child(3) {
  -webkit-animation: zeeker-fadeSlideUp 0.8s forwards 0.6s;
          animation: zeeker-fadeSlideUp 0.8s forwards 0.6s;
}

.zeeker-testimonials .zeeker-stats-icon {
  width: 60px;
  height: 60px;
  margin-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-stats-icon {
    width: 80px;
    height: 80px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-testimonials .zeeker-stats-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-stats-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
}

.zeeker-testimonials .zeeker-stats-icon img {
  width: 100%;
  height: 100%;
  fill: white;
}

.zeeker-testimonials .zeeker-stats-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.zeeker-testimonials .zeeker-stats-number {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  line-height: 1.1;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-stats-number {
    font-size: 54px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1024px) {
  .zeeker-testimonials .zeeker-stats-number {
    font-size: 32px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-stats-number {
    font-size: 24px;
    line-height: 1;
  }
}

.zeeker-testimonials .zeeker-stats-text {
  line-height: 1.3;
  font-size: 25px;
  color: #e0e0e0;
}

@media screen and (min-width: 1900px) {
  .zeeker-testimonials .zeeker-stats-text {
    font-size: 30px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 1024px) {
  .zeeker-testimonials .zeeker-stats-text {
    font-size: 18px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-testimonials .zeeker-stats-text {
    font-size: 16px;
    line-height: 1.2;
  }
}

@keyframes zeeker-fadeSlideUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes zeeker-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zeeker-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.trusted-section {
  padding: 20px 0;
  text-align: center;
  border-top: solid 1px #6e6e6e;
  background-color: #343434;
  width: 100%;
}

@media screen and (min-width: 1900px) {
  .trusted-section {
    padding: 80px 40px;
  }
}

@media screen and (max-width: 768px) {
  .trusted-section {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  .trusted-section {
    padding: 30px 15px;
  }
}

.trusted-section .trusted-heading {
  font-size: 28px;
  margin-bottom: 50px;
  color: #e0e0e0;
  font-weight: 300;
}

@media screen and (min-width: 1900px) {
  .trusted-section .trusted-heading {
    font-size: 36px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .trusted-section .trusted-heading {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 480px) {
  .trusted-section .trusted-heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.logo-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0;
}

@media screen and (min-width: 1900px) {
  .logo-carousel {
    max-width: 1600px;
    padding: 20px 0;
  }
}

.logo-carousel:hover .logo-container {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.logo-carousel .logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: scrollLogos 30s linear infinite;
          animation: scrollLogos 30s linear infinite;
}

.logo-carousel .logo-slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 10px;
}

@media screen and (min-width: 1900px) {
  .logo-carousel .logo-slide {
    width: 200px;
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .logo-carousel .logo-slide {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 480px) {
  .logo-carousel .logo-slide {
    margin: 0 15px;
    width: 100px;
    height: 100px;
  }
}

.logo-carousel .logo-slide:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

.logo-carousel .logo-slide img {
  width: 100%;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
}

@-webkit-keyframes scrollLogos {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-180px * 8));
            transform: translateX(calc(-180px * 8));
    /* Logo width × number of unique logos */
  }
}

@keyframes scrollLogos {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-180px * 8));
            transform: translateX(calc(-180px * 8));
    /* Logo width × number of unique logos */
  }
}

@media screen and (max-width: 350px) {
  .zeeker-testimonials .zeeker-testimonial-text {
    font-size: 14px;
  }
  .zeeker-testimonials .zeeker-stats-number {
    font-size: 20px;
  }
  .zeeker-testimonials .zeeker-stats-text {
    font-size: 14px;
  }
}

.zeeker-info-crads {
  padding: 100px 0;
  background-color: #F7F6F4;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads {
    padding: 150px 0;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads {
    padding: 100px 15px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads {
    padding: 80px 15px;
  }
}

.zeeker-info-crads .zeeker-sticky-card {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: solid 1px #000;
  margin: 100px auto;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  height: 700px;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads .zeeker-sticky-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    min-height: 600px;
    margin: 70px auto;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-sticky-card {
    margin: 50px auto;
    min-height: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-sticky-card {
    border-radius: 12px;
    margin: 30px auto;
    min-height: 400px;
  }
}

.zeeker-info-crads .zeeker-card-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f0f0f0;
  padding: 80px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads .zeeker-card-left {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-card-left {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-card-left {
    padding: 30px 20px;
  }
}

.zeeker-info-crads .zeeker-card-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #28282d;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads .zeeker-card-right {
    min-height: 300px;
  }
}

.zeeker-info-crads .zeeker-card-right svg {
  width: 100%;
  height: 100%;
  z-index: 9;
}

.zeeker-info-crads .zeeker-card-right img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-card-right img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.zeeker-info-crads .zeeker-card-right #mobile-placeholder {
  border-radius: 40px;
}

@media screen and (max-width: 767px) {
  .zeeker-info-crads .zeeker-card-right #mobile-placeholder {
    width: 200px !important;
    height: 400px;
  }
}

.zeeker-info-crads .zeeker-card-right .mobile-view {
  width: 300px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-card-right .mobile-view {
    width: 250px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-card-right .mobile-view {
    width: 200px;
  }
}

.zeeker-info-crads .zeeker-card-right .loader_logo {
  top: 160px;
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-card-right .loader_logo {
    top: 120px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-card-right .loader_logo {
    top: 70px !important;
  }
  .zeeker-info-crads .zeeker-card-right .loader_logo .icon {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.zeeker-info-crads .zeeker-card-right .placeholder {
  opacity: 0;
  display: none;
}

.zeeker-info-crads .zeeker-card-right .placeholder.active {
  opacity: 1;
  display: block;
}

.zeeker-info-crads .light-mode video {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.zeeker-info-crads .navigation-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 20px;
  color: white;
  width: 100%;
  border-top: solid 1px #757575;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .navigation-bar {
    padding: 12px 15px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .navigation-bar {
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.zeeker-info-crads .zeeker-view {
  margin-top: 20px;
  padding: 20px;
  background-color: #222;
  border-radius: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-view {
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-view {
    padding: 10px;
    margin-top: 15px;
  }
}

.zeeker-info-crads .zeeker-content {
  background-color: #333;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-content {
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-content {
    padding: 10px;
    margin-top: 15px;
  }
}

.zeeker-info-crads .toggle-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .toggle-container {
    gap: 10px;
  }
}

.zeeker-info-crads .toggle-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .toggle-labels {
    gap: 10px;
    font-size: 14px;
  }
}

.zeeker-info-crads .toggle-switch {
  position: relative;
  width: 55px;
  height: 30px;
  background-color: #555;
  border-radius: 25px;
  cursor: pointer;
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .toggle-switch {
    width: 45px;
    height: 25px;
  }
}

.zeeker-info-crads .toggle-switch.mobile .toggle-button {
  -webkit-transform: translateX(22px);
          transform: translateX(22px);
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .toggle-switch.mobile .toggle-button {
    -webkit-transform: translateX(18px);
            transform: translateX(18px);
  }
}

.zeeker-info-crads .toggle-button {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .toggle-button {
    width: 15px;
    height: 15px;
  }
}

.zeeker-info-crads .theme-toggle {
  position: relative;
  background-color: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.zeeker-info-crads .theme-toggle:hover {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.zeeker-info-crads .sun {
  color: white;
  font-size: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .sun {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .sun {
    font-size: 20px;
  }
}

.zeeker-info-crads .sun svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .sun svg {
    width: 25px;
    height: 25px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .sun svg {
    width: 20px;
    height: 20px;
  }
}

.zeeker-info-crads .zeeker-logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-logo {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-logo {
    font-size: 18px;
  }
}

.zeeker-info-crads .search-bar {
  background-color: #333;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .search-bar {
    padding: 8px 15px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .search-bar {
    padding: 6px 10px;
    margin-top: 15px;
  }
}

.zeeker-info-crads .search-bar input {
  background-color: transparent;
  border: none;
  color: white;
  padding: 8px;
  width: 100%;
  font-size: 16px;
  outline: none;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .search-bar input {
    font-size: 14px;
    padding: 6px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .search-bar input {
    font-size: 12px;
    padding: 4px;
  }
}

.zeeker-info-crads .search-bar input::-webkit-input-placeholder {
  color: #888;
}

.zeeker-info-crads .search-bar input:-ms-input-placeholder {
  color: #888;
}

.zeeker-info-crads .search-bar input::-ms-input-placeholder {
  color: #888;
}

.zeeker-info-crads .search-bar input::placeholder {
  color: #888;
}

.zeeker-info-crads .search-bar svg {
  width: 20px;
  height: 20px;
  fill: #888;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .search-bar svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .search-bar svg {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
}

.zeeker-info-crads .zeeker-card-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #222;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads .zeeker-card-title {
    font-size: 38px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-card-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-card-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.zeeker-info-crads .zeeker-card-subtitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
  max-width: 90%;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads .zeeker-card-subtitle {
    font-size: 26px;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-card-subtitle {
    font-size: 22px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-card-subtitle {
    font-size: 18px;
    line-height: 1.3;
  }
}

.zeeker-info-crads .zeeker-engagement-cards {
  position: absolute;
  top: 34%;
  left: -100px;
  -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px);
          transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px);
  -webkit-animation: zeekerScroll 30s linear infinite;
          animation: zeekerScroll 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads .zeeker-engagement-cards {
    top: 30%;
    left: -80px;
    -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px);
            transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px);
  }
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-engagement-cards {
    top: 25%;
    left: -60px;
    -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px);
            transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px);
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-engagement-cards {
    top: 20%;
    left: -40px;
    -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px);
            transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px);
  }
}

.zeeker-info-crads .zeeker-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(32.5% - 10px);
          flex: 0 0 calc(32.5% - 10px);
  height: 100%;
  margin-right: 18px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media screen and (max-width: 992px) {
  .zeeker-info-crads .zeeker-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33% - 10px);
            flex: 0 0 calc(33% - 10px);
    margin-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .zeeker-info-crads .zeeker-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(40% - 10px);
            flex: 0 0 calc(40% - 10px);
    margin-right: 10px;
  }
}

@media screen and (max-width: 480px) {
  .zeeker-info-crads .zeeker-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
    margin-right: 8px;
  }
}

.zeeker-info-crads .zeeker-card:hover {
  -webkit-transform: translateZ(20px) scale(1.02);
          transform: translateZ(20px) scale(1.02);
}

.zeeker-info-crads .zeeker-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.zeeker-info-crads .zeeker-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#1a1a1a), color-stop(5%, rgba(26, 26, 26, 0.8)), color-stop(15%, rgba(26, 26, 26, 0.4)), color-stop(25%, transparent), color-stop(75%, transparent), color-stop(85%, rgba(26, 26, 26, 0.4)), color-stop(95%, rgba(26, 26, 26, 0.8)), to(#1a1a1a));
  background: linear-gradient(to right, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 5%, rgba(26, 26, 26, 0.4) 15%, transparent 25%, transparent 75%, rgba(26, 26, 26, 0.4) 85%, rgba(26, 26, 26, 0.8) 95%, #1a1a1a 100%);
  pointer-events: none;
}

@-webkit-keyframes fadeSequence {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeSequence {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  31% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes zeekerScroll {
  0% {
    -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(0%);
            transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(0%);
  }
  100% {
    -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(-50%);
            transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(-50%);
  }
}

@keyframes zeekerScroll {
  0% {
    -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(0%);
            transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(0%);
  }
  100% {
    -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(-50%);
            transform: rotateX(60deg) rotateZ(-48deg) translateZ(-143px) translateX(-50%);
  }
}

@media screen and (max-width: 992px) {
  @-webkit-keyframes zeekerScroll {
    0% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(0%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(0%);
    }
    100% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(-50%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(-50%);
    }
  }
  @keyframes zeekerScroll {
    0% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(0%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(0%);
    }
    100% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(-50%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-120px) translateX(-50%);
    }
  }
}

@media screen and (max-width: 768px) {
  @-webkit-keyframes zeekerScroll {
    0% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(0%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(0%);
    }
    100% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(-50%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(-50%);
    }
  }
  @keyframes zeekerScroll {
    0% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(0%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(0%);
    }
    100% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(-50%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-100px) translateX(-50%);
    }
  }
}

@media screen and (max-width: 480px) {
  @-webkit-keyframes zeekerScroll {
    0% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(0%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(0%);
    }
    100% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(-50%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(-50%);
    }
  }
  @keyframes zeekerScroll {
    0% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(0%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(0%);
    }
    100% {
      -webkit-transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(-50%);
              transform: rotateX(60deg) rotateZ(-48deg) translateZ(-80px) translateX(-50%);
    }
  }
}

/* Footer Styles */
.footer {
  border-top: solid 1px #403f3f;
  background-color: #323232;
  color: #ffffff;
  padding: 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* Top section containing logo and trust badges */
  /* Bottom section containing copyright, links and social icons */
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 600;
  width: auto !important;
  height: auto !important;
  background-color: transparent !important;
}

.logo-icon {
  background-color: #ffffff;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.trust-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.avatar-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #0f0f0f;
  margin-left: -10px;
  background-color: #cccccc;
  overflow: hidden;
}

.avatar:first-child {
  margin-left: 0;
}

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

.trust-text {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 300;
}

.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.social-icon:hover {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 30px 20px;
    gap: 40px;
  }
  .footer-top, .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .social-icons {
    margin-top: 20px;
  }
}

.zeeker-contact-form {
  padding: 50px 0 100px;
  /* Left column - Form area */
  /* Right column - Contact info */
  /* Responsive styles */
}

@media (max-width: 768px) {
  .zeeker-contact-form {
    padding: 50px 0;
  }
}

.zeeker-contact-form .flex-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.zeeker-contact-form .form-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.zeeker-contact-form h1 {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 60px;
}

.zeeker-contact-form form {
  width: 100%;
  margin-bottom: 40px;
}

.zeeker-contact-form .input-group {
  margin-bottom: 20px;
  position: relative;
}

.zeeker-contact-form .two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.zeeker-contact-form .two-columns .input-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.zeeker-contact-form input, .zeeker-contact-form textarea, .zeeker-contact-form select {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #F7F6F4;
  font-size: 1.1rem;
  padding: 10px 0;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  border-color: #000000 #000 #a0a0a0;
  border-radius: 0px;
  background-color: #4b4b4b !important;
  padding: 16px;
  font-family: "Times New Roman", Times, serif;
}

.zeeker-contact-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23777777%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-position: right 5px center;
  background-size: 10px;
  padding-right: 20px;
  cursor: pointer;
}

.zeeker-contact-form input::-webkit-input-placeholder, .zeeker-contact-form textarea::-webkit-input-placeholder, .zeeker-contact-form select::-webkit-input-placeholder {
  color: #888;
}

.zeeker-contact-form input:-ms-input-placeholder, .zeeker-contact-form textarea:-ms-input-placeholder, .zeeker-contact-form select:-ms-input-placeholder {
  color: #888;
}

.zeeker-contact-form input::-ms-input-placeholder, .zeeker-contact-form textarea::-ms-input-placeholder, .zeeker-contact-form select::-ms-input-placeholder {
  color: #888;
}

.zeeker-contact-form input::placeholder, .zeeker-contact-form textarea::placeholder, .zeeker-contact-form select::placeholder {
  color: #888;
}

.zeeker-contact-form input:focus, .zeeker-contact-form textarea:focus, .zeeker-contact-form select:focus {
  border-color: #999;
}

.zeeker-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.zeeker-contact-form .checkbox-group {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.zeeker-contact-form .checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.zeeker-contact-form .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
  color: #ccc;
}

.zeeker-contact-form .checkmark {
  height: 24px;
  width: 24px;
  min-width: 24px;
  border: 1px solid #444;
  margin-right: 10px;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.zeeker-contact-form .checkbox-input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 10px;
  border: solid #e73c17;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.zeeker-contact-form .submit-text {
  margin-right: 15px;
}

.zeeker-contact-form .submit-button {
  border: none;
  background: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F7F6F4;
  font-size: 1rem;
}

.zeeker-contact-form .circle-button {
  width: 40px;
  height: 40px;
  background-color: #e73c17;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 10px;
}

.zeeker-contact-form .contact-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 150px;
}

.zeeker-contact-form .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.zeeker-contact-form .logo .contact-item {
  margin: 0px;
}

.zeeker-contact-form .logo-shape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.zeeker-contact-form .logo-shape svg {
  width: 30px;
  height: 30px;
}

.zeeker-contact-form .contact-category {
  color: #999;
  font-size: 2rem;
  margin-bottom: 8px;
}

.zeeker-contact-form .contact-item {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.zeeker-contact-form .contact-item:hover {
  text-decoration: underline;
}

@media screen and (max-width: 992px) {
  .zeeker-contact-form .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .zeeker-contact-form .form-section {
    padding-right: 0;
  }
  .zeeker-contact-form .contact-section {
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .zeeker-contact-form h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 576px) {
  .zeeker-contact-form h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .zeeker-contact-form .logo {
    margin-bottom: 30px;
  }
  .zeeker-contact-form .contact-item {
    margin-bottom: 30px;
  }
  .zeeker-contact-form .submit-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .zeeker-contact-form .submit-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .zeeker-contact-form .two-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.zeeker-contact-form .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 26px 0;
}

.zeeker-contact-form .radio-group .radio-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}

.zeeker-contact-form .radio-group .radio-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.zeeker-contact-form .radio-group .radio-option .radio-custom {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid #d1d1d1;
  margin-right: 12px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.zeeker-contact-form .radio-group .radio-option .radio-custom:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3366ff;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.zeeker-contact-form .radio-group .radio-option:hover .radio-custom {
  border-color: #3366ff;
}

.zeeker-contact-form .radio-group .radio-option input:checked + .radio-custom {
  border-color: #3366ff;
  background-color: white;
}

.zeeker-contact-form .radio-group .radio-option input:checked + .radio-custom:after {
  opacity: 1;
}

.zeeker-contact-form .radio-group .radio-label {
  font-size: 16px;
  color: #F7F6F4;
}

@font-face {
  font-family: 'GeorgiaCustom';
  /* Regular font */
  src: url("./fonts/georgia.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeorgiaCustom';
  /* Bold font */
  src: url("./fonts/georgiab.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GeorgiaCustom';
  /* Italic font */
  src: url("./fonts/georgiaz.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Times New Roman", Times, serif;
  /* Italic font */
  src: url("./fonts/times.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #333333;
  color: #F7F6F4;
  line-height: 1.6;
  min-height: 100vh;
}

.container, .zeeker-container, .zeeker-sticky-card {
  max-width: 1200px;
}

@media (min-width: 1900px) {
  .container, .zeeker-container, .zeeker-sticky-card {
    max-width: 2000px;
  }
}

@media (max-width: 768px) {
  .container, .zeeker-container, .zeeker-sticky-card {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */