@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jockey+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jockey One", sans-serif;
}

.section-padding {
    padding: 50px 0;
}

.site-owner-name p {
  font-size: 18px;
  font-weight: 800;
  color: #7f00ff;
}

 

.moving-text .slide-text {
  width: 100%;
  background-color: #ffc72cff;
  padding: 12px 0; 
  display: flex;
  flex-direction: row;
  white-space: nowrap;  
  overflow: hidden ;
}

.moving-text h1, .moving-text span {
  display: inline-block;
  font-size: 28px;
  font-weight: normal; 
  margin-bottom: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
}

.text-moving-img {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    overflow: hidden !important;
    position: relative !important;
    z-index: 1;
}

.text-moving-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: 10000px;
    background-image: url('../images/moving-img-text.png');
    background-repeat: repeat-x;
    background-size: auto 70px;
    animation: scrollBgFix 100s linear infinite;
    transform: translateZ(0);
    will-change: transform;
    z-index: 0;
}
 
@keyframes scrollBgFix {
  0% {
    transform: translateX(0);
  }
  100% {
      transform: translateX(-5000px);
  }
}
 

.section-heading h3 {
  color: #212121; 
  font-family: "Jockey One";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; 
}

.section-heading h3 span {
    color: #ffc72cff;
}

.section-heading h2 {
  color: #212121; 
  font-family: "Jockey One";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

 

.bg-ci {
  background-color: #F5F5F5;
}

.p-24 {
  padding: 24px;
}

.rounded-16 {
  border-radius: 16px;
}

.section-heading h2 span {
    color: #ffc72cff;
}

.center-heading h3 {
  color: #212121; 
  font-family: "Jockey One";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.center-heading h3 span {
  color: #FFC72C;
}

.center-heading p { 
  color: #757575; 
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.center-heading p strong {
  color: #212121;
}

.center-heading p a {
  color: #212121;
  font-weight: 700;
}

.section-heading p {
    color: #757575; 
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 10px;
}

.section-heading .sub-paragraph {
    font-size: 23px !important;
    font-weight: 600;
    color: #4a4a4aff;
}

.section-heading ul {
    list-style-type: none; 
    position: relative;  
} 

.section-heading ul li {
    font-size: 18px !important;
    font-weight: 400;
    margin-bottom: 1rem;
}
.section-heading ul {
    list-style: none; /* remove default bullets */
    padding-left: 2rem;
    margin: 0;
}

.image-frame {
    box-shadow: none;
    width: 560px;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform, filter;
    transform: translateZ(0);
    transition: transform .45s cubic-bezier(.25,1,.3,1), filter .45s ease;
    border: solid rgba(0, 0, 0, .15); 
    padding: 5px;  
    border-radius: 16px;
    border: 8px solid #FFF;  
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
 
}

.image-frame2 {
  max-width: 100%;
  width: 250px;
  vertical-align: middle;
}

.image-frame:hover {
    transform: scale(1.025);
    filter: contrast(1.03) saturate(1.04) brightness(1.02);
}

.proof-credibility-content p {
    font-size: 18px !important;
    font-weight: 400;
    margin-bottom: 30px;
}

.section-heading ul li {
    position: relative;  
    padding-left: 30px;   
    margin-bottom: 10px;

    color: #757575; 
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.section-heading ul li::before {
    content: '';
    position: absolute;
    top: 3px; /* adjust vertically */
    left: 0;
    width: 20px;
    height: 20px;
    background: url('../images/check.svg') no-repeat center center;
    background-size: contain; /* keep aspect ratio */
}

.card { 
    padding: 24px;
    border-radius: 16px;
    background: #FFF;
    border-color: white;
    border-width: 1px;
    border-style: solid;  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.card h5 {
    color: #212121; 
    font-family: "Jockey One";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.card p {
    color: #757575; 
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.btn-main {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 700;  
    display: inline;;
    color: #212121;
    background: linear-gradient(180deg, #ffd65c, #ffc72c);
    border: 0;
    border-radius: 24px;
    padding: 10px 40px; 
    text-decoration: none; 
    box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; 
    cursor: pointer;
    display: inline-block; 
}

.btn-main:hover {
    transform: translateY(-2px) scale(1.015) !important;
    box-shadow: 0 12px 28px rgba(255, 199, 44, .45) !important;
    filter: brightness(1.02) !important;
}


.video-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 9;
    padding: 20px;
}

.video-hero .bgVideo {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.navbar {
    background-color: #726749;
    padding: 12px; 
    border-radius: 100px;
}

.navbar .navbar-nav .nav-item {
    padding: 10px 16px;
}

.navbar .navbar-nav .nav-link { 
  color: #FFF; 
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
line-height: normal;
}

.navbar .navbar-nav .nav-btn {
  border-radius: 24px;
  background: #FFC72C; 
  padding: 10px 40px;
  margin-left: 10px;
}

.navbar .navbar-nav .nav-btn a {
  color: #000;
}

.video-hero .hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
    text-transform: uppercase;
}

.video-hero .hero-content .play-icon {
    margin-bottom: 100px;
}

.owner-name {
  background-color: #ffffffcd;
  border-radius: 50px;
  margin-bottom: 30px;
  padding: 10px 16px;
  display: inline-block;
}
.owner-name p {
  font-size: 16px;
  font-weight: 700;
  /* color: #7f00ff; */
  color: #000;
  margin-bottom: 0;
}

.video-hero .hero-content h1 { 
    color: #ffc72ce6; 
    font-family: "Jockey One";
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; 
    letter-spacing: -1.2px;
}

.video-hero .hero-content h2 {
  color: #ffc72ce6; 
  font-family: "Jockey One";
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 101px; 
}

.video-hero .hero-content p {
  color: #FFF;
  text-transform: capitalize;
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.breadcrumb-sec {
  width: 100%;
  padding: 20px 20px 100px 20px; 
  
  background: linear-gradient(-45deg, #ffd65c, #ffc72c9f), url('../images/breadcrumb-img.png');
  background-repeat: no-repeat; 
  background-size: cover;
}

.breadcrumb-sec .bread-content small {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.breadcrumb-sec .bread-content h1 {
  font-weight: 800;
  color: #fff;
  font-size: 52px;
}

.breadcrumb-sec .bread-content p {
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  max-width: 650px;
  margin: auto;
}

.top-card {
  margin-top: -120px;
}

.top-card .card {
   background-color: #fff;
}

.top-card .card h4 {
  margin-bottom: 16px;
  color: #000;
  font-size: 20px;
  font-weight: 800;
}

.top-card .card p {
  font-size: 16px; 
  font-weight: 400;
}

.icon-card .c-content {
  display: flex;
}

.icon-card .c-content h3 {
  font-size: 22px;
  font-weight: 600;
}

.icon-card .c-content p {
  font-size: 16px;
  font-weight: 400;
}

.qoutes-wrapper h5 {
  font-size: 18px;
  font-weight: 500;
}

.qoutes-wrapper h5 span {
  color: #ffc72c;
  font-weight: 800;
}

.qoutes-wrapper p {
  font-weight: 700;
  font-style: 18px;
}

.qoutes-wrapper .info {
  margin-top: 30px;
}

.qoutes-wrapper .info h3 {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 600;
  line-height: 20px;
  color: #050124;
}

.qoutes-wrapper .info small {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #5c5c5c;
}

footer {
    background-color: #171717ff;
    width: 100%;
}

/* footer .footer-top {
  border-top: 1px solid rgba(255, 255, 255, 0.20); 
  padding-top: 50px;
} */

footer .footer-links h4 {
  color: #FFF; 
  font-family: "Jockey One";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
}

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

footer .footer-links li a {
  color: #FFF;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  letter-spacing: -0.32px;
}

footer .footer-info img {
    margin-bottom: 20px;
}

footer .footer-info p {
  color: #FFF; 
   font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.32px;
}

footer .social-links h4 {
  color: #FFF; 
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
}

footer .social-links a {
  border-radius: 6px;
  background: #FFF;
  width: 40px;
  height: 40px;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 

.copyright-text  {
    border-top: 1px solid rgba(255, 255, 255, 0.20); 

}

.copyright-text p {
  color: #FFF; 
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.32px;
}

.copyright-text .copyright-links a {
  color: #FFF; 
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
  letter-spacing: -0.32px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}


/* Testimonial Silider */

/* ========= Brand + Typography ========= */
#ci-testimonials, #ci-testimonials *{
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji";
}
:root{
--ci-purple:#ffc72c; /* was #7f00ff */
--ci-yellow:#ffc72c; 
--ci-blue:#ffc72c;   /* was #1dbdef */
--ci-neutral:#f8f9fb;
}

/* ========= Wrapper, Container ========= */
#ci-testimonials.ci-wrap{
background:#fff;
border-radius:24px;
/* remove outer shadow & let content go full width */
box-shadow: none !important;
/* no side padding so videos span horizontally */
padding: clamp(16px, 2.4vw, 28px) 0;
color:#111;
}
#ci-testimonials .ci-container{
width: 100%;
max-width: none;   /* no horizontal constraint */
margin: 0;         /* no centering margin */
}

/* ========= Track (horizontal scroll) ========= */
.ci-track{
display:flex;
gap: clamp(12px, 1.8vw, 20px);
overflow-x:auto;
-webkit-overflow-scrolling: touch;
scroll-snap-type: x mandatory;
padding-bottom: 6px;
cursor: grab;
}
.ci-track:active{ cursor: grabbing; }
.ci-track::-webkit-scrollbar{height:8px}
.ci-track::-webkit-scrollbar-thumb{
background: linear-gradient(90deg,var(--ci-purple),var(--ci-blue));
border-radius:8px;
}
.ci-track::-webkit-scrollbar-track{background:#eef1f5;border-radius:8px}

/* ========= Mosaic Group ========= */
.ci-group{
scroll-snap-align:start;
background: var(--ci-neutral);
border-radius:20px;
padding: clamp(8px, 1.2vw, 12px);
display:grid;
grid-template-columns: 1.1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: clamp(8px, 1.1vw, 12px);
min-width: 100%;     /* take full horizontal space */
min-height: 340px;   /* same as before */
align-content: stretch;
box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}

/* Placement (desktop) */
.ci-group .a{ grid-column:1; grid-row:1 / span 2; }
.ci-group .b{ grid-column:2; grid-row:1; }
.ci-group .c{ grid-column:3; grid-row:1; }
.ci-group .d{ grid-column:2; grid-row:2; }
.ci-group .e{ grid-column:3; grid-row:2; }
.ci-group .f{ grid-column:3; grid-row:2; }

/* ========= Cards ========= */
.ci-card{
position:relative;
border: none; background:transparent; padding:0; cursor:pointer;
border-radius:16px; overflow:hidden;
box-shadow: 0 8px 20px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.04);
transition: transform .2s ease, box-shadow .2s ease;
}
.ci-card:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }
.ci-card:focus-visible{ outline: 3px solid rgba(255,199,44,.35); outline-offset: 2px; } /* was rgba(127,0,255,.35) */
.ci-thumb{ width:100%; height:100%; object-fit:cover; background:#ddd; }

/* ========= Play Icon (yellow fill + thin brand ring) ========= */
.ci-play{
position:absolute; inset:0; margin:auto;
width:62px; height:62px;
border-radius:50%;
display:flex; align-items:center; justify-content:center;
background: rgba(255,199,44,0.92); /* was rgba(127,0,255,0.92) */
box-shadow: 0 10px 24px rgba(0,0,0,0.22);
transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.ci-play::after{
content:"";
position:absolute; inset:-2px; border-radius:inherit; padding:2px;
background: conic-gradient(var(--ci-purple), var(--ci-blue), var(--ci-yellow), var(--ci-purple));
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
-webkit-mask-composite: xor; mask-composite: exclude;
background-clip: content-box, border-box;
}
.ci-play::before{
content:"";
width:0; height:0;
border-left:16px solid #ffffff;
border-top:10px solid transparent;
border-bottom:10px solid transparent;
filter: drop-shadow(0 1px 2px rgba(0,0,0,0.28));
}
.ci-card:hover .ci-play{
background: rgba(255,199,44,1); /* was rgba(127,0,255,1) */
transform: scale(1.04);
box-shadow: 0 12px 28px rgba(0,0,0,0.26);
}

/* ========= Mobile / Tablet ========= */
@media (max-width: 991px){
.ci-group{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: 300px;
}
.ci-group .a{ grid-column:1 / span 2; grid-row:1; aspect-ratio: 16/10; }
.ci-group .b{ grid-column:1; grid-row:2; }
.ci-group .c{ grid-column:2; grid-row:2; }
.ci-group .d{ grid-column:1; grid-row:3; }
.ci-group .e{ grid-column:2; grid-row:3; }
.ci-group .f{ display:none; }
}

/* ========= Persistent Mobile Swipe Hint ========= */
.ci-hint{
margin-top: 10px;
display:none;
align-items:center;
gap:8px;
color:#495057;
font-size:14px;
font-weight:500;
}
.ci-dot{width:6px;height:6px;border-radius:50%;background:var(--ci-purple);opacity:.4;animation: ciPulse 1.6s infinite}
.ci-dot:nth-child(2){animation-delay:.2s;background:var(--ci-blue)}
.ci-dot:nth-child(3){animation-delay:.4s;background:var(--ci-yellow)}
@keyframes ciPulse{0%,100%{transform:scale(1);opacity:.4}50%{transform:scale(1.6);opacity:1}}
@media (max-width: 991px){ .ci-hint{display:flex} }

/* ========= Modal ========= */
.ci-modal{ position:fixed; inset:0; display:none; z-index:9999; }
.ci-modal.active{ display:block; }
.ci-overlay{
position:absolute; inset:0; background: rgba(17,17,17,.55);
backdrop-filter: blur(6px);
}
.ci-dialog{
position:absolute; inset:0; margin:auto; width: min(92vw, 960px);
aspect-ratio: 16/9; background:#000; border-radius:14px; overflow:hidden;
box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
@media (max-width: 480px){ .ci-dialog{ width:96vw; border-radius:12px; } }
.ci-close{
position:absolute; top:10px; right:10px; z-index:3;
border:none; background: rgba(255,255,255,.95);
width:36px; height:36px; border-radius:10px; font-size:20px; cursor:pointer;
line-height:36px; text-align:center;
box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.ci-close:hover{ background:#fff; }

.ci-iframe-wrap{ position:absolute; inset:0; display:grid; place-items:center; background:#000; }
.ci-iframe-wrap iframe{ width:100%; height:100%; border:0; display:block; }
.ci-spinner{
width:52px; height:52px; border-radius:50%;
border:4px solid rgba(255,255,255,.25);
border-top-color:#fff; animation: ciSpin .8s linear infinite;
}

/* Motion safety */
@keyframes ciSpin{to{transform:rotate(360deg)}}
    @media (prefers-reduced-motion: reduce){
    .ci-card, .ci-play{ transition:none !important; }
    .ci-dot{ animation: none !important; }
}

:root {
    --coop-purple: #ffc72c;
    --coop-purple-light: #ffc72c;
    --background: #ffffff;
    --card: #111;
  }

  .carousel-section {
    background-color: var(--background); 
    position: relative;
    overflow: hidden;
  }

  .glider-contain {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
  }

  .glider {
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .glider-slide {
    background-color: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 clamp(4px, 1vw, 10px);
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .glider-slide:hover {
    transform: scale(1.03);
  }

  .glider-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 1rem;
  }

  .glider-slide:hover::after {
    opacity: 1;
  }

  .video-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(40px, 6vw, 60px);
    height: clamp(40px, 6vw, 60px);
    transform: translate(-50%, -50%);
    background-color: var(--coop-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: background 0.3s ease;
    animation: pulse 2.5s infinite;
  }

  .play-button:hover {
    background-color: var(--coop-purple-light);
  }

  .play-button::before {
    content: "";
    display: block;
    border-style: solid;
    border-width: clamp(8px, 1.2vw, 10px) 0 clamp(8px, 1.2vw, 10px) clamp(14px, 2vw, 18px);
    border-color: transparent transparent transparent #1C1C1C;
    margin-left: 3px;
  }

  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 199, 44, 0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(255, 199, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 199, 44, 0); }
  }

  .glider-prev,
  .glider-next {
    background-color: var(--coop-purple);
    border: none;
    color: #171717;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
  }

  .glider-prev { left: -20px; }
  .glider-next { right: -20px; }

  .video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(23, 23, 23, 0.4);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
  }

  .video-modal.active {
    display: flex;
  }

  .modal-content {
    position: relative;
    width: 90vw;
    max-width: 720px;
    aspect-ratio: 16 / 9;
  }

  .modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.75rem;
  }

  .close-btn {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }

  .glider-slide:focus {
    outline: 2px solid var(--coop-purple);
    outline-offset: 4px;
  }

  /* Swipe Hint Style for all devices */
  .swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #aaa;
    margin-top: 16px;
  }

  /* ✅ MOBILE ONLY UPGRADES */
  @media screen and (max-width: 768px) {
    .glider-prev,
    .glider-next {
      display: none !important;
    }

    .glider-contain::before,
    .glider-contain::after {
      content: "";
      position: absolute;
      top: 0;
      width: 40px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .glider-contain::before {
      left: 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
    }

    .glider-contain::after {
      right: 0;
      background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
    }

    .swipe-icon {
      animation: bounceRight 1.6s ease-in-out infinite;
      font-size: 1.2rem;
    }
  }

  @keyframes bounceRight {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50%      { transform: translateX(8px); opacity: 1; }
  }


.navbar-toggler,
.navbar-toggler:hover,
.navbar-toggler:active,
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
    border: none;
}

@media only screen and (max-width: 600px) {
  .video-hero .hero-content .play-icon {
      margin-bottom: 70px;
  }

  .video-hero .hero-content h1 {
      font-size: 70px; 
  }

  .video-hero .hero-content h2 {
      font-size: 58px; 
  }

  .video-hero .hero-content p {
      font-size: 20px;
      font-weight: 600;
      color: #ffffff; 
  }

  .section-padding {
    padding: 40px 0;
  }

  .video-hero .navbar {
    padding: 8px 10px;
    border-radius: 30px;
  }

  .video-hero .hero-content {
    margin-top: 220px;
  }

  .video-hero {
    padding: 12px;
  }

  .btn-main {
    font-size: 17px;
  }
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 502;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 503;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  height: 100%;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 505; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 504; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 506; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  top: 0;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: solid transparent; }
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  opacity: 0.8;
  border-top-width: 12px;
  border-bottom-width: 12px;
  top: 8px; }
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 20px;
  border-bottom-width: 20px; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after,
  .mfp-arrow-left .mfp-a {
    border-right: 12px solid black;
    left: 5px; }
  .mfp-arrow-left:before,
  .mfp-arrow-left .mfp-b {
    border-right: 20px solid white; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after,
  .mfp-arrow-right .mfp-a {
    border-left: 12px solid black;
    left: 3px; }
  .mfp-arrow-right:before,
  .mfp-arrow-right .mfp-b {
    border-left: 20px solid white; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

.mfp-iframe-holder .mfp-close {
  top: -43px; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.mfp-figure {
  line-height: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-break: break-word;
  padding-right: 36px; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; } }
@media all and (max-width: 800px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.faqs-wrapper .accordion {
  margin-bottom: 1.4rem;
} 

.faqs-wrapper .accordion-item {
  border: none;
  background: #FFFFFF;
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  margin-bottom: 20px;
}

.faqs-wrapper  .accordion-item .accordion-button {
	border-top-left-radius: 18px !important; 
	width: 100%;
	color: #000000; 
	font-size: 20px;
    line-height: 29px;
    border-top-right-radius: 18px !important;
}

.faqs-wrapper  .accordion-item .accordion-body p { 
    font-size: 14px;
    line-height: 150%; 
    color: #000000;
}

 

.faqs-wrapper  .accordion-button:not(.collapsed) {
	color: #000000;
	background-color: #ffffff; 
	border-bottom: 1px solid #DBDBDB;
	box-shadow: none;
}

.faqs-wrapper  .accordion-item .accordion-button:focus  {
	outline: none;
	box-shadow: none;
}

.faqs-wrapper  .accordion-item .accordion-button.collapsed {
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 18px;
}

/* Authentication form Styling */
.login-form { 
  margin: 48px auto;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  font-family: 'Poppins', sans-serif;
  animation: fadeSlideIn 0.7s ease-out;
}

.form-header {

}

