/* =====================================
   Root Colors
===================================== */
:root {
  --ve-navy: #0b1c2c;
  --ve-navy-dark: #071624;
  --ve-navy-light: #12283b;

  --ve-gold: #e4aa0a;
  --ve-gold-dark: #bd8900;
  --ve-gold-soft: rgba(228, 170, 10, 0.12);

  --ve-white: #ffffff;
  --ve-text: #c9d3dc;
  --ve-muted: #8da0b2;

  --ve-border: rgba(255, 255, 255, 0.18);
}


/* =====================================
   General
===================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--ve-navy);
  color: var(--ve-white);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}


/* =====================================
   Navigation
===================================== */
.ve-header {
  position: relative;
  z-index: 1000;
  background: var(--ve-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-navbar {
  min-height: 66px;
  padding: 7px 0;
  background: var(--ve-navy);
}

.ve-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ve-white);
  font-size: 18px;
  font-weight: 800;
}

.ve-logo:hover {
  color: var(--ve-white);
}

.ve-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ve-gold);
  color: var(--ve-navy-dark);
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.ve-logo:hover .ve-logo-icon {
  transform: rotate(-8deg);
}

.ve-logo-text {
  letter-spacing: -0.4px;
}

.ve-logo-text span {
  color: var(--ve-gold);
}

.ve-nav-list {
  gap: 6px;
}

.ve-nav-list .nav-link {
  position: relative;
  padding: 11px 15px !important;
  border-radius: 6px;
  color: #cad3dc;
  font-size: 13px;
  font-weight: 600;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.ve-nav-list .nav-link:hover,
.ve-nav-list .nav-link.active {
  color: var(--ve-gold);
  background: rgba(228, 170, 10, 0.12);
}

.ve-nav-list .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

/* .ve-dropdown {
  min-width: 220px;
  padding: 10px;
  margin-top: 8px !important;
  border: 1px solid rgba(228, 170, 10, 0.2);
  border-radius: 10px;
  background: var(--ve-navy-light);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.ve-dropdown .dropdown-item {
  padding: 10px 13px;
  border-radius: 6px;
  color: #071624;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.ve-dropdown .dropdown-item:hover {
  padding-left: 18px;
  color: var(--ve-navy-dark);
  background: var(--ve-gold);
} */

.ve-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 137px;
  min-height: 40px;
  border: 1px solid var(--ve-gold);
  border-radius: 8px;
  background: var(--ve-gold);
  color: var(--ve-navy-dark);
  font-size: 13px;
  font-weight: 800;
  transition: 0.3s ease;
}

.ve-nav-button:hover {
  border-color: var(--ve-white);
  background: var(--ve-white);
  color: var(--ve-navy-dark);
  transform: translateY(-2px);
}

.ve-nav-button i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.ve-nav-button:hover i {
  transform: translateX(4px);
}


/* Mobile Navbar Button */
.ve-toggler {
  width: 43px;
  height: 40px;
  padding: 7px;
  border: 1px solid rgba(228, 170, 10, 0.45);
  border-radius: 7px;
  box-shadow: none !important;
}

.ve-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 5px;
  background: var(--ve-gold);
}


/* =====================================
   Hero Section
===================================== */
.ve-hero {
  position: relative;
  min-height: calc(100vh - 66px);
  overflow: hidden;
  background: var(--ve-navy);
}

.ve-content-column {
  width: 55%;
  background: var(--ve-navy);
}

.ve-image-column {
  width: 45%;
}

.ve-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 66px);
  padding: 80px 58px 80px max(75px, calc((100vw - 1760px) / 2));
}


