:root {
  --black: #050505;
  --white: #fff;
  --line: rgba(255,255,255,.24);
  --muted: rgba(255,255,255,.72);
  --header-height: 92px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header-inner a img {
    width: 200px;
}

.header-inner {
  height: var(--header-height);
  max-width: 1360px;
  margin: auto;
/*  padding: 0 48px;*/
  display: flex;
  align-items: center;
  gap: 34px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 275px;
}

.logo-mark {
  font-size: 43px;
  line-height: 1;
  transform: scaleX(.8);
}

.logo-text {
  display: flex;
  flex-direction: column;
  letter-spacing: 7px;
}

.logo-text strong {
  font-size: 23px;
  font-weight: 500;
}

.logo-text small {
  font-size: 10px;
  letter-spacing: 5px;
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 42px);
  flex: 1;
}

.desktop-nav a {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    padding: 35px 0;
    text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 27px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after { width: 100%; }

.header-call {
  border: 1px solid rgba(255,255,255,.7);
  padding: 12px 22px;
  font-size: 15px;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}

.header-call:hover {
  background: #fff;
  color: #000;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.65);
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: #fff;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
/*  height: 780px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgb(0 0 0 / 90%) 0%, rgb(0 0 0 / 62%) 45%, rgba(0, 0, 0, .56) 100%), linear-gradient(0deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .08) 45%, rgba(0, 0, 0, .56) 100%);
}

.hero-content {
  width: min(1120px, 90%);
  text-align: center;
  padding-top: 10px;
}
.eyebrow {
    margin: 0 0 16px;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: capitalize;
}

.hero h1 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(82px, 6.3vw, 148px);
    /* line-height: .83; */
    /* font-weight: 800; */
    /* letter-spacing: -2px; */
    text-transform: uppercase;
}

.hero-rule {
  width: 500px;
  max-width: 80%;
  height: 1px;
  background: rgba(255,255,255,.48);
  margin: 27px auto 20px;
}

.hero-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}

.btn {
  min-width: 195px;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: .25s ease;
  border-radius: 40px;
}

i.fa-brands.fa-whatsapp {
    color: #009688 !important;
}

.btn-light {
    position: relative;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
    animation: callPulse 2s infinite;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );
  transform: skewX(-20deg);
  animation: buttonShine 3s infinite;
}

.btn-light:hover {
  transform: translateY(-3px) scale(1.03);
  background: #fff;
  color: #000;
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.btn-light span,
.btn-light {
  isolation: isolate;
}

@keyframes callPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(34, 197, 94, 0.65),
      0 0 12px rgba(34, 197, 94, 0.25);
  }

  50% {
    box-shadow:
      0 0 0 10px rgba(34, 197, 94, 0),
      0 0 30px rgba(34, 197, 94, 0.55);
  }
}

@keyframes buttonShine {
  0% {
    left: -100%;
  }

  35% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.about-actions.ser_new {
    justify-content: center;
}

a.btn.btn-light i {
    font-size: 20px;
    color: #3697dd;
    display: inline-block;
    animation: phonePulse 1.5s ease-in-out infinite;
    transform-origin: center;
    margin-right: 8px;
}

@keyframes phonePulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    20% {
        transform: rotate(-12deg) scale(1.08);
    }

    40% {
        transform: rotate(12deg) scale(1.12);
    }

    60% {
        transform: rotate(-8deg) scale(1.08);
    }

    80% {
        transform: rotate(0deg) scale(1);
    }
}

.social-rail {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.social-rail a {
  font-size: 22px;
  font-weight: 600;
}

.social-rail .rail-line {
  width: 1px;
  height: 54px;
  background: rgba(255,255,255,.6);
}

.social-rail small {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 5px;
  font-size: 9px;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1px;
}

.scroll-cue i {
  width: 1px;
  height: 38px;
  background: #fff;
  position: relative;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}

.services {
  position: relative;
  min-height: 152px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
}

.services-heading {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  letter-spacing: 5px;
}

.services-word {
  position: absolute;
  left: 50%;
  top: 36px;
  transform: translateX(-50%);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 105px;
  font-weight: 800;
  color: rgba(255,255,255,.045);
  line-height: 1;
}

.service-grid {
    width: 100%;
    max-width: 1360px;
    margin: auto;
    /* padding: 55px 35px 18px; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

span.service-icon img {
    width: 60px;
    margin-bottom: 20px;
    /* padding: 10px; */
}

.service-item {
    min-height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    font-size: 18px;
    letter-spacing: .4px;
    transition: transform .25s ease, opacity .25s ease;
    text-transform: capitalize;
}

.service-item:last-child { border-right: 0; }

.service-item:hover {
  transform: translateY(-4px);
  opacity: .72;
}

.service-icon {
  font-size: 29px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-section {
  min-height: 450px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #1a1a1a;
  background: #080808;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(60px, 9vw, 140px);
  color: rgba(255,255,255,.08);
  letter-spacing: 3px;
}

@media (max-width: 1150px) {
  .logo { min-width: 210px; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 11px; }
  .header-call { padding: 11px 15px; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }

  .header-inner { padding: 0 24px; }
  .desktop-nav, .header-call { display: none; }
  .logo { min-width: 0; flex: 1; }
  .menu-toggle { display: block; }

  .mobile-menu {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,.96);
    backdrop-filter: blur(18px);
    transition: max-height .35s ease;
    border-top: 1px solid transparent;
  }

  .mobile-menu.open {
    max-height: 620px;
    border-top-color: var(--line);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 12px 24px;
  }

  .mobile-menu nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    letter-spacing: 1px;
  }

  .mobile-call {
    display: inline-block;
    margin: 10px 24px 25px;
    border: 1px solid #fff;
    padding: 13px 20px;
    font-size: 13px;
  }

  .hero {
    height: 760px;
    min-height: 100svh;
  }

  .hero-content { padding-top: 65px; }

  .hero h1 {
    font-size: clamp(68px, 14vw, 105px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
  }

  .hero-copy { font-size: 14px; }

  .social-rail { display: none; }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }

  .service-item:nth-child(3),
  .service-item:nth-child(6) { border-right: 0; }

  .service-item:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 18px; }

  .logo-text strong { font-size: 17px; letter-spacing: 5px; }
  .logo-text small { font-size: 7px; letter-spacing: 3px; }
  .logo-mark { font-size: 34px; }

    .hero {
        height: auto;
        align-items: center;
        min-height: auto;
        padding: 100px 0px;
    }

  .hero-video {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.8) 100%),
      rgba(0,0,0,.16);
  }

  .hero-content {
    width: 92%;
    padding-top: 55px;
  }

     .eyebrow {
        margin-bottom: 12px;
        font-size: 14px;
        letter-spacing: 0px;
    }

  .hero h1 {
    font-size: 40px;
    letter-spacing: 0px;
  }

  .hero-rule { margin: 20px auto 16px; }

  .hero-copy {
    font-size: 12px;
    line-height: 1.65;
  }

  .desktop-only { display: none; }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .header-inner a img {
    width: 160px;
}

  .btn {
    min-width: 0;
    width: 47%;
    padding: 13px 9px;
    font-size: 11px;
  }

  .scroll-cue {
    bottom: 13px;
    font-size: 8px;
  }

  .services {
    min-height: auto;
  }

  .services-heading {
    top: 18px;
    font-size: 9px;
    letter-spacing: 4px;
  }

  .services-word {
    top: 22px;
    font-size: 73px;
  }

  .service-grid {
    padding: 60px 12px 14px;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    border-right: 1px solid rgba(255,255,255,.14);
    min-height: 82px;
    font-size: 9px;
    gap: 8px;
  }

  .service-item:nth-child(2n) { border-right: 0; }
  .service-item:nth-child(3),
  .service-item:nth-child(4) {
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 13px;
  }

  .service-icon { font-size: 23px; }

  .placeholder-section { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-section {
    position: relative;
    width: 100%;
    padding: 120px 30px 90px;
    background: #050505;
    color: #fff;
    overflow: hidden;
}


/* =========================================
   1360px RESPONSIVE CONTAINER
========================================= */

.about-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1360px;
/*    padding: 0px 48px;*/

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 55px;

    align-items: center;
}