/* Trust Label */
.ve-trust-label {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 850px;
  min-height: 34px;
  margin-bottom: 27px;
  padding: 7px 17px;
  border: 1px solid rgba(228, 170, 10, 0.4);
  border-radius: 40px;
  background: var(--ve-gold-soft);
  color: var(--ve-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.ve-trust-dot {
  width: 4px;
  height: 4px;
  margin: 0 10px;
  border-radius: 50%;
  background: var(--ve-gold);
}


/* Heading */
.ve-hero-title {
  max-width: 720px;
  margin: 0 0 23px;
  color: var(--ve-white);
  font-size: clamp(47px, 4vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.3px;
}

.ve-hero-title span {
  color: var(--ve-gold);
}


/* Description */
.ve-hero-description {
  max-width: 555px;
  margin: 0 0 32px;
  color:#ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}


/* Hero Buttons */
.ve-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
}

.ve-primary-button,
.ve-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 173px;
  min-height: 50px;
  border-radius: 7px;
  font-size: 25px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.ve-primary-button {
  border: 1px solid var(--ve-gold);
  background: var(--ve-gold);
  color: var(--ve-navy-dark);
}

.ve-primary-button:hover {
  border-color: var(--ve-white);
  background: var(--ve-white);
  color: var(--ve-navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.ve-outline-button {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--ve-white);
}

.ve-outline-button:hover {
  border-color: var(--ve-gold);
  background: var(--ve-gold-soft);
  color: var(--ve-gold);
  transform: translateY(-3px);
}


/* Statistics */
.ve-statistics {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ve-stat-item {
  display: flex;
  flex-direction: column;
}

.ve-stat-item strong {
  margin-bottom: 6px;
  color: var(--ve-white);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.ve-stat-item span {
  color: var(--ve-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ve-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}


/* =====================================
   Hero Image
===================================== */
.ve-hero-image-wrapper {
  position: relative;
  min-height: calc(100vh - 66px);
  overflow: hidden;
  background: #dce1e5;
}

.ve-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease;
}

.ve-hero:hover .ve-main-image {
  transform: scale(1.04);
}

.ve-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(11, 28, 44, 0.22) 0%,
      rgba(11, 28, 44, 0) 30%
    );
}


/* Return Card */
.ve-return-card {
  position: absolute;
  top: 57px;
  right: 56px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
  padding: 17px 20px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  animation: veFloat 3.5s ease-in-out infinite;
}

.ve-return-icon {
  color: var(--ve-gold);
  font-size: 27px;
}

.ve-return-text {
  display: flex;
  flex-direction: column;
}

.ve-return-text strong {
  color: var(--ve-navy-dark);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
}

.ve-return-text span {
  margin-top: 6px;
  color: #687481;
  font-size: 10px;
}


/* Preview Card */
.ve-preview-card {
  position: absolute;
  right: 37px;
  bottom: 30px;
  z-index: 4;
  width: 188px;
  height: 126px;
  padding: 4px;
  overflow: hidden;
  border: 2px solid var(--ve-gold);
  border-radius: 15px;
  background: var(--ve-white);
  box-shadow: 0 17px 40px rgba(0, 0, 0, 0.28);
  animation: vePreviewFloat 4s ease-in-out infinite;
}

.ve-preview-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.ve-preview-line {
  position: absolute;
  right: 19px;
  bottom: 10px;
  width: 44px;
  height: 3px;
  border-radius: 10px;
  background: var(--ve-gold);
}


/* Decorative Circle */
.ve-image-circle {
  position: absolute;
  right: -70px;
  top: 21%;
  z-index: 2;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(228, 170, 10, 0.4);
  border-radius: 50%;
}


/* =====================================
   Animations
===================================== */
@keyframes veFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes vePreviewFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(-1deg);
  }
}


/* =====================================
   Medium Desktop
===================================== */
@media (max-width: 1399.98px) {
  .ve-hero-content {
    padding: 70px 45px 70px 55px;
  }

  .ve-hero-title {
    font-size: 55px;
  }

  .ve-trust-label {
    max-width: 100%;
  }
}


/* =====================================
   Tablet and Mobile Navigation
===================================== */
@media (max-width: 991.98px) {
  .ve-navbar {
    min-height: 70px;
  }

  .ve-navbar .navbar-collapse {
    margin-top: 11px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: var(--ve-navy-light);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  }

  .ve-nav-list {
    gap: 3px;
  }

  .ve-nav-list .nav-link {
    padding: 12px 13px !important;
  }

  .ve-nav-button {
    width: 100%;
    margin-top: 12px;
  }

  .ve-content-column,
  .ve-image-column {
    width: 100%;
  }

  .ve-hero-content {
    min-height: auto;
    padding: 80px 45px;
  }

  .ve-hero-title {
    max-width: 680px;
    font-size: 58px;
  }

  .ve-hero-image-wrapper {
    min-height: 650px;
  }

  .ve-main-image {
    position: absolute;
  }
}


/* =====================================
   Mobile
===================================== */
@media (max-width: 767.98px) {
  .ve-navbar .container-fluid {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .ve-logo {
    font-size: 17px;
  }

  .ve-logo-icon {
    width: 34px;
    height: 34px;
  }

  .ve-hero-content {
    padding: 62px 22px;
    text-align: center;
  }

  .ve-trust-label {
    justify-content: center;
    margin-bottom: 24px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .ve-hero-title {
    margin-right: auto;
    margin-left: auto;
    font-size: 43px;
    line-height: 1.08;
    letter-spacing: -1.5px;
  }

  .ve-hero-description {
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
    line-height: 1.7;
  }

  .ve-hero-buttons {
    justify-content: center;
    margin-bottom: 42px;
  }

  .ve-primary-button,
  .ve-outline-button {
    min-width: 155px;
  }

  .ve-statistics {
    justify-content: center;
    gap: 13px;
  }

  .ve-stat-item strong {
    font-size: 22px;
  }

  .ve-stat-item span {
    font-size: 9px;
  }

  .ve-stat-divider {
    height: 35px;
  }

  .ve-hero-image-wrapper {
    min-height: 500px;
  }

  .ve-return-card {
    top: 25px;
    right: 20px;
    padding: 14px 16px;
  }

  .ve-preview-card {
    right: 20px;
    bottom: 20px;
    width: 155px;
    height: 105px;
  }
}


/* =====================================
   Small Mobile
===================================== */
@media (max-width: 480px) {
  .ve-hero-content {
    padding: 55px 17px;
  }

  .ve-trust-label {
    flex-wrap: wrap;
    border-radius: 14px;
    line-height: 1.5;
  }

  .ve-hero-title {
    font-size: 36px;
  }

  .ve-hero-buttons {
    display: grid;
    width: 100%;
  }

  .ve-primary-button,
  .ve-outline-button {
    width: 100%;
  }

  .ve-statistics {
    align-items: stretch;
    gap: 10px;
  }

  .ve-stat-item {
    flex: 1;
  }

  .ve-stat-item strong {
    font-size: 19px;
  }

  .ve-stat-item span {
    font-size: 8px;
  }

  .ve-hero-image-wrapper {
    min-height: 420px;
  }

  .ve-return-card {
    min-width: auto;
  }

  .ve-return-icon {
    font-size: 22px;
  }

  .ve-return-text strong {
    font-size: 16px;
  }

  .ve-preview-card {
    width: 135px;
    height: 90px;
  }
}
...................................................


:root{
    --ve-navy:#0b1c2c;
    --ve-navy-dark:#071624;
    --ve-gold:#e4aa0a;
    --ve-white:#ffffff;
}

.brands-section{
    position:relative;
    overflow:hidden;
    background:#e4aa0a;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.brands-section::before,
.brands-section::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}



.brands-track{
    display:flex;
    width:max-content;
    animation:brandScroll 35s linear infinite;
}

.brands-slide{
    display:flex;
    align-items:center;
    white-space:nowrap;
}

.brands-slide span{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 18px;
    padding:12px 28px;
    background:var(--ve-navy-dark);
    border:1px solid rgba(228,170,10,.2);
    border-radius:50px;
    color:var(--ve-white);
    font-size:17px;
    font-weight:700;
    transition:.35s;
}

.brands-slide span:hover{
    background:var(--ve-gold);
    color:var(--ve-navy-dark);
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(228,170,10,.35);
}

@keyframes brandScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

    .brands-slide span{
        font-size:14px;
        padding:10px 20px;
        margin:0 12px;
    }

    .brands-track{
        animation-duration:25s;
    }
}










:root {
  --ve-navy: #0b1c2c;
  --ve-navy-dark: #071624;
  --ve-navy-light: #12283b;

  --ve-gold: #e4aa0a;
  --ve-gold-dark: #bd8900;
  --ve-gold-soft: rgba(228, 170, 10, 0.12);

  --ve-white: #ffffff;
  --ve-text: #536375;
  --ve-muted: #8da0b2;

  --ve-border: rgba(11, 28, 44, 0.13);
  --ve-section-bg: #f3f6fa;
}













/* =====================================
   Services Section
===================================== */

.ck-services-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--ve-section-bg);
}


/* Decorative Background */

.ck-services-section::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(228, 170, 10, 0.15);
}

.ck-services-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(228, 170, 10, 0.04);
}

.ck-services-section .container {
  position: relative;
  z-index: 2;
}


/* =====================================
   Section Heading
===================================== */

.ck-section-heading {
  max-width: 820px;
  margin: 0 auto 65px;
}

.ck-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 6px 22px;
  border: 1px solid rgba(228, 170, 10, 0.45);
  border-radius: 40px;
  background: rgba(228, 170, 10, 0.06);
  color: var(--ve-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.ck-section-heading h2 {
  margin: 0 0 18px;
  color: var(--ve-navy-dark);
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.ck-section-heading h2 span {
  color: var(--ve-gold);
}

.ck-section-heading p {
  max-width: 710px;
  margin: 0 auto;
  color: #071624;
  font-size: 17px;
  line-height: 1.8;
}


/* =====================================
   Services Grid
===================================== */

.ck-services-grid {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}


/* =====================================
   Service Card
===================================== */

.ck-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  height: 100%;
  padding: 36px 31px 32px;
  overflow: hidden;
  border: 1px solid var(--ve-border);
  border-radius: 14px;
  background: var(--ve-white);
  box-shadow: 0 10px 35px rgba(7, 22, 36, 0.025);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.ck-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--ve-gold);
  transition: width 0.4s ease;
}

.ck-service-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(228, 170, 10, 0.055);
  transform: scale(0);
  transition: transform 0.45s ease;
}

.ck-service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(228, 170, 10, 0.45);
  box-shadow: 0 24px 55px rgba(7, 22, 36, 0.11);
}

.ck-service-card:hover::before {
  width: 100%;
}

.ck-service-card:hover::after {
  transform: scale(1);
}


/* =====================================
   Card Icon
===================================== */

.ck-service-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 23px;
  border-radius: 14px;
  background: var(--ve-navy-light);
  color: var(--ve-gold);
  font-size: 23px;
  box-shadow: 0 10px 23px rgba(7, 22, 36, 0.13);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.ck-service-card:hover .ck-service-icon {
  transform: rotate(-7deg) scale(1.07);
  background: var(--ve-gold);
  color: var(--ve-navy-dark);
}


/* =====================================
   Card Content
===================================== */

.ck-service-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: var(--ve-navy-dark);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.ck-service-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 23px;
  color: #071624;
  font-size: 15px;
  line-height: 1.65;
}

.ck-service-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  color: var(--ve-gold-dark);
  font-size: 14px;
  font-weight: 800;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.ck-service-card a:hover {
  gap: 14px;
  color: var(--ve-navy-dark);
}

.ck-service-card a i {
  font-size: 12px;
}


/* =====================================
   Responsive
===================================== */

@media (max-width: 991.98px) {
  .ck-services-section {
    padding: 85px 0;
  }

  .ck-section-heading {
    margin-bottom: 50px;
  }

  .ck-service-card {
    min-height: 270px;
  }
}


@media (max-width: 767.98px) {
  .ck-services-section {
    padding: 70px 0;
  }

  .ck-section-heading {
    margin-bottom: 40px;
  }

  .ck-section-heading h2 {
    font-size: 38px;
  }

  .ck-section-heading p {
    font-size: 15px;
  }

  .ck-service-card {
    min-height: auto;
    padding: 30px 25px;
  }
}


@media (max-width: 575.98px) {
  .ck-services-section {
    padding: 60px 0;
  }

  .ck-section-heading h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }

  .ck-section-label {
    font-size: 10px;
  }

  .ck-service-icon {
    width: 55px;
    height: 55px;
    font-size: 21px;
  }

  .ck-service-card h3 {
    font-size: 19px;
  }
}


:root{
    --ve-navy:#0b1c2c;
    --ve-navy-dark:#071624;
    --ve-navy-light:#12283b;

    --ve-gold:#e4aa0a;
    --ve-gold-dark:#bd8900;
    --ve-gold-soft:rgba(228,170,10,.12);

    --ve-white:#fff;
    --ve-text:#62717d;
    --ve-muted:#8da0b2;

    --ve-border:rgba(11,28,44,.12);
    --ve-bg:#f8fafc;
}

/*=====================================
 About Section
=====================================*/

.ck-about{
    padding:110px 0;
    background:var(--ve-white);
    overflow:hidden;
}

/* Left Image */

.ck-about-image{
    position:relative;
    max-width:470px;
}

.ck-about-image img{
    width:100%;
    border-radius:22px;
    display:block;
    object-fit:cover;
    box-shadow:0 20px 55px rgba(0,0,0,.08);
}

/* Experience Box */

.experience-box{
    position:absolute;
    left:50%;
    bottom:-35px;
    transform:translateX(-50%);
    background:var(--ve-gold);
    color:var(--ve-navy-dark);
    padding:28px 45px;
    border-radius:18px;
    min-width:280px;
    text-align:center;
    box-shadow:0 20px 45px rgba(228,170,10,.35);
}

.experience-box h2{
    margin:0;
    font-size:56px;
    font-weight:900;
    line-height:1;
}

.experience-box span{
    display:block;
    margin-top:8px;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* Badge */

.section-tag{
    display:inline-block;
    padding:8px 24px;
    margin-bottom:18px;
    border:1px solid rgba(228,170,10,.35);
    border-radius:50px;
    background:var(--ve-gold-soft);
    color:var(--ve-gold-dark);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
}

/* Heading */

.section-title{
    font-size:56px;
    font-weight:900;
    line-height:1.15;
    color:var(--ve-navy-dark);
    margin-bottom:28px;
}

.section-title span{
    color:var(--ve-gold);
}

/* Paragraph */

.ck-about p{
    color:#071624;
    font-size:17px;
    line-height:1.9;
    margin-bottom:0;
}

/* Services Heading */

.ck-about h4{
    color:var(--ve-navy-dark);
    font-size:28px;
    font-weight:800;
}

/* Service List */

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

.service-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    color:#071624;
    font-size:17px;
    line-height:1.6;
    transition:.3s;
}

.service-list li:hover{
    transform:translateX(8px);
}

.service-list i{
    margin-top:4px;
    color:var(--ve-gold);
    font-size:18px;
}

/* Button */

.theme-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 34px;
    border-radius:10px;
    background:var(--ve-gold);
    color:var(--ve-navy-dark);
    font-size:16px;
    font-weight:800;
    transition:.35s;
}

.theme-btn:hover{
    background:var(--ve-navy-dark);
    color:var(--ve-white);
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.theme-btn i{
    transition:.3s;
}

.theme-btn:hover i{
    transform:translateX(5px);
}

/* Decorative Circle */

.ck-about::before{
    content:"";
    position:absolute;
    left:-170px;
    top:120px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(228,170,10,.05);
    z-index:-1;
}

.ck-about::after{
    content:"";
    position:absolute;
    right:-140px;
    bottom:60px;
    width:280px;
    height:280px;
    border:1px solid rgba(228,170,10,.18);
    border-radius:50%;
    z-index:-1;
}

/*=====================================
 Responsive
=====================================*/

@media(max-width:991px){

.section-title{
    font-size:42px;
}

.ck-about-image{
    margin:0 auto 80px;
}

.experience-box{
    min-width:240px;
    padding:22px 30px;
}

.experience-box h2{
    font-size:46px;
}

}

@media(max-width:767px){

.ck-about{
    padding:80px 0;
}

.section-title{
    font-size:34px;
}

.ck-about p{
    font-size:15px;
}

.ck-about h4{
    font-size:24px;
}

.service-list li{
    font-size:15px;
}

.experience-box{
    width:90%;
    left:50%;
}

}

@media(max-width:575px){

.section-title{
    font-size:30px;
}

.experience-box h2{
    font-size:38px;
}

.experience-box span{
    font-size:13px;
}

.theme-btn{
    width:100%;
    justify-content:center;
}

}


:root {
    --ve-navy: #0b1c2c;
    --ve-navy-dark: #071624;
    --ve-navy-light: #12283b;
    --ve-gold: #e4aa0a;
    --ve-gold-dark: #bd8900;
    --ve-white: #ffffff;
    --ve-text: #c9d3dc;
    --ve-muted: #8da0b2;
    --ve-border: rgba(255, 255, 255, 0.18);
}

/* ==============================
   Counter Section
============================== */

.ck-counter-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        linear-gradient(
            110deg,
            var(--ve-navy-dark) 0%,
            var(--ve-navy-light) 100%
        );
}

.ck-counter-section::before {
    content: "";
    position: absolute;
    top: -130px;
    left: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(228, 170, 10, 0.035);
}

.ck-counter-section::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(228, 170, 10, 0.08);
    border-radius: 50%;
}

.ck-counter-section .container {
    position: relative;
    z-index: 2;
}

.ck-counter-item {
    position: relative;
    min-height: 210px;
    padding: 30px 20px;
    text-align: center;
}

.ck-counter-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.13);
}

.ck-counter-section .col-lg-3:last-child .ck-counter-item::after {
    display: none;
}

/* Icon */

.ck-counter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 12px;
    color: var(--ve-gold);
    font-size: 34px;
    transition: transform 0.35s ease;
}

.ck-counter-item:hover .ck-counter-icon {
    transform: translateY(-6px) scale(1.08);
}

/* Number */

.ck-counter-number {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--ve-white);
    line-height: 1;
}

.ck-counter-number .counter {
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: -1.5px;
}

.ck-counter-number small {
    margin: 0 0 5px 3px;
    color: var(--ve-gold);
    font-size: 22px;
    font-weight: 900;
}

/* Label */

.ck-counter-item p {
    margin: 17px 0 0;
    color: var(--ve-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 991.98px) {
    .ck-counter-section {
        padding: 45px 0;
    }

    .ck-counter-item {
        min-height: 190px;
    }

    .ck-counter-section .col-md-6:nth-child(2) .ck-counter-item::after,
    .ck-counter-section .col-md-6:nth-child(4) .ck-counter-item::after {
        display: none;
    }

    .ck-counter-section .col-md-6:nth-child(-n+2) .ck-counter-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }
}

@media (max-width: 767.98px) {
    .ck-counter-section {
        padding: 30px 0;
    }

    .ck-counter-item {
        min-height: auto;
        padding: 35px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .ck-counter-item::after {
        display: none;
    }

    .ck-counter-section .col-md-6:last-child .ck-counter-item {
        border-bottom: 0;
    }

    .ck-counter-number .counter {
        font-size: 42px;
    }

    .ck-counter-item p {
        font-size: 12px;
    }
}



.reviews-section{
    padding:110px 0;
    background:#f8fafc;
}

.reviews-heading{
    max-width:760px;
    margin:auto;
    margin-bottom:60px;
}

.reviews-heading h2{
    font-size:48px;
    font-weight:900;
    color:var(--ve-navy-dark);
}

.reviews-heading h2 span{
    color:var(--ve-gold);
}

.reviews-heading p{
    color:#071624;
    font-size:17px;
    line-height:1.8;
}

.review-card{
    position:relative;
    height:100%;
    background:#fff;
    padding:40px;
    border-radius:18px;
    border:1px solid rgba(11,28,44,.08);
    transition:.35s;
    overflow:hidden;
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    border-color:rgba(228,170,10,.4);
}

.review-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--ve-gold);
    transform:scaleX(0);
    transition:.4s;
}