/* =========================================
   BACKGROUND TEXT
========================================= */

.about-bg-text {
    position: absolute;

    top: 10px;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: clamp(120px, 15vw, 220px);

    font-weight: 900;

    line-height: .8;

    letter-spacing: -8px;

    color: rgba(255, 255, 255, .035);

    pointer-events: none;

    white-space: nowrap;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-content {
    max-width: 560px;
}


/* EYEBROW */

.about-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;

    color: rgba(255,255,255,.55);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 5px;
}

.about-eyebrow span {
    width: 33px;
    height: 1px;

    background: #22c55e;

    display: block;
}


/* TITLE */

.about-title {
    margin: 0 0 24px;

    font-family: Arial, sans-serif;

    font-size: clamp(60px, 6vw, 92px);

    line-height: .9;

    letter-spacing: -4px;

    font-weight: 600;
}

.about-title span {
    color: transparent;

    -webkit-text-stroke: 1.5px #fff;
}


/* DESCRIPTION */

.about-description {
    max-width: 550px;

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================
   STATS
========================================= */

.about-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 38px;

    border-top: 1px solid rgba(255,255,255,.15);

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.stat-item {
    padding: 30px 20px 30px 0;
    border: 1px solid rgba(255, 255, 255, .15);
    background: #000000;
    text-align: center;
}

.stat-item:not(:first-child) {
    padding-left: 20px;
}

/*.stat-item:last-child {
    border-right: none;
}*/

.stat-item strong {
    display: block;
    margin-bottom: 5px;
    color: #0054ad;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
}

.stat-item span {
    display: block;
    color: rgb(255 255 255);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* =========================================
   BUTTONS
========================================= */

.about-actions {
    display: flex;

    gap: 14px;

    margin-top: 40px;
}

.about-btn {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 185px;

    height: 52px;

    padding: 0 24px;

    border-radius: 30px;

    background: #fff;

    color: #111;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    overflow: hidden;

    transition: .35s ease;
}


/* ICON */

.about-btn i {
    font-size: 17px;
}

.call-btn i {
    color: #3697dd;
}

.whatsapp-btn i {
    color: #18b89a;
}


/* GREEN GLOW */

.about-btn {
    border: 2px solid #22c55e;

    box-shadow:
        0 0 12px rgba(34,197,94,.35),
        0 0 25px rgba(34,197,94,.15);

    animation: aboutButtonPulse 2.5s infinite;
}


@keyframes aboutButtonPulse {

    0%,100% {
        box-shadow:
            0 0 8px rgba(34,197,94,.25),
            0 0 18px rgba(34,197,94,.1);
    }

    50% {
        box-shadow:
            0 0 15px rgba(34,197,94,.55),
            0 0 35px rgba(34,197,94,.25);
    }

}


.about-btn:hover {
    transform: translateY(-3px);

    background: #22c55e;

    color: #000;

    box-shadow:
        0 0 15px rgba(34,197,94,.7),
        0 0 35px rgba(34,197,94,.35);
}


/* =========================================
   RIGHT VISUAL AREA
========================================= */

.about-visual {
    position: relative;

    width: 100%;

    height: 540px;

    display: grid;

/*    grid-template-columns: 1fr 1fr;*/

   grid-template-rows: 298px 233px;

    gap: 10px;
}


/* COMMON */

.visual-image, .visual-video {
    position: relative;
    overflow: hidden;
/*    background: #0d0d0d;*/
    border: 1px solid rgb(255 255 255);
    border-radius: 20px 0px;
}


/* IMAGE 01 */

.image-one {
    grid-column: 1;
    grid-row: 1;
}


/* IMAGE 03 */

.image-three {
    grid-column: 1;
    grid-row: 2;
}


/* VIDEO 02 */

.visual-video {
    grid-column: 2;

    grid-row: 1 / span 2;
}


/* MEDIA */

.visual-image img{
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: grayscale(100%);

    transition:
        transform .8s ease,
        filter .8s ease;
}


.visual-video video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

/*    filter: grayscale(100%);*/

    transition:
        transform .8s ease,
        filter .8s ease;
}



/* HOVER */

.visual-image:hover img,
.visual-video:hover video {
    transform: scale(1.06);

    filter: grayscale(0%);
}


/* =========================================
   VIDEO
========================================= */

.video-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05),
            rgba(0,0,0,.75)
        );

    pointer-events: none;
}


.video-label {
    position: absolute;

    left: 22px;
    bottom: 20px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.75);

    font-size: 9px;

    letter-spacing: 2px;
}


/* LIVE DOT */

.live-dot {
    width: 7px;
    height: 7px;

    display: block;

    background: #22c55e;

    border-radius: 50%;

    box-shadow: 0 0 10px #22c55e;

    animation: livePulse 1.5s infinite;
}


@keyframes livePulse {

    0%,100% {
        transform: scale(1);

        opacity: 1;
    }

    50% {
        transform: scale(.6);

        opacity: .4;
    }

}


/* NUMBER */

.visual-number {
    position: absolute;

    top: 14px;
    right: 15px;

    color: rgba(255,255,255,.7);

    font-size: 10px;

    letter-spacing: 2px;

    z-index: 3;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .about-container {
        grid-template-columns: 1fr;

        max-width: 850px;

        gap: 70px;
    }

    .about-content {
        max-width: 700px;
    }

    .about-visual {
        height: 520px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .about-section {
        padding: 80px 20px 70px;
    }

    .about-bg-text {
        font-size: 90px;

        letter-spacing: -4px;

        top: 25px;
    }


    /* CONTENT */

    .about-eyebrow {
        font-size: 8px;

        letter-spacing: 3px;

        margin-bottom: 20px;
    }

    .about-title {
        font-size: 58px;

        letter-spacing: -3px;

        margin-bottom: 20px;
    }

    .about-description {
        font-size: 12px;

        line-height: 1.8;
    }


    /* STATS */

    .about-stats {
        margin-top: 28px;
    }

    .stat-item {
        padding: 16px 8px 16px 0;
    }

    .stat-item:not(:first-child) {
        padding-left: 10px;
    }

    .stat-item strong {
        font-size: 26px;
    }

    .stat-item span {
        font-size: 7px;

        letter-spacing: .5px;
    }


    /* BUTTONS */

    .about-actions {
        flex-direction: column;

        gap: 10px;

        margin-top: 22px;
    }

    .about-btn {
        width: 100%;

        min-width: 0;

        height: 50px;
    }


    /* VISUAL */

    .about-visual {
        height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        grid-template-rows: 190px 220px;

        gap: 8px;
    }

    .image-one {
        grid-column: 1;
        grid-row: 1;
    }

    .visual-video {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .image-three {
        grid-column: 1;
        grid-row: 2;
    }

    .video-label {
        left: 10px;

        bottom: 12px;

        font-size: 7px;

        letter-spacing: 1px;
    }

    .visual-number {
        top: 10px;
        right: 10px;
    }

}

video.hero-video-1 {
    width: 100%;
    height: 100%;
}

/* =========================================
   SERVICE NEW
========================================= */

.service_new {
    text-align: center;
    position: relative;
    width: 100%;
    padding: 50px 30px 50px;
    background: #050505;
    color: #fff;
    overflow: hidden;
}


.service_new_container {
    width: 100%;

    max-width: 1360px;
/*    padding: 0px 48px;*/

    margin: 0 auto;

    position: relative;
}


/* =========================================
   HEADING
========================================= */

/*.service_new_heading {
    position: relative;

    z-index: 5;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 60px;
}*/


.service_new_label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .55);
    font-size: 16px;
    letter-spacing: 5px;
    justify-content: center;
}