.review-card:hover::before{
    transform:scaleX(1);
}

.quote-icon{
    width:65px;
    height:65px;
    border-radius:16px;
    background:var(--ve-navy-dark);
    color:var(--ve-gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:25px;
}

.stars{
    color:var(--ve-gold);
    margin-bottom:20px;
    font-size:15px;
}

.review-card p{
    color:#071624;
    line-height:1.9;
    margin-bottom:30px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.review-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--ve-gold),var(--ve-gold-dark));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:800;
}

.review-user h5{
    margin:0;
    font-size:19px;
    font-weight:800;
    color:var(--ve-navy-dark);
}

.review-user span{
    color:var(--ve-muted);
    font-size:14px;
}

@media(max-width:991px){

.reviews-heading h2{
    font-size:38px;
}

}

@media(max-width:767px){

.review-card{
    padding:30px;
}

.reviews-heading h2{
    font-size:32px;
}

}



:root {
    --ve-navy: #0b1c2c;
    --ve-navy-dark: #071624;
    --ve-navy-light: #12283b;

    --ve-gold: #e4aa0a;
    --ve-gold-dark: #bd8900;
    --ve-gold-soft: rgba(228, 170, 10, 0.12);

    --ve-white: #ffffff;
    --ve-text: #c9d3dc;
    --ve-muted: #8da0b2;

    --ve-border: rgba(255, 255, 255, 0.18);
}


/* =====================================
   Mobile Solutions Section
===================================== */

.ck-mobile-solutions {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #f3f6f9;
}

.ck-mobile-solutions::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(228, 170, 10, 0.15);
    border-radius: 50%;
}

.ck-mobile-solutions::after {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -190px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(228, 170, 10, 0.05);
}

.ck-mobile-solutions .container {
    position: relative;
    z-index: 2;
}


/* Main Shell */

.ck-mobile-shell {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(7, 22, 36, 0.14);
}


/* Decorative Top Line */

.ck-mobile-topline {
    position: absolute;
    top: -27px;
    left: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    width: 240px;
    transform: translateX(-50%);
}

.ck-mobile-topline > span {
    flex: 1;
    height: 1px;
    background: var(--ve-gold);
}

.ck-topline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 12px;
    border: 5px solid #f3f6f9;
    border-radius: 50%;
    background: var(--ve-gold);
    color: var(--ve-navy-dark);
    font-size: 19px;
    box-shadow: 0 10px 30px rgba(228, 170, 10, 0.3);
}


/* Shared Panels */

.ck-mobile-panel {
    position: relative;
    height: 100%;
    min-height: 790px;
    padding: 75px 60px 60px;
    overflow: hidden;
}

.ck-mobile-panel-dark {
    border-radius: 30px 0 0 30px;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(228, 170, 10, 0.1),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            var(--ve-navy-dark),
            var(--ve-navy-light)
        );
}

.ck-mobile-panel-light {
    border-radius: 0 30px 30px 0;
    background: var(--ve-white);
}


/* Panel Number */

.ck-panel-number {
    position: absolute;
    top: 24px;
    right: 35px;
    color: rgba(228, 170, 10, 0.13);
    font-size: 95px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -6px;
}

.ck-mobile-panel-light .ck-panel-number {
    color: rgba(11, 28, 44, 0.055);
}


/* Panel Heading */

.ck-panel-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}

.ck-panel-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 17px;
    padding: 7px 18px;
    border: 1px solid rgba(228, 170, 10, 0.4);
    border-radius: 50px;
    background: var(--ve-gold-soft);
    color: var(--ve-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
}

.ck-mobile-panel-light .ck-panel-tag {
    color: var(--ve-gold-dark);
}

.ck-panel-heading h2 {
    max-width: 490px;
    margin: 0;
    color: var(--ve-white);
    font-size: clamp(37px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.ck-mobile-panel-light .ck-panel-heading h2 {
    color: var(--ve-navy-dark);
}

.ck-panel-heading h2 span {
    display: block;
    color: var(--ve-gold);
}


/* Paragraphs */

.ck-mobile-panel > p {
    position: relative;
    z-index: 2;
    margin: 0 0 21px;
    color: #ffffff;
    font-size: 15.5px;
    line-height: 1.85;
}

.ck-mobile-panel-light > p {
    color: #617080;
}


/* =====================================
   Location Callout
===================================== */

.ck-location-callout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-top: 30px;
    padding: 25px;
    border: 1px solid rgba(228, 170, 10, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.ck-callout-icon {
    display: flex;
    flex: 0 0 47px;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    border-radius: 13px;
    background: var(--ve-gold);
    color: var(--ve-navy-dark);
    font-size: 18px;
}

.ck-location-callout p {
    margin: 0;
    color: #ffffff;
    font-size: 14.5px;
    line-height: 1.75;
}


/* =====================================
   Mobile Features
===================================== */

.ck-mobile-features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 29px;
}

.ck-mobile-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 108px;
    padding: 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.ck-mobile-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 170, 10, 0.45);
    background: rgba(228, 170, 10, 0.08);
}

.ck-mobile-feature i {
    margin-bottom: 10px;
    color: var(--ve-gold);
    font-size: 21px;
}

.ck-mobile-feature span {
    color: var(--ve-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}


/* =====================================
   Technology List
===================================== */

.ck-tech-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin: 27px 0 30px;
}

.ck-tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 67px;
    padding: 12px 14px;
    border: 1px solid rgba(11, 28, 44, 0.1);
    border-radius: 13px;
    background: #f8fafc;
    color: var(--ve-navy-dark);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ck-tech-item:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 170, 10, 0.45);
    box-shadow: 0 12px 25px rgba(7, 22, 36, 0.07);
}

.ck-tech-icon {
    display: flex;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 10px;
    background: var(--ve-navy-dark);
    color: var(--ve-gold);
    font-size: 15px;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.ck-tech-item:hover .ck-tech-icon {
    background: var(--ve-gold);
    color: var(--ve-navy-dark);
}


/* =====================================
   Security Note
===================================== */

.ck-security-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 23px;
    border-left: 4px solid var(--ve-gold);
    border-radius: 0 15px 15px 0;
    background: rgba(228, 170, 10, 0.08);
}

.ck-security-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--ve-gold);
    color: var(--ve-navy-dark);
    font-size: 17px;
}

.ck-security-note p {
    margin: 0;
    color: #536372;
    font-size: 14.5px;
    line-height: 1.75;
}


/* =====================================
   Responsive
===================================== */

@media (max-width: 1199.98px) {

    .ck-mobile-panel {
        padding-right: 42px;
        padding-left: 42px;
    }

    .ck-tech-item {
        font-size: 12.8px;
    }
}


@media (max-width: 991.98px) {

    .ck-mobile-solutions {
        padding: 90px 0;
    }

    .ck-mobile-shell {
        max-width: 750px;
    }

    .ck-mobile-panel {
        min-height: auto;
        padding: 70px 50px 55px;
    }

    .ck-mobile-panel-dark {
        border-radius: 30px 30px 0 0;
    }

    .ck-mobile-panel-light {
        border-radius: 0 0 30px 30px;
    }

    .ck-mobile-topline {
        top: -26px;
    }
}


@media (max-width: 767.98px) {

    .ck-mobile-solutions {
        padding: 75px 0;
    }

    .ck-mobile-panel {
        padding: 65px 28px 45px;
    }

    .ck-panel-heading h2 {
        font-size: 37px;
    }

    .ck-panel-number {
        top: 24px;
        right: 22px;
        font-size: 72px;
    }

    .ck-mobile-features,
    .ck-tech-list {
        grid-template-columns: 1fr;
    }

    .ck-mobile-feature {
        flex-direction: row;
        min-height: 70px;
        gap: 12px;
        text-align: left;
    }

    .ck-mobile-feature i {
        margin: 0;
    }

    .ck-location-callout,
    .ck-security-note {
        padding: 20px;
    }
}


@media (max-width: 575.98px) {

    .ck-mobile-solutions {
        padding: 65px 0;
    }

    .ck-mobile-panel {
        padding: 60px 20px 40px;
    }

    .ck-panel-heading h2 {
        font-size: 31px;
        letter-spacing: -1px;
    }

    .ck-mobile-panel > p,
    .ck-location-callout p,
    .ck-security-note p {
        font-size: 14px;
    }

    .ck-location-callout,
    .ck-security-note {
        flex-direction: column;
    }

    .ck-mobile-topline {
        width: 180px;
    }

    .ck-topline-icon {
        width: 50px;
        height: 50px;
    }
}

:root {
    --ve-navy: #0b1c2c;
    --ve-navy-dark: #071624;
    --ve-navy-light: #12283b;

    --ve-gold: #e4aa0a;
    --ve-gold-dark: #bd8900;
    --ve-gold-soft: rgba(228, 170, 10, 0.12);

    --ve-white: #ffffff;
    --ve-text: #62717d;
    --ve-muted: #8da0b2;
}


/* =====================================
   Coupon Section
===================================== */

.ck-coupon-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #f7f9fc 0%,
            #eef3f7 100%
        );
}

.ck-coupon-section::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -130px;
    width: 380px;
    height: 380px;
    border: 50px solid rgba(228, 170, 10, 0.035);
    border-radius: 50%;
}

.ck-coupon-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(228, 170, 10, 0.2);
    border-radius: 50%;
}

.ck-coupon-section .container {
    position: relative;
    z-index: 2;
}


/* =====================================
   Section Heading
===================================== */

.ck-coupon-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.ck-coupon-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    margin-bottom: 17px;
    padding: 7px 21px;
    border: 1px solid rgba(228, 170, 10, 0.42);
    border-radius: 50px;
    background: var(--ve-gold-soft);
    color: var(--ve-gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1;
    text-transform: uppercase;
}

.ck-coupon-heading h2 {
    margin: 0 0 17px;
    color: var(--ve-navy-dark);
    font-size: clamp(38px, 4.5vw, 55px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.8px;
}

.ck-coupon-heading h2 span {
    color: var(--ve-gold);
}

.ck-coupon-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: #06131f;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================
   Coupon Card
===================================== */

.ck-coupon-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(11, 28, 44, 0.11);
    border-radius: 24px;
    background: var(--ve-white);
    box-shadow: 0 20px 55px rgba(7, 22, 36, 0.08);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ck-coupon-card:hover {
    transform: translateY(-10px);
    border-color: rgba(228, 170, 10, 0.55);
    box-shadow: 0 28px 65px rgba(7, 22, 36, 0.14);
}

.ck-coupon-featured {
    border: 2px solid var(--ve-gold);
    transform: translateY(-12px);
}

.ck-coupon-featured:hover {
    transform: translateY(-20px);
}


/* Popular Badge */

.ck-popular-badge {
    position: absolute;
    top: 20px;
    right: -38px;
    z-index: 4;
    width: 155px;
    padding: 8px 10px;
    background: var(--ve-gold);
    color: var(--ve-navy-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(42deg);
}


/* Main Coupon Content */

.ck-coupon-main {
    position: relative;
    padding: 40px 34px 32px;
    text-align: center;
}

.ck-coupon-main::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    width: 230px;
    height: 160px;
    border-radius: 50%;
    background: rgba(228, 170, 10, 0.055);
    transform: translateX(-50%);
}

.ck-coupon-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 21px;
    border-radius: 17px;
    background: var(--ve-navy-dark);
    color: var(--ve-gold);
    font-size: 25px;
    box-shadow: 0 13px 30px rgba(7, 22, 36, 0.18);
    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}

.ck-coupon-card:hover .ck-coupon-icon {
    transform: rotate(-7deg) scale(1.08);
    background: var(--ve-gold);
    color: var(--ve-navy-dark);
}

.ck-offer-small {
    display: block;
    margin-bottom: 4px;
    color: var(--ve-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ck-coupon-main h3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 0 14px;
    color: var(--ve-navy-dark);
    font-size: 66px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
}

.ck-coupon-main h3 sup {
    margin: 8px 3px 0 0;
    color: var(--ve-gold);
    font-size: 27px;
    line-height: 1;
}

.ck-coupon-main h3 span {
    align-self: flex-end;
    margin: 0 0 7px 7px;
    color: var(--ve-gold);
    font-size: 18px;
    letter-spacing: 0;
}

.ck-coupon-main h4 {
    margin: 0 0 12px;
    color: var(--ve-navy-dark);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.35;
}

.ck-coupon-main p {
    max-width: 280px;
    min-height: 51px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================
   Ticket Cut Line
===================================== */

.ck-coupon-cut {
    position: relative;
    height: 26px;
}

.ck-coupon-cut::before,
.ck-coupon-cut::after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(11, 28, 44, 0.1);
    border-radius: 50%;
    background: #f1f5f8;
    transform: translateY(-50%);
}

.ck-coupon-cut::before {
    left: -15px;
}

.ck-coupon-cut::after {
    right: -15px;
}

.ck-coupon-cut span {
    position: absolute;
    top: 50%;
    left: 27px;
    right: 27px;
    border-top: 2px dashed rgba(11, 28, 44, 0.16);
    transform: translateY(-50%);
}


/* =====================================
   Coupon Footer
===================================== */

.ck-coupon-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 25px 27px 28px;
    background: #fbfcfd;
}

.ck-code-box {
    display: flex;
    flex-direction: column;
}