.service_new_label span {
    width: 35px;

    height: 1px;

    background: #22c55e;
}


.service_new_heading h2 {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: clamp(55px, 7vw, 92px);

    line-height: .8;

    letter-spacing: -5px;

    font-weight: 600;
    margin-bottom: 30px;
}


.service_new_heading h2 span {
    color: transparent;

    -webkit-text-stroke: 1px #fff;
}




/* =========================================
   SLIDER
========================================= */

.service_new_slider {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}


.service_new_track {
    position: relative;

    width: 100%;

    height: 620px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}


/* =========================================
   CARD
========================================= */

.service_new_card {
    position: absolute;

    width: 530px;

    height: 590px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%)
        scale(.72);

    opacity: 0;

    visibility: hidden;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.25);

    background: #111;

    transition:
        transform .7s cubic-bezier(.22,.61,.36,1),
        opacity .6s ease,
        filter .6s ease;

    pointer-events: none;
}


.service_new_card img {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);

    transition: transform 1s ease;
}


.service_new_overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 15%,
            rgba(0,0,0,.15) 35%,
            rgba(0,0,0,.92) 100%
        );
}


/* =========================================
   ACTIVE CARD
========================================= */

.service_new_card.active {
    transform:
        translate(-50%, -50%)
        scale(1);

    opacity: 1;

    visibility: visible;

    z-index: 5;

    pointer-events: auto;
}


.service_new_card.active img {
    transform: scale(1.04);
}


/* =========================================
   PREVIOUS / NEXT CARDS
========================================= */

.service_new_card.prev {
    transform:
        translate(calc(-50% - 490px), -50%)
        scale(.78);

    opacity: .42;

    visibility: visible;

    z-index: 2;

    filter: brightness(.65);

    pointer-events: auto;
}


.service_new_card.next {
    transform:
        translate(calc(-50% + 490px), -50%)
        scale(.78);

    opacity: .42;

    visibility: visible;

    z-index: 2;

    filter: brightness(.65);

    pointer-events: auto;
}


/* =========================================
   CARD CONTENT
========================================= */

.service_new_card_content {
    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 3;

    padding: 35px;
}


.service_new_number {
    display: block;

    margin-bottom: 15px;

    color: rgba(255,255,255,.65);

    font-size: 10px;

    letter-spacing: 3px;
}


.service_new_card h3 {
    margin: 0 0 15px;

/*    font-family: Arial, sans-serif;*/

    font-size: 24px;

    line-height: .95;

/*    letter-spacing: -1.5px;*/

    font-weight: 700;
}


.service_new_card p {
/*    max-width: 360px;*/

    margin: 0 0 10px;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.service_new_btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    padding: 13px 20px;

    border: 1px solid rgba(255,255,255,.55);

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.5px;

    transition: all .3s ease;
}


.service_new_btn span {
    font-size: 17px;

    transition: transform .3s ease;
}


.service_new_btn:hover {
    background: #22c55e;

    border-color: #22c55e;

    color: #000;
}


.service_new_btn:hover span {
    transform: translate(4px,-4px);
}


/* =========================================
   ARROWS
========================================= */

.service_new_arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.45);

    border-radius: 50%;

    background: rgba(0,0,0,.6);

    color: #fff;

    cursor: pointer;

    transform: translateY(-50%);

    transition: all .3s ease;

    backdrop-filter: blur(8px);
}


.service_new_arrow span {
    font-size: 32px;

    line-height: 1;

    font-weight: 200;
}


.service_new_prev {
    left: 20px;
}


.service_new_next {
    right: 20px;
}


.service_new_arrow:hover {
    background: #fff;

    border-color:  #fff;

    color: #000;

    transform: translateY(-50%) scale(1.08);
}


/* =========================================
   BOTTOM
========================================= */

.service_new_bottom {
    display: flex;

    align-items: center;

    gap: 30px;

    max-width: 460px;

    margin: 20px auto 0;
}


.service_new_progress {
    position: relative;

    flex: 1;

    height: 1px;

    background: rgba(255,255,255,.2);

    overflow: hidden;
}


.service_new_progress_bar {
    position: absolute;

    left: 0;

    top: 0;

    width: 16.66%;

    height: 100%;

    background: #22c55e;

    transition: width .5s ease;
}


.service_new_counter {
    white-space: nowrap;

    font-size: 11px;

    letter-spacing: 2px;

    color: rgba(255,255,255,.45);
}


.service_new_counter strong {
    color: #fff;

    font-weight: 500;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .service_new_card {
        width: 420px;

        height: 540px;
    }

    .service_new_card.prev {
        transform:
            translate(calc(-50% - 370px), -50%)
            scale(.72);
    }

    .service_new_card.next {
        transform:
            translate(calc(-50% + 370px), -50%)
            scale(.72);
    }

    .service_new_prev {
        left: 5px;
    }

    .service_new_next {
        right: 5px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .service_new {
        padding: 80px 20px 70px;
    }


    .service_new_heading {
        display: block;

        margin-bottom: 40px;
    }


    .service_new_heading h2 {
        font-size: 58px;

        letter-spacing: -3px;
    }


    .service_new_heading > p {
        width: 100%;

        max-width: 500px;

        margin-top: 25px;
    }


    .service_new_track {
        height: 540px;

        overflow: visible;
    }


    .service_new_card {
        width: calc(100vw - 70px);

        max-width: 420px;

        height: 500px;
    }


    .service_new_card.prev {
        transform:
            translate(calc(-50% - 300px), -50%)
            scale(.72);

        opacity: 0;
    }


    .service_new_card.next {
        transform:
            translate(calc(-50% + 300px), -50%)
            scale(.72);

        opacity: 0;
    }


    .service_new_arrow {
        width: 45px;

        height: 45px;
    }


    .service_new_prev {
        left: -5px;
    }


    .service_new_next {
        right: -5px;
    }


    .service_new_card_content {
        padding: 25px;
    }


    .service_new_card h3 {
        font-size: 34px;
    }


    .service_new_card p {
        font-size: 11px;
    }


    .service_new_bottom {
        max-width: 100%;

        margin-top: 10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .service_new_heading h2 {
        font-size: 48px;
    }


    .service_new_card {
        width: calc(100vw - 55px);

        height: 470px;
    }


    .service_new_card h3 {
        font-size: 30px;
    }


    .service_new_btn {
        padding: 11px 15px;

        gap: 15px;
    }

}

/* ========================================
   GALLERY NEW
======================================== */

.gallery_new {
    width: 100%;
    padding: 100px 30px;
    background: #050505;
    color: #fff;
    overflow: hidden;
}


.gallery_new_container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}


/* ========================================
   HEADING
======================================== */

.gallery_new_heading {
    text-align: center;
    margin-bottom: 50px;
}


.gallery_new_label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.65);

    font-size: 16px;
    letter-spacing: 4px;
}


.gallery_new_label i {
    width: 25px;
    height: 1px;
    background: #22c55e;
}


.gallery_new_heading h2 {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: clamp(50px, 6vw, 82px);

    line-height: .9;

    letter-spacing: -4px;

    font-weight: 600;
}


.gallery_new_heading h2 span {
    color: transparent;

    -webkit-text-stroke: 1px #fff;
}


/* ========================================
   GRID
======================================== */

.gallery_new_grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

/*    max-width: 1160px;*/

    margin: 0 auto;
}


/* ========================================
   GALLERY CARD
======================================== */

.gallery_new_item {

    position: relative;

    height: 280px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.55);

    border-radius: 0 0 18px 0;

    background: #111;

    cursor: pointer;
}


.gallery_new_item img,
.gallery_new_item video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);

    transition:
        transform .7s cubic-bezier(.22,.61,.36,1),
        filter .5s ease;
}


/* ========================================
   HOVER
======================================== */

.gallery_new_item:hover img,
.gallery_new_item:hover video {

    transform: scale(1.08);

    filter: grayscale(0%);
}


/* ========================================
   DARK OVERLAY
======================================== */

.gallery_new_item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.15),
            rgba(0,0,0,.65)
        );

    opacity: .5;

    transition: opacity .4s ease;
}


.gallery_new_item:hover::after {
    opacity: .85;
}


/* ========================================
   NUMBER
======================================== */

.gallery_number {

    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 3;

    color: rgba(255,255,255,.8);

    font-size: 9px;

    letter-spacing: 2px;
}


/* ========================================
   HOVER CONTENT
======================================== */

.gallery_hover {

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 15px;

    z-index: 4;

    display: flex;

    align-items: center;

    justify-content: space-between;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity .4s ease,
        transform .4s ease;
}


.gallery_new_item:hover .gallery_hover {

    opacity: 1;

    transform: translateY(0);
}


.gallery_hover span {

    font-size: 9px;

    letter-spacing: 2px;
}


.gallery_hover b {

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 50%;

    font-size: 15px;

    font-weight: 400;
}


/* ========================================
   VIDEO
======================================== */

.gallery_video {
    position: relative;
}


.gallery_play {

    position: absolute;

    z-index: 5;

    left: 50%;
    top: 50%;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 50%;

    background: rgba(0,0,0,.3);

    font-size: 14px;

    transform: translate(-50%, -50%);

    transition: all .35s ease;
}


.gallery_video:hover .gallery_play {

    background: #22c55e;

    border-color: #22c55e;

    color: #000;

    transform:
        translate(-50%, -50%)
        scale(1.1);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .gallery_new {

        padding: 80px 25px;
    }


    .gallery_new_grid {

        grid-template-columns:
            repeat(2, 1fr);

        max-width: 760px;
    }


    .gallery_new_item {

        height: 280px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .gallery_new {

        padding: 70px 18px;
    }


    .gallery_new_heading {

        margin-bottom: 35px;
    }


    .gallery_new_heading h2 {

        font-size: 48px;

        letter-spacing: -3px;
    }


    .gallery_new_grid {

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .gallery_new_item {

        height: 320px;

        border-radius: 0 0 15px 0;
    }


    /* Always show hover info on mobile */

    .gallery_hover {

        opacity: 1;

        transform: translateY(0);
    }

}


.gallery_new {
    position: relative;
    width: 100%;
    padding: 50px 30px;
    background: #050505;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

/* Animated cinematic light */
.gallery_new::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;

    top: -350px;
    left: -200px;

    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.14) 0%,
        rgba(34, 197, 94, 0.06) 30%,
        transparent 70%
    );

    filter: blur(30px);

    animation: galleryLightMove 10s ease-in-out infinite alternate;

    pointer-events: none;
    z-index: -1;
}


/* Second moving light */
.gallery_new::after {
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    bottom: -300px;

    background: radial-gradient(
        circle,
        rgba(0, 150, 255, 0.10) 0%,
        rgba(0, 150, 255, 0.04) 35%,
        transparent 70%
    );

    filter: blur(35px);

    animation: galleryLightMove2 13s ease-in-out infinite alternate;

    pointer-events: none;
    z-index: -1;
}


/* Green light movement */
@keyframes galleryLightMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(300px, 180px) scale(1.2);
    }

    100% {
        transform: translate(600px, 50px) scale(.9);
    }
}


/* Blue light movement */
@keyframes galleryLightMove2 {

    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-250px, -180px) scale(1.15);
    }

    100% {
        transform: translate(-500px, -50px) scale(.9);
    }
}

.hero-content h3 {
    font-size: 32px;
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonials_new {
    position: relative;
    width: 100%;
    padding: 50px 30px;

    background: #050505;
    color: #fff;

    overflow: hidden;
    isolation: isolate;
}


/* =========================================
   CONTAINER
========================================= */

.testimonials_container {
    position: relative;

    width: 100%;
    max-width: 1360px;

    margin: 0 auto;
}


/* =========================================
   BACKGROUND TEXT
========================================= */

.testimonials_bg_text {
    position: absolute;

    top: -55px;
    left: 0;

    font-size: clamp(80px, 12vw, 170px);

    font-weight: 900;

    line-height: 1;

    letter-spacing: -8px;

    color: rgba(255,255,255,0.025);

    pointer-events: none;

    white-space: nowrap;
}


/* =========================================
   GRID
========================================= */

.testimonials_grid {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.testimonial_content {
    position: relative;

    padding: 35px 0;
}


/* LABEL */

.testimonial_label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    font-size: 16px;

    letter-spacing: 4px;

    color: rgba(255,255,255,.55);
}


.testimonial_label span {

    width: 35px;
    height: 1px;

    background: #1f7ad0;
}

.testimonial_slider h2 {
    font-size: 32px;
    margin-top: 0px;
}


/* =========================================
   HEADING
========================================= */

.testimonial_content h2 {

    margin: 0 0 30px;

    font-size: clamp(50px, 5vw, 78px);

    line-height: .95;

    letter-spacing: -4px;

    font-weight: 800;
}


.testimonial_content h2 strong {

    color: transparent;

    -webkit-text-stroke: 1px #fff;

    font-weight: 800;
}


/* =========================================
   RATING
========================================= */

.testimonial_rating {

    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 30px;
}


.testimonial_rating span {
    color: #FFC107;
    font-size: 26px;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, .5));
}


.testimonial_rating small {

    margin-left: 10px;

    color: rgba(255,255,255,.5);

    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================================
   QUOTE
========================================= */

.testimonial_quote {

    position: absolute;

    top: 150px;
    right: 20px;

    font-family: Georgia, serif;

    font-size: 110px;

    line-height: 1;

    color: #22c55e;

    opacity: .35;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial_text {

    max-width: 650px;

    padding-right: 30px;

    font-size: clamp(20px, 2vw, 24px);

    line-height: 1.55;

    font-weight: 300;

    color: rgba(255,255,255,.78);
}


/* =========================================
   AUTHOR
========================================= */

.testimonial_author {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 38px;
}


.author_line {

    width: 45px;
    height: 1px;

    background: #22c55e;
}

.testimonial_author h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2196F3;
}


.testimonial_author p {

    margin: 5px 0 0;

    font-size: 14px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,.45);
}


/* =========================================
   GOOGLE
========================================= */

.testimonial_google {

    position: absolute;

    right: 0;
    bottom: 80px;

    font-family: Arial, sans-serif;

    font-size: 28px;

    font-weight: 500;
}


.google_g,
.google_g2 {
    color: #4285f4;
}

.google_o1 {
    color: #ea4335;
}

.google_o2 {
    color: #fbbc05;
}

.google_l {
    color: #34a853;
}

.google_e {
    color: #ea4335;
}


/* =========================================
   CONTROLS
========================================= */

.testimonial_controls {

    display: flex;

    gap: 12px;

    margin-top: 55px;
}


.testimonial_controls button {

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    font-size: 21px;

    cursor: pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.testimonial_controls button:hover {

    background: #fff;

    border-color: #fff;

    color: #000;

    transform: translateY(-3px);
}


/* =========================================
   VIDEO
========================================= */

.testimonial_video {

    position: relative;

    width: 100%;

    height: 500px;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 0 0 45px 0;
}


.testimonial_video video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(20%);

    transition: transform 1s ease;
}