.ck-code-box small {
    margin-bottom: 3px;
    color: var(--ve-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ck-code-box strong {
    color: var(--ve-navy-dark);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.ck-coupon-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 9px;
    background: var(--ve-gold);
    color: var(--ve-navy-dark);
    font-size: 12px;
    font-weight: 900;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.ck-coupon-footer a:hover {
    transform: translateY(-3px);
    background: var(--ve-navy-dark);
    color: var(--ve-white);
}

.ck-coupon-footer a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.ck-coupon-footer a:hover i {
    transform: translateX(4px);
}


/* =====================================
   Coupon Note
===================================== */

.ck-coupon-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 850px;
    margin: 42px auto 0;
    padding: 16px 25px;
    border: 1px solid rgba(11, 28, 44, 0.08);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.65);
}

.ck-coupon-note i {
    color: var(--ve-gold);
    font-size: 16px;
}

.ck-coupon-note p {
    margin: 0;
    color: #647585;
    font-size: 12px;
    line-height: 1.6;
}


/* =====================================
   Responsive
===================================== */

@media (max-width: 991.98px) {

    .ck-coupon-section {
        padding: 90px 0;
    }

    .ck-coupon-featured {
        transform: none;
    }

    .ck-coupon-featured:hover {
        transform: translateY(-10px);
    }
}


@media (max-width: 767.98px) {

    .ck-coupon-section {
        padding: 75px 0;
    }

    .ck-coupon-heading {
        margin-bottom: 45px;
    }

    .ck-coupon-heading h2 {
        font-size: 38px;
    }

    .ck-coupon-note {
        align-items: flex-start;
        border-radius: 15px;
        text-align: left;
    }
}


@media (max-width: 575.98px) {

    .ck-coupon-section {
        padding: 65px 0;
    }

    .ck-coupon-heading h2 {
        font-size: 32px;
    }

    .ck-coupon-main {
        padding-right: 24px;
        padding-left: 24px;
    }

    .ck-coupon-main h3 {
        font-size: 58px;
    }

    .ck-coupon-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .ck-code-box {
        align-items: center;
        text-align: center;
    }

    .ck-coupon-footer a {
        width: 100%;
    }
}



.contact-modern-section{
    padding:120px 0;
    background:#f5f8fb;
}

.contact-title{
    max-width:760px;
    margin:auto auto 70px;
}

.contact-title span{
    color:var(--ve-gold);
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.contact-title h2{
    font-size:50px;
    font-weight:900;
    margin:15px 0;
    color:var(--ve-navy-dark);
}

.contact-title h2 span{
    display:block;
    font-size:inherit;
    letter-spacing:0;
    text-transform:none;
}

.contact-title p{
    color:#071624;
    font-size:17px;
    line-height:1.8;
}

.contact-wrapper{
    overflow:hidden;
    border-radius:28px;
    background:#fff;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}

.contact-form-side{
    padding:70px;
}

.contact-small-title{
    color:var(--ve-gold);
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:35px;
    text-transform:uppercase;
}

.contact-form-side input,
.contact-form-side textarea{
    width:100%;
    border:none;
    border-radius:14px;
    background:#f4f6fa;
    padding:18px 20px;
    font-size:15px;
    transition:.3s;
}

.contact-form-side input:focus,
.contact-form-side textarea:focus{
    outline:none;
    background:#fff;
    box-shadow:0 0 0 2px rgba(228,170,10,.25);
}

.contact-form-side button{
    background:var(--ve-gold);
    color:#071624;
    border:none;
    padding:18px 40px;
    border-radius:12px;
    font-weight:800;
    transition:.3s;
}

.contact-form-side button:hover{
    background:var(--ve-navy-dark);
    color:#fff;
}

.map-side{
    position:relative;
    height:100%;
    min-height:700px;
}

.map-side iframe{
    width:100%;
    height:100%;
    border:none;
}

.map-contact-card{

    position:absolute;

    left:40px;
    bottom:40px;

    width:330px;

    background:rgba(11,28,44,.95);

    backdrop-filter:blur(10px);

    color:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.map-contact-card h4{

    margin-bottom:25px;

    color:var(--ve-gold);

    font-size:26px;

    font-weight:800;

}

.map-contact-card ul{

    padding:0;

    margin:0;

    list-style:none;

}

.map-contact-card li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:20px;

    font-size:15px;

}

.map-contact-card i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--ve-gold);

    color:#071624;

    display:flex;

    justify-content:center;

    align-items:center;

}

@media(max-width:991px){

.contact-form-side{

padding:40px;

}

.map-side{

min-height:500px;

}

.map-contact-card{

position:relative;

left:auto;

bottom:auto;

width:100%;

border-radius:0;

}

}

@media(max-width:767px){

.contact-title h2{

font-size:36px;

}

.contact-form-side{

padding:30px 25px;

}

}

.map-contact-card a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.map-contact-card a:hover{
    color:var(--ve-gold);
}



/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}


/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #071624;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #071624;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}

#service_year{width:95% !important;}



/*==========================================
    WHY CHOOSE + CONTACT SECTION
==========================================*/

.why-contact-section{
    position:relative;
    padding:120px 0;
    background:#f5f7fb;
    overflow:hidden;
}

.why-contact-section::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(228,170,10,.05);
}

.why-contact-section::after{
    content:"";
    position:absolute;
    right:-160px;
    bottom:-160px;
    width:360px;
    height:360px;
    border-radius:50%;
    border:2px solid rgba(228,170,10,.08);
}

.why-contact-section .container{
    position:relative;
    z-index:2;
}

/*======================
TITLE
======================*/

.section-title{
    max-width:760px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    margin-bottom:15px;
    color:var(--ve-gold);
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    margin:0;
    color:var(--ve-navy-dark);
    font-size:clamp(38px,4vw,54px);
    font-weight:900;
    line-height:1.15;
}

/*======================
BOXES
======================*/

.why-box,
.contact-box{

    position:relative;

    height:100%;

    padding:55px;

    border-radius:28px;

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 20px 55px rgba(0,0,0,.06);

    transition:.35s;

}

.why-box:hover,
.contact-box:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

/*======================
NUMBER
======================*/

.section-number{

    position:absolute;

    top:20px;

    right:30px;

    color:rgba(228,170,10,.12);

    font-size:85px;

    font-weight:900;

    line-height:1;

}

/*======================
HEADINGS
======================*/

.why-box h3,
.contact-box h3{

    margin-bottom:25px;

    color:var(--ve-navy-dark);

    font-size:34px;

    font-weight:900;

}

.why-box h5{

    margin:35px 0 20px;

    color:var(--ve-gold);

    font-size:18px;

    font-weight:800;

}

/*======================
TEXT
======================*/

.why-box p,
.contact-box p{

    color:#657382;

    line-height:1.9;

    font-size:16px;

    margin-bottom:20px;

}

/*======================
LIST
======================*/

.why-list{

    padding:0;

    margin:0;

    list-style:none;

}

.why-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

    color:#253547;

    font-weight:600;

    line-height:1.7;

}

.why-list i{

    margin-top:3px;

    color:var(--ve-gold);

    font-size:17px;

}

/*======================
NOTE
======================*/

.why-note{

    display:flex;

    gap:18px;

    margin-top:35px;

    padding:25px;

    border-left:5px solid var(--ve-gold);

    border-radius:15px;

    background:rgba(228,170,10,.08);

}

.why-note i{

    font-size:24px;

    color:var(--ve-gold);

}

.why-note p{

    margin:0;

}

/*======================
BUTTONS
======================*/

.contact-buttons{

    display:flex;

    gap:15px;

    margin:40px 0;

    flex-wrap:wrap;

}

.btn-call,
.btn-form{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 28px;

    border-radius:12px;

    font-weight:800;

    text-decoration:none;

    transition:.35s;

}

.btn-call{

    background:var(--ve-gold);

    color:var(--ve-navy-dark);

}

.btn-call:hover{

    background:var(--ve-navy-dark);

    color:#fff;

}

.btn-form{

    border:2px solid var(--ve-navy-dark);

    color:var(--ve-navy-dark);

}

.btn-form:hover{

    background:var(--ve-navy-dark);

    color:#fff;

}

/*======================
CONTACT INFO
======================*/

.contact-info{

    margin-top:20px;

}

.contact-info div{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    color:#47596b;

    font-weight:600;

}

.contact-info i{

    display:flex;

    align-items:center;

    justify-content:center;

    width:48px;

    height:48px;

    border-radius:50%;

    background:rgba(228,170,10,.12);

    color:var(--ve-gold);

    font-size:18px;

    flex-shrink:0;

}

/*======================
RESPONSIVE
======================*/

@media(max-width:991px){

.why-contact-section{

padding:90px 0;

}

.why-box,
.contact-box{

padding:40px;

}

.section-title{

margin-bottom:50px;

}

}

@media(max-width:767px){

.why-contact-section{

padding:70px 0;

}

.section-title h2{

font-size:34px;

}

.why-box,
.contact-box{

padding:30px 25px;

}

.section-number{

font-size:60px;

right:20px;

}

.why-box h3,
.contact-box h3{

font-size:28px;

}

.contact-buttons{

flex-direction:column;

}

.btn-call,
.btn-form{

width:100%;

}

}


.faq-timeline-section{
    padding:120px 0;
    background:#f7f9fc;
}

.faq-heading{
    max-width:760px;
    margin:0 auto 70px;
}