.testimonial_video:hover video {

    transform: scale(1.04);
}


/* =========================================
   VIDEO OVERLAY
========================================= */

.video_overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.15),
            transparent 45%,
            rgba(0,0,0,.85)
        );

    z-index: 1;
}


/* =========================================
   VIDEO TOP
========================================= */

.video_top {

    position: absolute;

    top: 22px;

    left: 25px;
    right: 25px;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    font-size: 9px;

    letter-spacing: 3px;

    color: rgba(255,255,255,.7);
}


.video_top span:first-child::before {

    content: "";

    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 8px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 12px #22c55e;
}


/* =========================================
   VIDEO BOTTOM
========================================= */

.video_bottom {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;

    align-items: end;

    justify-content: space-between;
}


.video_bottom > span {

    max-width: 350px;

    font-size: 25px;

    line-height: 1.1;

    font-weight: 600;
}


.video_bottom strong {

    display: block;

    color: #22c55e;
}


/* =========================================
   PLAY BUTTON
========================================= */

.video_play {

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 50%;

    background: rgba(0,0,0,.25);

    color: #fff;

    cursor: pointer;

    transition: all .3s ease;
}


.video_play:hover {

    background: #22c55e;

    border-color: #22c55e;

    color: #000;

    transform: scale(1.1);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .testimonials_grid {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .testimonial_video {

        height: 500px;
    }


    .testimonial_google {

        position: static;

        margin-top: 30px;
    }


    .testimonial_controls {

        margin-top: 35px;
    }
}


@media (max-width: 600px) {

    .testimonials_new {

        padding: 80px 18px;
    }


    .testimonials_grid {

        gap: 45px;
    }


    .testimonial_content h2 {

        font-size: 50px;

        letter-spacing: -3px;
    }


    .testimonial_text {

        font-size: 19px;

        padding-right: 0;
    }


    .testimonial_quote {

        top: 145px;

        right: 0;

        font-size: 80px;
    }


    .testimonial_video {

        height: 430px;

        border-radius: 0 0 25px 0;
    }


    .video_bottom > span {

        font-size: 19px;
    }


    .video_play {

        width: 48px;
        height: 48px;
    }


    .testimonials_bg_text {

        top: -20px;

        font-size: 75px;
    }

}

/* =========================================
   TESTIMONIAL SLIDER
========================================= */

.testimonial_slider {
    position: relative;
    min-width: 0;
}


/* SLIDES WRAPPER */

.testimonial_slides {
    position: relative;

/*    min-height: 300px;*/
}


/* INDIVIDUAL SLIDE */

.testimonial_slide {

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;

    opacity: 0;

    visibility: hidden;

    transform: translateX(30px);

    transition:
        opacity .5s ease,
        transform .5s ease,
        visibility .5s ease;
}


.testimonial_slide.active {

    position: relative;

    opacity: 1;

    visibility: visible;

    transform: translateX(0);
}


/* =========================================
   SLIDER ANIMATION
========================================= */

.testimonial_slide.active .testimonial_rating {

    animation: testimonialFadeUp .6s ease both;
}


.testimonial_slide.active .testimonial_text {

    animation: testimonialFadeUp .7s .08s ease both;
}


.testimonial_slide.active .testimonial_author {

    animation: testimonialFadeUp .7s .16s ease both;
}


@keyframes testimonialFadeUp {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
   PARTNERS / BRAND SECTION
   ========================================================= */

.partners_new {
    position: relative;
    width: 100%;
    padding: 50px 30px;
    background: #050505;
    color: #fff;
    overflow: hidden;
}

/* Animated background glow */
.partners_new::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -250px;
    left: -180px;
    background: radial-gradient(
        circle,
        rgba(0, 255, 140, 0.10) 0%,
        rgba(0, 255, 140, 0.04) 35%,
        transparent 70%
    );
    pointer-events: none;
    animation: partnerGlow 8s ease-in-out infinite alternate;
}

.partners_new::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -200px;
    bottom: -250px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
    animation: partnerGlow 10s ease-in-out infinite alternate-reverse;
}


/* Main container */
.partners_new_container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}


/* =========================================================
   TOP LABEL
   ========================================================= */

.partners_new_top {
    text-align: center;
    margin-bottom: 60px;

    opacity: 0;
    animation: partnerFadeUp 0.8s ease forwards;
}

.partners_new_top .eyebrow {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 30px;

    color: #00ff8c;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    background: rgba(255,255,255,0.03);
}


.partners_new_copy {
    padding: 15px 0px 15px 30px;
}

.partners_new_top h2 {
    margin: 22px auto 0;

/*    max-width: 1000px;*/

    font-size: clamp(38px, 7vw, 92px);
    line-height: 0.98;
    font-weight: 700;

    letter-spacing: -2px;
}

.partners_new_top h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.7);
}


/* =========================================================
   CONTENT GRID
   ========================================================= */

.partners_new_content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
    background: #fff;
    border-radius: 30px 0px;
    overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.partners_new_copy {

    opacity: 0;

    animation:
        partnerFadeUp 0.9s ease 0.15s forwards;
}

.partners_new_copy .small_title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 25px;

    color: #00ff8c;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.partners_new_copy .small_title::before {
    content: "";

    width: 35px;
    height: 1px;

    background: #00ff8c;
}


.partners_new_copy h3 {
    margin: 0 0 28px;
    max-width: 650px;
    font-size: clamp(34px, 4vw, 46px);
    line-height: normal;
    font-weight: 700;
    color: #3f3f3f;
}


.partners_new_copy h3 span {
    color: transparent;

    -webkit-text-stroke: 1px #fff;
}


.partners_new_copy p {
    max-width: 100%;
    margin: 0 0 20px;
    color: rgb(0 0 0 / 93%);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   STATS
   ========================================================= */

.partners_stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 40px;

    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}


.partner_stat {

    padding: 24px 20px;

    border-right: 1px solid rgba(255,255,255,0.15);
}

.partner_stat:last-child {
    border-right: 0;
}


.partner_stat strong {

    display: block;

    color: #00ff8c;

    font-size: 38px;

    line-height: 1;

    margin-bottom: 8px;
}