.faq-heading span{
    color:var(--ve-gold);
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.faq-heading h2{
    margin:15px 0;
    font-size:48px;
    font-weight:900;
    color:var(--ve-navy-dark);
}

.faq-heading p{
    color:#68788a;
    line-height:1.8;
}

.faq-timeline{
    position:relative;
    max-width:950px;
    margin:auto;
}

.faq-timeline::before{
    content:"";
    position:absolute;
    left:30px;
    top:0;
    bottom:0;
    width:2px;
    background:rgba(228,170,10,.25);
}

.faq-item{
    position:relative;
    margin-bottom:25px;
}

.faq-btn{
    width:100%;
    display:flex;
    align-items:center;
    gap:25px;
    padding:25px 30px;
    border:none;
    border-radius:18px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    text-align:left;
    transition:.35s;
}

.faq-btn:hover{
    transform:translateX(8px);
}

.faq-number{
    width:60px;
    height:60px;
    flex-shrink:0;
    border-radius:50%;
    background:var(--ve-navy-dark);
    color:var(--ve-gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:800;
    z-index:2;
}

.faq-title{
    flex:1;
    color:var(--ve-navy-dark);
    font-size:20px;
    font-weight:800;
}

.faq-btn i{
    color:var(--ve-gold);
    font-size:18px;
    transition:.3s;
}

.faq-btn:not(.collapsed) i{
    transform:rotate(45deg);
}

.faq-body{
    margin-left:90px;
    margin-top:10px;
    padding:25px 30px;
    border-left:4px solid var(--ve-gold);
    border-radius:0 15px 15px 0;
    background:#fff;
    color:#647585;
    line-height:1.9;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

@media(max-width:767px){

.faq-timeline::before{
display:none;
}

.faq-btn{
padding:20px;
gap:18px;
}

.faq-title{
font-size:17px;
}

.faq-number{
width:50px;
height:50px;
font-size:17px;
}

.faq-body{
margin-left:0;
padding:20px;
}

.faq-heading h2{
font-size:34px;
}

}


/*==========================================
    CAR KEYS HOUSTON FOOTER
==========================================*/

.ck-footer{
    position:relative;
    background:var(--ve-navy-dark);
    color:var(--ve-text);
}


/*==========================================
    TOP CTA
==========================================*/

.ck-footer-cta{
    position:relative;
    z-index:3;
    transform:translateY(50%);
}

.ck-footer-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:35px 45px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(228,170,10,.18),
            transparent 28%
        ),
        linear-gradient(
            130deg,
            var(--ve-navy-light),
            var(--ve-navy)
        );
    box-shadow:0 25px 60px rgba(0,0,0,.3);
}

.ck-footer-cta-text span{
    display:block;
    margin-bottom:8px;
    color:var(--ve-gold);
    font-size:12px;
    font-weight:800;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.ck-footer-cta-text h2{
    margin:0;
    color:var(--ve-white);
    font-size:clamp(28px,3vw,40px);
    font-weight:900;
}

.ck-footer-call{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
    padding:14px 23px;
    border-radius:14px;
    background:var(--ve-gold);
    color:var(--ve-navy-dark);
    text-decoration:none;
    transition:.35s;
}

.ck-footer-call:hover{
    transform:translateY(-4px);
    background:var(--ve-white);
    color:var(--ve-navy-dark);
}

.ck-footer-call > i{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(11,28,44,.12);
    font-size:19px;
}

.ck-footer-call span{
    display:flex;
    flex-direction:column;
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.ck-footer-call strong{
    margin-top:2px;
    font-size:18px;
    letter-spacing:0;
}


/*==========================================
    MAIN FOOTER
==========================================*/

.ck-footer-main{
    position:relative;
    padding:145px 0 70px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 10% 25%,
            rgba(228,170,10,.07),
            transparent 23%
        ),
        linear-gradient(
            145deg,
            var(--ve-navy-dark),
            var(--ve-navy)
        );
}

.ck-footer-main::before{
    content:"";
    position:absolute;
    top:90px;
    right:-180px;
    width:420px;
    height:420px;
    border:1px solid rgba(228,170,10,.1);
    border-radius:50%;
}

.ck-footer-main .container{
    position:relative;
    z-index:2;
}


/*==========================================
    BRAND
==========================================*/

.ck-footer-logo{
    display:inline-flex;
    align-items:center;
    gap:13px;
    margin-bottom:25px;
    color:var(--ve-white);
    text-decoration:none;
}

.ck-logo-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:60px;
    height:60px;
    border-radius:16px;
    background:var(--ve-gold);
    color:var(--ve-navy-dark);
    font-size:25px;
    transform:rotate(-5deg);
}

.ck-logo-text{
    display:flex;
    flex-direction:column;
    color:var(--ve-white);
    font-size:22px;
    font-weight:900;
    line-height:1;
    letter-spacing:.5px;
}

.ck-logo-text small{
    margin-top:5px;
    color:var(--ve-gold);
    font-size:13px;
    font-weight:800;
    letter-spacing:2.2px;
}

.ck-footer-brand p{
    max-width:390px;
    margin:0 0 27px;
    color:var(--ve-text);
    font-size:14.5px;
    line-height:1.9;
}

.ck-footer-social{
    display:flex;
    gap:10px;
}

.ck-footer-social a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:43px;
    height:43px;
    border:1px solid rgba(255,255,255,.13);
    border-radius:11px;
    background:rgba(255,255,255,.04);
    color:var(--ve-white);
    text-decoration:none;
    transition:.3s;
}

.ck-footer-social a:hover{
    transform:translateY(-4px);
    border-color:var(--ve-gold);
    background:var(--ve-gold);
    color:var(--ve-navy-dark);
}


/*==========================================
    FOOTER WIDGETS
==========================================*/

.ck-footer-widget h3{
    position:relative;
    margin:0 0 28px;
    padding-bottom:14px;
    color:var(--ve-white);
    font-size:19px;
    font-weight:900;
}

.ck-footer-widget h3::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:43px;
    height:3px;
    border-radius:10px;
    background:var(--ve-gold);
}

.ck-footer-widget h3::after{
    content:"";
    position:absolute;
    bottom:0;
    left:49px;
    width:8px;
    height:3px;
    border-radius:10px;
    background:rgba(228,170,10,.45);
}


/*==========================================
    LINKS
==========================================*/

.ck-footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.ck-footer-links li{
    margin-bottom:14px;
}

.ck-footer-links a{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--ve-text);
    font-size:14px;
    line-height:1.5;
    text-decoration:none;
    transition:.3s;
}

.ck-footer-links a i{
    width:15px;
    color:var(--ve-gold);
    font-size:12px;
}

.ck-footer-links a:hover{
    padding-left:6px;
    color:var(--ve-gold);
}


/*==========================================
    CONTACT DATA
==========================================*/

.ck-footer-contact{
    padding:0;
    margin:0;
    list-style:none;
}

.ck-footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:17px;
    color:var(--ve-text);
    font-size:13.5px;
    line-height:1.7;
}

.ck-contact-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 38px;
    width:38px;
    height:38px;
    border-radius:10px;
    background:rgba(228,170,10,.12);
    color:var(--ve-gold);
}

.ck-footer-contact a{
    color:var(--ve-text);
    text-decoration:none;
    transition:.3s;
}

.ck-footer-contact a:hover{
    color:var(--ve-gold);
}


/*==========================================
    SERVICE GALLERY SLIDER
==========================================*/

.ck-footer-gallery-wrap{
    margin-top:65px;
    padding-top:45px;
    border-top:1px solid rgba(255,255,255,.1);
}


/*==========================================
    GALLERY TITLE
==========================================*/

.ck-footer-gallery-title{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:27px;
}

.ck-footer-gallery-title span{
    display:block;
    margin-bottom:7px;
    color:var(--ve-gold);
    font-size:11px;
    font-weight:800;
    letter-spacing:1.7px;
    text-transform:uppercase;
}

.ck-footer-gallery-title h3{
    margin:0;
    color:var(--ve-white);
    font-size:27px;
    font-weight:900;
}