.partner_stat span {

    color: rgba(255,255,255,0.55);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.partners_buttons {

    display: flex;

    gap: 15px;

    margin-top: 35px;

    flex-wrap: wrap;
}


.partners_buttons a {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 170px;

    padding: 14px 25px;

    border-radius: 40px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: all 0.35s ease;

    overflow: hidden;
}


.partners_buttons .btn-call {

    color: #050505;

    background: #fff;

    box-shadow:
        0 0 0 rgba(0,255,140,0);

    animation: callButtonPulse 2.5s infinite;
}


.partners_buttons .btn-whatsapp {

    color: #fff;

    background: transparent;

    border: 1px solid rgba(255,255,255,0.5);
}


.partners_buttons a:hover {

    transform: translateY(-4px);
}


.partners_buttons .btn-call:hover {

    background: #00ff8c;

    box-shadow:
        0 10px 35px rgba(0,255,140,0.35);
}


.partners_buttons .btn-whatsapp:hover {

    border-color: #00ff8c;

    color: #00ff8c;

    box-shadow:
        0 10px 30px rgba(0,255,140,0.18);
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.partners_new_visual {

    position: relative;

    opacity: 0;

    animation:
        partnerFadeUp 0.9s ease 0.3s forwards;
}


.partners_new_visual img {

    width: 100%;

    height: 620px;

    object-fit: cover;

    display: block;

    border-radius: 2px;

    filter: grayscale(100%);

    transition:
        filter 0.6s ease,
        transform 0.6s ease;
}


.partners_new_visual:hover img {

    filter: grayscale(0%);

    transform: scale(1.015);
}


/* Image frame */

.partners_new_visual::before {

    content: "";

    position: absolute;

    top: -14px;
    right: -14px;

    width: 100%;
    height: 100%;

    border: 1px solid rgba(0,255,140,0.35);

    z-index: -1;
}


/* Number */

.partners_new_visual .visual_number {

    position: absolute;

    top: 20px;
    right: 20px;

    color: #fff;

    font-size: 12px;

    letter-spacing: 2px;

    z-index: 3;
}


/* Bottom label */

.partners_new_visual .visual_label {

    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    z-index: 3;
}


.partners_new_visual .visual_label::before {

    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #00ff8c;

    box-shadow:
        0 0 12px #00ff8c;

    animation: dotBlink 1.5s infinite;
}

.partners_image_wrap img {
    width: 100%;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes partnerFadeUp {

    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes partnerGlow {

    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(40px, 30px, 0) scale(1.15);
    }

}


@keyframes callButtonPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(0,255,140,0);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(0,255,140,0.08),
            0 0 25px rgba(0,255,140,0.15);
    }

}


@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.7);
    }

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .partners_new {
        padding: 90px 25px;
    }

    .partners_new_content {

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .partners_new_copy {

        max-width: 800px;
        margin: 0 auto;

        text-align: center;
    }

    .partners_new_copy .small_title {

        justify-content: center;
    }

    .partners_new_copy p {

        margin-left: auto;
        margin-right: auto;
    }

    .partners_stats {

        text-align: left;
    }

    .partners_buttons {

        justify-content: center;
    }

    .partners_new_visual {

        max-width: 750px;

        width: 100%;

        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .partners_new {

        padding: 75px 18px;
    }

    .partners_new_top {

        margin-bottom: 45px;
    }

    .partners_new_top h2 {

        font-size: 42px;

        letter-spacing: -1px;
    }

    .partners_new_copy h3 {

        font-size: 38px;
    }

    .partners_new_copy p {

        font-size: 14px;

        line-height: 1.7;
    }

    .partners_stats {

        grid-template-columns: 1fr;
    }

    .partner_stat {

        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,0.15);

        padding: 18px 5px;
    }

    .partner_stat:last-child {

        border-bottom: 0;
    }

    .partner_stat strong {

        font-size: 32px;
    }

    .partners_buttons {

        flex-direction: column;

        width: 100%;
    }

    .partners_buttons a {

        width: 100%;
    }

    .partners_new_visual img {

        height: 430px;
    }

    .partners_new_visual::before {

        top: -8px;
        right: -8px;
    }

}

/* =========================================================
   VIDEO CTA SECTION
   ========================================================= */

.cta_video_new {
    position: relative;
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 30px;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #020707,
            #071a25,
            #061014
        );
}


/* =========================================================
   BACKGROUND IMAGE / VIDEO
   ========================================================= */

/*
   Agar background image lagani hai to yahan URL change karo.
*/

.cta_video_new::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url("images/cta-bg.jpg");

    background-size: cover;
    background-position: center;

    opacity: 0.42;

    filter: saturate(0.8);

    transform: scale(1.05);

    animation: ctaBackgroundMove 12s ease-in-out infinite alternate;
}


/* Dark overlay */

.cta_video_overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.78),
            rgba(3,20,30,0.68),
            rgba(0,0,0,0.78)
        );

    z-index: 1;
}


/* =========================================================
   ANIMATED GREEN GLOW
   ========================================================= */

.cta_video_glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    z-index: 1;
}


.glow_one {
    left: -180px;
    top: -180px;

    background: rgba(0,255,140,0.14);

    animation: glowMoveOne 8s ease-in-out infinite alternate;
}


.glow_two {
    right: -180px;
    bottom: -220px;

    background: rgba(0,150,255,0.13);

    animation: glowMoveTwo 10s ease-in-out infinite alternate;
}


/* =========================================================
   GRID
   ========================================================= */

.cta_video_grid {
    position: absolute;
    inset: 0;

    z-index: 2;

    opacity: 0.25;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );
}


/* =========================================================
   CONTENT
   ========================================================= */

.cta_video_content {

    position: relative;

    z-index: 5;

    width: 100%;
    max-width: 1100px;

    text-align: center;

    animation: ctaContentReveal 1s ease forwards;
}


/* small label */

.cta_video_tag {

    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    color: #00ff8c;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 4px;
}


.cta_video_tag::before,
.cta_video_tag::after {

    content: "";

    width: 30px;
    height: 1px;

    background: #00ff8c;
}


/* heading */

.cta_video_content h2 {

/*    max-width: 900px;*/

    margin: 0 auto;

    font-size: clamp(34px, 4.5vw, 62px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1.5px;
}


/* paragraph */

.cta_video_content p {

    max-width: 1000px;

    margin: 25px auto 0;

    color: rgba(255,255,255,0.78);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   BUTTON
   ========================================================= */

.cta_video_btn {

    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 30px;

    padding: 15px 25px;

    min-width: 250px;

    color: #050505;

    background: #fff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.5px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* shine */

.cta_video_btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.7),
            transparent
        );

    transform: skewX(-20deg);

    animation: buttonShine 3.5s infinite;
}


.cta_video_btn span {

    position: relative;

    font-size: 18px;

    color: #00a968;

    transition: transform 0.3s ease;
}


.cta_video_btn:hover {

    transform: translateY(-4px);

    background: #00ff8c;

    box-shadow:
        0 12px 35px rgba(0,255,140,0.3);
}


.cta_video_btn:hover span {

    transform: translate(4px, -4px);
}

.about-actions.cta-new {
    justify-content: center;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes ctaContentReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes ctaBackgroundMove {

    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }

}


@keyframes glowMoveOne {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(180px,100px);
    }

}


@keyframes glowMoveTwo {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(-150px,-100px);
    }

}


@keyframes buttonShine {

    0% {
        left: -120%;
    }

    35%,
    100% {
        left: 140%;
    }

}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .cta_video_new {

        min-height: 480px;

        padding: 75px 20px;
    }

    .cta_video_content h2 {

        font-size: 34px;

        line-height: 1.12;
    }

    .cta_video_content p {

        font-size: 14px;

        line-height: 1.7;
    }

    .cta_video_tag {

        font-size: 9px;

        letter-spacing: 3px;
    }

    .cta_video_btn {

        width: 100%;

        max-width: 300px;
    }

}


@media (max-width: 480px) {

    .cta_video_new {

        padding: 65px 18px;
    }

    .cta_video_content h2 {

        font-size: 30px;
    }

    .cta_video_content p {

        font-size: 13px;
    }

    .cta_video_glow {

        width: 300px;
        height: 300px;

        filter: blur(80px);
    }

}

/* ===============================
   CLIENT MARQUEE SECTION
================================ */

.clients-marquee-section {
    width: 100%;
    padding: 50px 0;
    background: #050505;
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* subtle background */
.clients-marquee-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255,255,255,0.05),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(255,255,255,0.04),
            transparent 35%
        );

    pointer-events: none;
}

.clients-container {
    width: min(1360px, calc(100% - 60px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* ===============================
   HEADING
================================ */

.clients-heading {
    text-align: center;
    margin-bottom: 55px;
}

.clients-heading span {
    display: inline-block;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;

    color: #8dffb1;

    margin-bottom: 15px;
}

.clients-heading h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.95;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: -2px;
}

.clients-heading p {
    margin: 20px auto 0;

    max-width: 600px;

    color: #999;
    font-size: 15px;
    line-height: 1.7;
}


/* ===============================
   MARQUEE
================================ */

.logo-marquee {
    width: 100%;
    overflow: hidden;

    margin: 20px 0;

    position: relative;
}


/* Fade edges */

.logo-marquee::before,
.logo-marquee::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 140px;

    z-index: 3;

    pointer-events: none;
}

.logo-marquee::before {
    left: 0;

    background: linear-gradient(
        to right,
        #050505,
        transparent
    );
}

.logo-marquee::after {
    right: 0;

    background: linear-gradient(
        to left,
        #050505,
        transparent
    );
}


/* ===============================
   TRACK
================================ */

.logo-track {
    display: flex;
    width: max-content;

    gap: 22px;

    will-change: transform;
}


/* Row 1 */

.marquee-left .logo-track {
    animation: marqueeLeft 28s linear infinite;
}


/* Row 2 */

.marquee-right .logo-track {
    animation: marqueeRight 32s linear infinite;
}


/* ===============================
   LOGO CARD
================================ */

.client-logo {
    width: 100%;
    /* height: 145px; */
    flex: 0 0 255px;
    background: #ffffff;
/*    border: 1px solid rgba(255, 255, 255, 0.12);*/
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}


/* Top green line */

.client-logo::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #8dffb1;

    transition: width 0.5s ease;
}


/* Hover */

.client-logo:hover {
    transform: translateY(-6px);

    border-color: rgba(141,255,177,0.5);

    background: #151515;
}

.client-logo:hover::before {
    width: 100%;
}


/* Logo */
.client-logo img {
    max-width: 100%;
    /* max-height: 75px; */
    /* width: auto; */
    /* height: auto; */
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.75; */
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;

    transform: scale(1.06);
}


/* ===============================
   ANIMATIONS
================================ */

@keyframes marqueeLeft {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


@keyframes marqueeRight {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Pause on hover */

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .clients-marquee-section {
        padding: 80px 0;
    }

    .clients-container {
        width: calc(100% - 30px);
    }

    .clients-heading {
        margin-bottom: 35px;
    }

    .client-logo {
        width: 210px;
        height: 120px;

        flex-basis: 210px;

        padding: 20px;
    }

    .logo-track {
        gap: 15px;
    }

}


@media (max-width: 600px) {

    .clients-marquee-section {
        padding: 70px 0;
    }

    .clients-heading h2 {
        font-size: 38px;
    }

    .clients-heading p {
        font-size: 14px;
        padding: 0 15px;
    }

    .clients-heading span {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .client-logo {
        width: 175px;
        height: 105px;

        flex-basis: 175px;

        padding: 15px;
    }

    .client-logo img {
        max-height: 55px;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 50px;
    }

}

/* =========================================
   FOOTER NEW
========================================= */

.footer-new {
    position: relative;
    width: 100%;
    background: #050505;
    color: #fff;
    overflow: hidden;
    padding-top: 50px;
    border-top: 1px solid #272727;
}

/* subtle background glow */

.footer-new::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    bottom: -250px;
    background: rgba(0, 255, 120, 0.06);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.footer-new::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -200px;
    top: 100px;
    background: rgba(255, 255, 255, 0.035);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.footer-container {
    position: relative;
    z-index: 2;

    width: min(1360px, calc(100% - 60px));
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;

    padding-bottom: 50px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-label {
    position: relative;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    font-size: 12px;
    letter-spacing: 4px;
    color: #aaa;

    margin-bottom: 28px;

    padding-left: 38px;
}

.footer-label::before {
    content: "";

    position: absolute;
    left: 0;

    width: 24px;
    height: 1px;

    background: #18d66b;
}


.footer-info h2 {
    margin: 0 0 28px;

    max-width: 620px;

    font-size: clamp(48px, 5vw, 78px);
    line-height: 0.95;
    font-weight: 700;

    letter-spacing: -3px;
}

.footer-info h2 span {
/*    display: block;*/
    color: transparent;
    -webkit-text-stroke: 1px #777;
}


.footer-description {
    max-width: 560px;
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 45px;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;

    gap: 18px;

    color: #fff;
    text-decoration: none;

    transition: transform 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(8px);
}


.contact-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333;
    border-radius: 50%;

    color: #18d66b;

    transition: all 0.3s ease;
}

.footer-contact-item:hover .contact-icon {
    background: #18d66b;
    color: #000;
    border-color: #18d66b;
    box-shadow: 0 0 25px rgba(24, 214, 107, 0.35);
}


.footer-contact-item small {
    display: block;

    font-size: 10px;
    letter-spacing: 2px;

    color: #777;

    margin-bottom: 5px;
}

.footer-contact-item strong {
    display: block;

    font-size: 16px;
    font-weight: 500;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 50px;
}

.footer-social span {
    font-size: 16px;
    letter-spacing: 3px;
    color: #e0e0e0;
    margin-right: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333;
    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #18d66b;
    color: #000;
    border-color: #18d66b;

    transform: translateY(-4px);
}


/* =========================================
   FORM WRAPPER
========================================= */

.footer-form-wrapper {
    position: relative;

    background: #0d0d0d;

    border: 1px solid #242424;

    padding: 20px;

    overflow: hidden;
}

.footer-form-wrapper::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #18d66b,
        transparent
    );

    animation: footerLine 4s linear infinite;
}

@keyframes footerLine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


.form-top {
    display: flex;
    justify-content: space-between;

    margin-bottom: 22px;

    font-size: 10px;
    letter-spacing: 3px;

    color: #777;
}

.form-number {
    color: #18d66b;
}


.footer-form-wrapper h3 {
    margin: 0 0 35px;
    font-size: clamp(30px, 3vw, 39px);
    line-height: normal;
    text-transform: uppercase;
    /* letter-spacing: -1px; */
}


/* =========================================
   FORM
========================================= */

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 54px;

    box-sizing: border-box;

    background: transparent;

    border: 1px solid #fff;

    color: #fff;

    padding: 0 16px;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
        border-radius: 5px;
}

.form-group input::placeholder {
    color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #18d66b;
    background: #111;
}

.form-group select {
    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);

    background-position:
        calc(100% - 20px) 22px,
        calc(100% - 14px) 22px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}

.form-group select option {
    background: #111;
    color: #fff;
}


/* =========================================
   FORM BOTTOM
========================================= */

.form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 15px;

    padding-top: 25px;

    border-top: 1px solid #222;
}

.form-bottom p {
    max-width: 280px;

    margin: 0;

    color: #666;

    font-size: 12px;
    line-height: 1.6;
}


.footer-submit {
    position: relative;

    display: flex;
    align-items: center;
    gap: 20px;

    border: 1px solid #fff;

    background: #fff;
    color: #000;

    padding: 18px 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    cursor: pointer;

    overflow: hidden;

    transition: all 0.3s ease;
    border-radius: 30px;
}

.footer-submit::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 100%;

    background: rgba(255,255,255,0.4);

    transform: skewX(-25deg);

    transition: left 0.5s ease;
}

.footer-submit:hover::before {
    left: 140%;
}

.footer-submit:hover {
    box-shadow: 0 0 30px rgba(24,214,107,0.3);
}

.footer-submit i {
    transition: transform 0.3s ease;
}

.footer-submit:hover i {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    position: relative;
    z-index: 2;

    border-top: 1px solid #1c1c1c;
}

.footer-bottom-container {
  /*  width: min(1360px, calc(100% - 60px));
    margin: auto;

    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;*/

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #555;
    font-size: 12px;
}

.footer-bottom a {
    color: #666;

    font-size: 12px;

    text-decoration: none;

    margin-left: 25px;

    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #18d66b;
}

.footer-bottom-container p {
    background: #000;
    border-top: 1px solid #ccc;
    padding-top: 15px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .footer-info h2 {
        max-width: 700px;
    }

    .footer-description {
        max-width: 700px;
    }

}