.ck-footer-gallery-title > a{
    display:inline-flex;
    align-items:center;
    gap:9px;
    color:var(--ve-gold);
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

.ck-footer-gallery-title > a i{
    transition:.3s;
}

.ck-footer-gallery-title > a:hover i{
    transform:translateX(5px);
}


/*==========================================
    SWIPER CONTAINER
==========================================*/

.footerGallery{
    position:relative;
    width:100%;
    padding:8px 58px 12px;
    overflow:hidden;
}

.footerGallery .swiper-wrapper{
    align-items:stretch;
}

.footerGallery .swiper-slide{
    height:auto;
}


/*==========================================
    GALLERY ITEM
==========================================*/

.footerGallery .ck-footer-gallery-item{
    position:relative;
    display:block;
    width:100%;
    height:170px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:var(--ve-navy-light);
    box-shadow:0 12px 28px rgba(0,0,0,.18);
    text-decoration:none;
}

.footerGallery .ck-footer-gallery-item::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    background:
        linear-gradient(
            to top,
            rgba(7,22,36,.96),
            rgba(7,22,36,.18) 72%
        );
    transition:.35s;
}

.footerGallery .ck-footer-gallery-item::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    z-index:2;
    width:55%;
    height:100%;
    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );
    transform:skewX(-20deg);
    transition:.65s;
}

.footerGallery .ck-footer-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.55s ease;
}

.footerGallery .ck-footer-gallery-item span{
    position:absolute;
    left:14px;
    right:14px;
    bottom:13px;
    z-index:3;
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--ve-white);
    font-size:12px;
    font-weight:800;
    line-height:1.35;
    transition:.35s;
}

.footerGallery .ck-footer-gallery-item span i{
    color:var(--ve-gold);
    font-size:13px;
    transition:.35s;
}


/*==========================================
    GALLERY HOVER
==========================================*/

.footerGallery .ck-footer-gallery-item:hover img{
    transform:scale(1.12);
}

.footerGallery .ck-footer-gallery-item:hover::before{
    background:
        linear-gradient(
            to top,
            rgba(228,170,10,.94),
            rgba(7,22,36,.18) 78%
        );
}

.footerGallery .ck-footer-gallery-item:hover::after{
    left:145%;
}

.footerGallery .ck-footer-gallery-item:hover span,
.footerGallery .ck-footer-gallery-item:hover span i{
    color:var(--ve-navy-dark);
}


/*==========================================
    SLIDER ARROWS
==========================================*/

.footerGallery .gallery-next,
.footerGallery .gallery-prev{
    width:43px;
    height:43px;
    margin-top:0;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    background:var(--ve-gold);
    color:var(--ve-navy-dark);
    box-shadow:0 10px 24px rgba(0,0,0,.25);
    transform:translateY(-50%);
    transition:.35s;
}

.footerGallery .gallery-next{
    right:3px;
}

.footerGallery .gallery-prev{
    left:3px;
}

.footerGallery .gallery-next::after,
.footerGallery .gallery-prev::after{
    font-size:15px;
    font-weight:900;
}

.footerGallery .gallery-next:hover,
.footerGallery .gallery-prev:hover{
    border-color:var(--ve-white);
    background:var(--ve-white);
    transform:translateY(-50%) scale(1.08);
}

.footerGallery .swiper-button-disabled{
    opacity:.35;
    pointer-events:none;
}


/*==========================================
    RESPONSIVE
==========================================*/

@media(max-width:991.98px){

    .ck-footer-gallery-title{
        align-items:flex-start;
        flex-direction:column;
        gap:16px;
    }

    .footerGallery{
        padding-right:52px;
        padding-left:52px;
    }

    .footerGallery .ck-footer-gallery-item{
        height:165px;
    }

}

@media(max-width:767.98px){

    .ck-footer-gallery-wrap{
        margin-top:50px;
        padding-top:35px;
    }

    .ck-footer-gallery-title h3{
        font-size:24px;
    }

    .footerGallery{
        padding-right:45px;
        padding-left:45px;
    }

    .footerGallery .ck-footer-gallery-item{
        height:155px;
    }

    .footerGallery .gallery-next,
    .footerGallery .gallery-prev{
        width:37px;
        height:37px;
    }

    .footerGallery .gallery-next::after,
    .footerGallery .gallery-prev::after{
        font-size:13px;
    }

}

@media(max-width:575.98px){

    .footerGallery{
        padding-right:38px;
        padding-left:38px;
    }

    .footerGallery .ck-footer-gallery-item{
        height:165px;
    }

    .footerGallery .ck-footer-gallery-item span{
        font-size:11px;
    }

    .footerGallery .gallery-next{
        right:0;
    }

    .footerGallery .gallery-prev{
        left:0;
    }

}

/*==========================================
    BOTTOM FOOTER
==========================================*/

.ck-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    background:#06131f;
}

.ck-footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    min-height:80px;
}

.ck-footer-bottom p{
    margin:0;
    color:var(--ve-muted);
    font-size:12.5px;
}

.ck-footer-bottom-links{
    display:flex;
    align-items:center;
    gap:14px;
}

.ck-footer-bottom-links a{
    color:var(--ve-muted);
    font-size:12.5px;
    text-decoration:none;
    transition:.3s;
}

.ck-footer-bottom-links a:hover{
    color:var(--ve-gold);
}

.ck-footer-bottom-links span{
    width:4px;
    height:4px;
    border-radius:50%;
    background:var(--ve-gold);
}


/*==========================================
    RESPONSIVE
==========================================*/

@media(max-width:991.98px){

    .ck-footer-cta{
        transform:translateY(35%);
    }

    .ck-footer-cta-box{
        padding:30px;
    }

    .ck-footer-main{
        padding-top:125px;
    }

    .ck-footer-gallery-title{
        align-items:flex-start;
        flex-direction:column;
    }

}

@media(max-width:767.98px){

    .ck-footer-cta{
        transform:translateY(25%);
    }

    .ck-footer-cta-box{
        align-items:flex-start;
        flex-direction:column;
    }

    .ck-footer-call{
        width:100%;
        justify-content:center;
    }

    .ck-footer-main{
        padding:115px 0 55px;
    }

    .ck-footer-gallery-item{
        height:135px;
    }

    .ck-footer-bottom-inner{
        flex-direction:column;
        justify-content:center;
        padding:22px 0;
        text-align:center;
    }

}

@media(max-width:575.98px){

    .ck-footer-cta-box{
        padding:25px 20px;
        border-radius:18px;
    }

    .ck-footer-cta-text h2{
        font-size:28px;
    }

    .ck-footer-call{
        padding:12px 16px;
    }

    .ck-footer-gallery-title h3{
        font-size:23px;
    }

    .ck-footer-gallery-item{
        height:125px;
    }

    .ck-footer-bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}




.location-marquee-section{
    padding:70px 0;
    background:#071624;
    overflow:hidden;
}

.marquee-wrap{
    display:flex;
    align-items:center;
    gap:30px;
    margin-bottom:25px;
}

.marquee-wrap:last-child{
    margin-bottom:0;
}

.marquee-title{
    min-width:220px;
    color:#fff;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:12px;
}

.marquee-title i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#e4aa0a;
    color:#071624;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.marquee{
    overflow:hidden;
    flex:1;
}

.marquee-content{
    display:flex;
    width:max-content;
    animation:marquee 35s linear infinite;
}

.reverse .marquee-content{
    animation-direction:reverse;
}

.marquee-content span{
    margin-right:18px;
    background:#12283b;
    color:#fff;
    border:1px solid rgba(228,170,10,.25);
    padding:14px 28px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    white-space:nowrap;
    transition:.35s;
}

.marquee-content span:hover{
    background:#e4aa0a;
    color:#ffffff;
    transform:translateY(-4px);
}

.zip-bg .marquee-content span{
    background:#0d2133;
}

@keyframes marquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:991px){

.marquee-wrap{
    flex-direction:column;
    align-items:flex-start;
}

.marquee-title{
    min-width:auto;
}

.marquee-content{
    animation-duration:25s;
}

}