@media (max-width: 700px) {

    .footer-new {
        padding-top: 70px;
    }

    .footer-container {
        width: min(100% - 30px, 600px);
        padding-bottom: 70px;

        gap: 50px;
    }

    .footer-info h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-submit {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom-container {
        width: min(100% - 30px, 600px);

        padding: 20px 0;

        flex-direction: column;
        gap: 15px;

        text-align: center;
    }

    .footer-bottom a {
        margin: 0 8px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .footer-form-wrapper::before {
        animation: none;
    }

    .footer-contact-item,
    .footer-social a,
    .footer-submit,
    .footer-submit i {
        transition: none;
    }

}


/*WhatsApp Floating Button */

.wa-float {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 9999;
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waPulse 2.5s ease-in-out infinite;
    left: 30px;
}

/* Blinking / Highlight Ring */
.wa-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: waBlink 1.5s ease-out infinite;
    pointer-events: none;
}

.wa-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

/* Button Pulse */
@keyframes waPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* Highlight / Blinking Effect */
@keyframes waBlink {
    0% {
        transform: scale(0.9);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
  animation: none;
}

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}

@media (max-width: 640px) {
  .wa-float { right: 16px; bottom: 20px; width: 50px; height: 50px; }
}


/*--- Enquire Form --*/
.sidebar-contact {
  position: fixed;
  top: 50%;
  right: -350px;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  padding: 0px;
  background: #fff;
  box-shadow: 0 20px 50px rgb(0 0 0 / 10%);
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 999;
}

.sidebar-contact .toggle-2 {
    position: absolute;
    width: 160px;
    text-align: center;
    cursor: pointer;
    background-image: linear-gradient(45deg, #4CAF50, #03A9F4, #009688) !important;
    top: 40%;
    transform: rotate(270deg);
    left: -104px;
    font-size: 18px;
    color: #fff;
    line-height: 34px;
    text-transform: uppercase;
    padding: 6px 10px;
}



.modal-form {
  padding: 15px;
}

.modal-form .form-footer {
    text-align: center;
    padding: 15px;
    /* border: 1px dashed gray; */
    border: 2px outset #14292c;
}

.modal-form .form-footer p strong {
  font-size: 22px;
  margin-bottom: 5px;
  color:#14292c;
  font-weight: 700;
}

.modal-form .form-footer p {
  font-size: 16px;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.modal-form .form-control {
  border: 1px solid #b8b8b8;
  color: #696969;
  border-radius: 4px;
  width: 100%;
}

.form-control {
  border-radius: 0;
  padding: 15px 15px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
}


.sidebar-contact.active {
  right: 0;
}

.sidebar-contact.active .toggle {
  top: 60px;
  transition: 0.5s;
}

.modal-form .countryCode {
  color: #000;
  outline: none;
}

.countryCode {
  position: absolute;
  width: 100px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  height: 57%;
  border: 0;
  background-color: transparent;
  z-index: 1;
  color: #fff;
}

.countryCode~.form-control {
  padding-left: 120px;
}

.modal-form .send_btn.btn {
    background-image: linear-gradient(45deg, #4CAF50, #03A9F4, #009688) !important;
    border-radius: 30px;
    color: #fff;
    padding: 18px 25px;
    margin: 0 auto;
    display: table;
    width: 100%;
    border: 0px;
}

textarea.form-control {
    background: #000;
    font-size: 16px;
    color: #fff !important;
}

textarea.form-control::placeholder{
  color: #fff;
}

.form-footer .form-group input, .form-footer .form-group select{
  background: #000;
}



@media(max-width:420px){
        .sidebar-contact {
        position: fixed;
        top: 50%;
        right: -310px;
        transform: translateY(-50%);
        width: 310px;
        height: auto;
        padding: 0px;
        background: #fff;
        box-shadow: 0 20px 50px rgb(0 0 0 / 10%);
        box-sizing: border-box;
        transition: 0.5s;
        z-index: 9999;
    }
}


@media (max-width:767px){
      .hero h1 {
        font-size: 34px;
    }

        .hero-content {
        padding-top: 20px;
    }

        .service-grid {
        padding: 15px 15px;
        grid-template-columns: repeat(1, 1fr);
    }
        .hero-actions {
        gap: 10px;
        margin-top: 22px;
        flex-direction: column;
    }

        .btn {
        width: 100%;

    }

        .service-item {
        border-right: 0px solid rgba(255, 255, 255, .14);
    
        font-size: 15px;
        gap: 8px;
    }

    .service-icon {
    height: auto;
}

span.service-icon img {
    width: 60px;
    margin-bottom: 0px;
    padding: 0px;
}

    .service-item:nth-child(3), .service-item:nth-child(4) {
         border-bottom: 0px solid rgba(255, 255, 255, .14); 
    }

    .about-section {
        padding: 50px 15px 50px;
    }

        .about-bg-text {
        font-size: 46px;
    }

    .about-title {
        font-size: 42px;
       
    }

    .about-description {
        font-size: 14px;
    }

        .stat-item span {
        font-size: 10px;
        letter-spacing: .5px;
        line-height: 16px;
    }

    .sidebar-contact .toggle-2 {
    position: absolute;
  
    font-size: 15px;
   }

       .about-visual {
        height: auto;
        display: flex;
        /* grid-template-columns: 100%; */
        /* grid-template-rows: 1fr 1fr; */
        gap: 8px;
        flex-direction: column;
    }

        .about-container {
        gap: 20px;
    }

        .service_new {
        padding: 30px 15px 10px;
    }

        .service_new_heading h2, .partners_new_top h2 {
        font-size: 36px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .service_new_label,.gallery_new_label {
    margin-bottom: 15px;
}

    .service_new_heading {
        display: block;
        margin-bottom: 0px;
    }

        .service_new_card {
        width: calc(100vw - 55px);
        height: 400px;
    }

        .service_new_card_content {
        padding: 10px;
    }

        .service_new_track {
        height: 450px;
       
    }

        .service_new_card h3 {
        font-size: 24px;
    }

        .service_new_arrow {
        width: 30px;
        height: 30px;
    }

    .service_new_arrow span {
    font-size: 24px;
    line-height: 1;
    font-weight: 200;
}

.gallery_new, .testimonials_new, .partners_new, .cta_video_new, .clients-marquee-section{
  padding: 30px 15px;
}

    .service_new_label,.gallery_new_label, .testimonial_label, .footer-label {
    margin-bottom: 15px;
}

.gallery_new_heading h2 {
        font-size: 36px;
        letter-spacing: -3px;
    }

    .hero-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

    .eyebrow {
        margin-bottom: 12px;
        font-size: 18px;
        letter-spacing: 0px;
    }

    .testimonial_slider h2 {
    font-size: 30px;
    margin-top: 0px;
}

    .partners_new_copy {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 10px;
    }

    .partners_new_copy h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

        .partners_new_content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .cta_video_content p {
        font-size: 16px;
    }

        .cta_video_content h2 {
        font-size: 24px;
        letter-spacing: 0px;
    }

        .footer-new {
        padding-top: 30px;
    }

        .footer-info h2 {
        font-size: 36px;
        letter-spacing: -2px;
    }

    .footer-social {
   
    margin-top: 18px;
}

    .footer-container {
    
        padding-bottom: 0px;
        gap: 20px;
        width: 100%;
    }

    .footer-form-wrapper h3 {
    margin: 0 0 20px;
    font-size: 20px;
  }

      .footer-form-wrapper {
        padding: 15px;
    }

        .form-row, .footer-form {
        grid-template-columns: 1fr;
        gap: 6px;
    }

        .footer-bottom-container {
       
        width: 100%;
    }

    .footer-bottom-container p {
   
    font-size: 15px;
    line-height: 22px;
   
}


}




