/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

/*** Gear Loader Styles ***/
.gear-loader-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gear {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  border: 8px dashed #555;
  /* Creates the teeth */
  box-sizing: border-box;
  box-shadow: 0 0 0 4px #555;
  /* Creates the rim */
}

/* Inner Hub */
.gear::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  background: #555;
  border-radius: 50%;
}

/* Gear Sizes & Positions */
.gear.large {
  width: 80px;
  height: 80px;
  top: 20px;
  left: 20px;
  border-color: #444;
  box-shadow: 0 0 0 4px #444;
  animation: rotateClockwise 3s linear infinite;
}

.gear.large::after {
  background: #444;
}

.gear.medium {
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  border-color: #666;
  box-shadow: 0 0 0 4px #666;
  animation: rotateAntiClockwise 3s linear infinite;
}

.gear.medium::after {
  background: #666;
}

.gear.small {
  width: 40px;
  height: 40px;
  top: 25px;
  right: 25px;
  border-color: #888;
  box-shadow: 0 0 0 3px #888;
  /* Slightly thinner rim for small gear */
  border-width: 6px;
  /* Smaller teeth */
  animation: rotateClockwise 2s linear infinite;
}

.gear.small::after {
  background: #888;
}

/* Animations */
@keyframes rotateClockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateAntiClockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 9999;
  background: linear-gradient(135deg, #fb923c, #f97316) !important;
  color: #fff !important;
  border: 0;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #f97316, #ea580c) !important;
  transform: translateY(-5px);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  background: var(--bs-primary) !important;
  color: var(--bs-white) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-primary:hover {
  background: var(--bs-white) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  background: var(--bs-light) !important;
  color: var(--bs-primary) !important;
  font-weight: 400;
  transition: 0.5s;
}

.btn.btn-light:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-light) !important;
}


.RotateMoveLeft {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
  position: relative;
  animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
  0% {
    left: 0px;
  }

  50% {
    left: 40px;
  }

  100% {
    left: 0px;
  }
}

@keyframes RotateMoveRight {
  0% {
    right: 0px;
  }

  50% {
    right: 40px;
  }

  100% {
    right: 0px;
  }
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 20px 0;
  color: var(white) !important;
  font-size: 1.6rem;
  font-weight: 400;
  outline: none;
  transition: .5s;
  padding-left: 30px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(white) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {}

.navbar-light .navbar-brand img {
  max-height: 70px;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: .5s;
    opacity: 0;

  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  transition: .5s;
  opacity: 1;
}

.collapse.navbar-collapse {
  transition: 0.5s;
}

@media (max-width: 992px) {
  nav.bg-transparent {
    position: fixed;
    width: 100%;
    background: #ffffff !important;
  }

  .navbar {
    position: fixed;
    background: #ffffff !important;
    width: 100%;
    z-index: 999;
  }

  .navbar.navbar-expand-lg button span {
    position: relative;
    z-index: 99;
  }

  .navbar {
    position: relative;
    background: var(--bs-light);
    z-index: 2;
  }

  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white) !important;
    padding: 0 20px 20px 20px !important;
  }

  .sticky-top.navbar-light {
    background: transparent;
  }

  nav.navbar {
    padding: 0 30px 30px 0;
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #DDDDDD;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark) !important;
  }


  .navbar-light .navbar-brand img {
    max-height: 45;
  }

  .hero-header {
    margin-top: -100px !important;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent !important;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light) !important;
  }
}

/*** Navbar End ***/

/* ============================
   UX & Performance Enhancements
   Additive only — subtle transitions, smooth scroll,
   touch optimizations, and GPU hints.
   Respect user `prefers-reduced-motion`.
   ============================ */

:root{
  --ux-ease: cubic-bezier(0.2,0.8,0.2,1);
  --ux-fast: 180ms;
  --ux-medium: 280ms;
}

/* Native smooth scrolling (respected by reduced-motion) */
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* Encourage GPU compositing for imagery and subtle transforms */
.cnc-range-card-image,
.cnc-process-image,
.cnc-range-card img,
.cnc-process-container img{
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform, opacity;
  transition: transform var(--ux-medium) var(--ux-ease), opacity var(--ux-medium) var(--ux-ease);
}

/* Soft hover/focus micro-interactions */
.cnc-range-card,
.cnc-process-step-card,
.cnc-range-card-body,
.cnc-navbar-link,
.cnc-range-card-btn{
  transition: transform var(--ux-fast) var(--ux-ease), box-shadow var(--ux-fast) var(--ux-ease);
}

.cnc-range-card:hover,
.cnc-range-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(17,24,39,0.06);
}

.cnc-range-card-btn:hover,
.cnc-range-card-btn:focus {
  transform: translateY(-3px);
}

/* Improve tap responsiveness on mobile */
a, button { touch-action: manipulation; -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* Small focus-visible treatment for keyboard users */
:focus-visible { outline: 3px solid rgba(250,204,21,0.15); outline-offset: 3px; }

/* Mute button styling (non-invasive — override inline if present) */
.cnc-video-mute-btn{ background: rgba(0,0,0,0.6); color:#fff; border:none; padding:8px 10px; border-radius:6px; }

/* Prevent large layout shifts from images — keep intrinsic sizing where possible */
img { max-width:100%; height:auto; display:block; }

/* Provide a CSS hook when scrolling happens (added by JS) */
body.ux-scrolling { --ux-scrolling: 1; }

/* keep these additions lightweight and easy to remove — end UX block */


/* SECTION BASE */
.cnc-auto-carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 100px
}

/* IMAGE STYLE */
.cnc-auto-img {
  height: 580px;
  object-fit: cover;
  filter: brightness(85%);
  width: 100%;
  /* Desktop */
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

/* DARK OVERLAY */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  z-index: 1;
}

/* CENTERED TEXT ON IMAGE */
.centered-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 80%;
}

.centered-caption h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.7);
}

.centered-caption p {
  font-size: 2.2rem;
  color: #eee;
  margin-top: 10px;
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.6);
}

/* BUTTON ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .cnc-auto-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
  }

  .centered-caption h2 {
    font-size: 2.6rem;
  }

  .centered-caption p {
    font-size: 0.95rem;
    width: 90%;
    margin: 0 auto;
  }
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 60px 0;
  margin-bottom: 6rem;
  transition: 0.5s;
}

.bg-breadcrumb::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  border: 80px solid rgba(247, 71, 128, 0.05);
  background: transparent;
  animation: RotateMoveSingle 5s linear infinite;
  z-index: -1;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
  z-index: 2;
}


@keyframes RotateMoveSingle {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }

  0% {
    bottom: 0px;
  }

  50% {
    left: -10px;
  }

  75% {
    bottom: 10%;
  }

  100% {
    bottom: 0px;
  }
}

.bg-breadcrumb::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  border: 80px solid rgba(247, 71, 128, 0.04);
  background: transparent;
  animation: RotateMoveSingle 5s linear infinite;
  z-index: -1;
}

@keyframes RotateMoveSingle {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }

  0% {
    top: 0px;
  }

  50% {
    top: 10%;
  }

  100% {
    top: 0px;
  }
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding-top: 100px !important;
  }
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-dark) !important;
}


.breadcrumb-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.breadcrumb-animation li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(102, 16, 242, 0.07);
  animation: animate 25s linear infinite;
  bottom: -150px;

}

.breadcrumb-animation li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }

}

/*** Single Page Hero Header End ***/


/*** Hearo Header Start ***/
.header::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: var(--bs-light);
  border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
  animation: bgMove 5s linear infinite;
  z-index: -1;
}

@keyframes bgMove {
  0% {
    right: 0px;
  }

  50% {
    right: 20px;
  }

  100% {
    right: 0px;
  }
}

.header::before {
  content: "";
  position: absolute;
  bottom: -9%;
  left: -7%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 30px solid rgba(247, 71, 128, 0.05);
  background: transparent;
  animation: RotateMoveHeader 5s linear infinite;
  z-index: -1;

}

@keyframes RotateMoveHeader {
  0% {
    -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }

  100% {
    -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }


  0% {
    bottom: 0px;
  }

  50% {
    left: -10px;
  }

  75% {
    bottom: 9%;
  }

  100% {
    bottom: 0px;
  }
}

.hero-header {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

.hero-header::after {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 58px;
  height: 50px;
  background: url(../img/sty-1.png) center center no-repeat;
  animation: RotateMoveSty-3 45s linear infinite;
  transition: 0.5s;
  z-index: -1;

}

@keyframes RotateMoveSty-3 {
  0% {
    left: 100px;
  }

  40% {
    bottom: -0px;
  }

  50% {
    left: 700px;
  }

  70% {
    bottom: 500px;
  }

  80% {
    left: 400px;
  }

  95% {
    bottom: -0px;
  }

  100% {
    left: 100px;
  }
}

.hero-header::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  border: 30px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: RotateMoveSty-4 45s linear infinite;
  transition: 0.5s;
  z-index: -1;

}

@keyframes RotateMoveSty-4 {
  0% {
    left: 100px;
  }

  40% {
    bottom: -0px;
  }

  50% {
    left: 700px;
  }

  70% {
    bottom: 500px;
  }

  80% {
    left: 400px;
  }

  95% {
    bottom: -0px;
  }

  100% {
    left: 100px;
  }
}


.hero-header .rotate-img {
  position: absolute;
  top: 70px;
  left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 5px solid rgba(247, 71, 128, 0.1);
  background: transparent;
  animation: RotateMoveSty-2 45s linear infinite;
  transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
  0% {
    left: 0px;
  }

  40% {
    top: -30px;
  }

  50% {
    left: 500px;
  }

  70% {
    top: 200px;
  }

  80% {
    left: 100px;
  }

  95% {
    top: -30px;
  }

  100% {
    left: 0px;
  }
}

.hero-header .rotate-img img {
  position: relative;
  animation: RotateMove 30s linear infinite;
  z-index: -1;
}

@keyframes RotateMove {
  0% {
    left: 0px;
  }

  50% {
    left: 200px;
  }

  100% {
    left: 0px;
  }
}


@media (max-width: 992px) {
  .hero-header {
    padding-top: 280px;

  }

  .hero-header .rotate-img img {
    margin-top: 100px;
  }

}

/*** Hero Header End ***/
.about-subtitle {
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-title {
  font-size: 2.4rem;
  /* previously display-5 */
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.about-desc {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

.about-list li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.about-list li i {
  color: #1e48d2;
  /* Arise blue tone */
  font-size: 1.2rem;
}

.about-btn {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(30, 72, 210, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-desc {
    font-size: 1rem;
  }

  .about-list li {
    font-size: 1.2rem;
  }
}



/*** Service Start ***/
.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.service .service-item,
.service .service-item .service-icon,
.service .service-item a {
  transition: 0.5s;
}

.service .service-item:hover {
  background: rgba(102, 16, 242, 0.09);
  border: 1px;
}


.service .service-item:hover .service-icon,
.service .service-item:hover a {
  background: var(--bs-white) !important;
}

.service .service-item:hover a:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-img {
  background: var(--bs-light);
  border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}

/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}

.price .price-item:hover {
  background: var(--bs-white) !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
  position: absolute;
  width: 200px;
  height: 110px;
  top: -45px;
  right: -80px;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transform: rotate(42deg);
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 10px;
}

/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  background: rgba(102, 16, 242, 0.2);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: rgba(102, 16, 242, 0.2);
  color: var(--bs-white) !important;
  display: flex;
  align-items: end;
  justify-content: space-between;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
  background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
  transform: scale(1.3);
}

/*** Blog End ***/


/*** Testimonial Start ***/
.ezy__testimonial7 {
  /* Bootstrap variables */
  --bs-body-color: #2b323c;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-item-bg: #ffffff;
  --ezy-item-shadow: 0px 8px 44px rgba(227, 238, 255, 0.48);
  --ezy-rating-rgb: 255, 215, 0;

  background-color: var(--bs-body-bg);
  overflow: hidden;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__testimonial7 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__testimonial7,
.ezy__testimonial7.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-item-bg: #f6f6f6;
  --ezy-item-shadow: 0px 4px 44px rgba(179, 209, 236, 0.37);
}

/* Dark Gray Block Style */
.dark-gray .ezy__testimonial7,
.ezy__testimonial7.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-item-bg: #232e3c;
  --ezy-item-shadow: none;
}

/* Dark Block Style */
.dark .ezy__testimonial7,
.ezy__testimonial7.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-item-bg: #162231;
  --ezy-item-shadow: none;
}

.ezy__testimonial7-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__testimonial7-heading {
    font-size: 35px;
    line-height: 35px;
  }
}

.ezy__testimonial7-sub-heading {
  font-size: 18px;
  line-height: 25px;
  color: var(--bs-body-color);
  opacity: 0.8;
}

.ezy__testimonial7-item {
  background-color: var(--ezy-item-bg);
  box-shadow: var(--ezy-item-shadow);
  border-radius: 20px;
  border: none;
}

.ezy__testimonial7-title {
  color: var(--bs-body-color);
}

.ezy__testimonial7-content {
  color: var(--bs-body-color);
  opacity: 0.8;
}

.ezy__testimonial7-rating [class*="fa-"]:not(.active),
.ezy__testimonial7-rating [class*="fa-"]:not(.active) * {
  color: rgba(var(--ezy-rating-rgb), 0.2);
}

.ezy__testimonial7-rating [class*="fa-"].active,
.ezy__testimonial7-rating [class*="fa-"].active * {
  color: rgba(var(--ezy-rating-rgb), 1);
}

.ezy__testimonial7 .carousel-inner {
  overflow: visible;
}

.ezy__testimonial7 .carousel {
  display: flex;
  flex-direction: column;
}

.ezy__testimonial7-dot-control,
.ezy__testimonial7 .carousel-indicators {
  position: relative;
  margin-top: 30px;
  order: 2;
}

.ezy__testimonial7-dot-control span,
.ezy__testimonial7 .carousel-indicators button {
  background-color: transparent;
  width: 13px;
  height: 13px;
  border: 1px solid var(--bs-body-color);
  border-radius: 50%;
  display: inline-flex;
  margin: 4px;
  transition: all 0.3s ease-in-out;
  transform: scale(0.7);
  cursor: pointer;
  opacity: 1;
}

.ezy__testimonial7-dot-control span.active,
.ezy__testimonial7 .carousel-indicators button.active {
  background-color: var(--bs-body-color);
  transform: scale(1);
}


.ezy__testimonial7-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ezy__testimonial7-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Carousel fade transition fix */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Control buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60%, 60%;
  filter: invert(1);
}

.testimonial {
  position: relative;
  background: var(--bs-light);
  overflow: hidden;
  z-index: 1;
}

.testimonial::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-2.jpg) center center no-repeat;
  animation: TestimonialMoveLeft 100s linear infinite;
  z-index: -1;

}

.testimonial::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/testimonial-img-3.jpg) center center no-repeat;
  animation: TestimonialMoveRight 100s linear infinite;
  z-index: -1;

}

@keyframes TestimonialMoveLeft {
  0% {
    left: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    left: 100%;
  }

  75% {
    top: 80%;
  }

  100% {
    left: 0px;
  }
}

@keyframes TestimonialMoveRight {
  0% {
    right: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    right: 100%;
  }

  75% {
    top: 80%;
  }

  100% {
    right: 0px;
  }
}

.testimonial .testimonial-carousel.owl-carousel {
  position: relative;
  padding: 0 35px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 16, 242, 0.09);
  color: var(--bs-primary);
  transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
  color: var(--bs-white) !important;
}


.testimonial-carousel .owl-dots {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  width: 70px;
  height: 70px;
  border-radius: 40px;
  border: 4px solid var(--bs-secondary);
}

@media (min-width: 900px) {
  .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .testimonial .testimonial-carousel.owl-carousel {
    padding: 0;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-prev {
    margin-top: -250px;
    margin-left: -15px;
  }

  .testimonial .testimonial-carousel .owl-nav .owl-next {
    margin-top: -250px;
    margin-right: -15px;
  }
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  z-index: 1;
}

.contact::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveLeft 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveLeft {
  0% {
    left: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    left: 90%;
  }

  75% {
    top: 80%;
  }

  100% {
    left: 0px;
  }
}

.contact::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -1%;
  width: 400px;
  height: 400px;
  border-radius: 200px;
  border: 60px solid rgba(102, 16, 242, 0.05);
  background: transparent;
  animation: ContactMoveRight 50s linear infinite;
  z-index: 1;
}

@keyframes ContactMoveRight {
  0% {
    right: 0px;
  }

  25% {
    top: 100px;
  }

  50% {
    right: 90%;
  }

  75% {
    top: 80%;
  }

  100% {
    right: 0px;
  }
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
  background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-dark);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}


------------------------------------------------ .ezy__portfolio15 {
  /* Bootstrap variables */
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgba(0, 0, 0, 1);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-border-color: #dcdcdc;

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

@media (min-width: 768px) {
  .ezy__portfolio15 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__portfolio15,
.ezy__portfolio15.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__portfolio15,
.ezy__portfolio15.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-border-color: rgba(209, 209, 209, 0.3);
}

/* Dark Block Style */
.dark .ezy__portfolio15,
.ezy__portfolio15.dark {
  /* Bootstrap variables */
  --bs-body-color: #eab4b4ff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-border-color: rgba(214, 214, 214, 0.373);
}

.ezy__portfolio15-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .ezy__portfolio15-heading {
    font-size: 45px;
  }
}

.ezy__portfolio15-sub-heading {
  font-size: 18px;
  line-height: 25px;
  opacity: 0.8;
}

.ezy__portfolio15 .btn-outline {
  font-size: 14px;
  padding: 11px 25px;
  text-transform: uppercase;
  border-color: var(--ezy-theme-color);
  color: var(--ezy-theme-color);
}

.ezy__portfolio15 .btn-outline:hover {
  color: #fff;
  border-color: rgba(var(--ezy-theme-color-rgb), 0.9);
  background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
}

/* card */
.ezy__portfolio15 .card {
  background-color: var(--ezy-card-bg);
  border: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
  /* increased to match larger image */
  overflow: hidden;
}

.ezy__portfolio15 .card-img-top {
  width: 100%;
  height: 300px;
  /* increased image height */
  object-fit: cover;
  flex: 0 0 300px;
}

/* keep card body height consistent */
.ezy__portfolio15 .card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

/* Prevent image scaling/animation */
.ezy__portfolio15 .card-img-top,
.ezy__portfolio15 .card:hover .card-img-top {
  transform: none !important;
  transition: none !important;
}

.ezy__portfolio15-card-content {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  width: 100%;
  color: #fff;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  transition: 0.5s;
}

.ezy__portfolio15-card-content:hover {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
}

.ezy__portfolio15-card-content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}

.ezy__portfolio15-card-content h5 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--ezy-theme-color);
}

.ezy__portfolio15-card-content p {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.8;
}

.ezy__portfolio15-card-details {
  width: 50%;
  padding: 0 15px;
  border-right: 1px dashed var(--bs-body-color);
}

/* prev and next btn */
.ezy__portfolio15 .carousel-control-prev,
.ezy__portfolio15 .carousel-control-next {
  width: 50px;
  height: 50px;
  font-size: 22px;
  background-color: rgba(var(--ezy-theme-color-rgb), 0.7);
  color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: 0.4s;
}

.ezy__portfolio15 .carousel-control-prev:hover,
.ezy__portfolio15 .carousel-control-next:hover {
  background-color: rgba(var(--ezy-theme-color-rgb), 1);
  color: #fff;
}

@media (min-width: 576px) {
  .ezy__portfolio15 .carousel-control-prev {
    left: -25px;
  }

  .ezy__portfolio15 .carousel-control-next {
    right: -25px;
  }
}

/* pagination */
.ezy__portfolio15-pagination .page-link {
  background-color: transparent;
  border: 1px solid var(--ezy-border-color);
  padding: 7px 13px;
  font-size: 14px;
  color: var(--bs-body-color);
  border-radius: 8px;
}

.ezy__portfolio15-pagination .page-link:hover,
.ezy__portfolio15-pagination .page-link.active {
  color: #f6f6f6;
  background-color: rgba(var(--ezy-theme-color-rgb), 0.9) !important;
  border: 1px solid rgba(var(--ezy-theme-color-rgb), 0.9);
}

.ezy__portfolio15-arrow {
  background-color: var(--ezy-theme-color) !important;
  border: 1px solid var(--ezy-theme-color) !important;
  border-radius: 8px !important;
  color: #fff !important;
}

@media (max-width: 768px) {

  /* Make cards scroll horizontally */
  .ezy__portfolio15 .row.product-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory;
  }

  /* Hide scrollbar for premium look */
  .ezy__portfolio15 .row.product-scroll::-webkit-scrollbar {
    display: none;
  }

  /* Each card behaves as a horizontal slide */
  .ezy__portfolio15 .row.product-scroll .col-lg-4,
  .ezy__portfolio15 .row.product-scroll .col-md-6,
  .ezy__portfolio15 .row.product-scroll .col-12 {
    flex: 0 0 70% !important;
    /* ⭐ BEST SIZE: shows 1.4 cards */
    max-width: 70% !important;
    scroll-snap-align: start;
  }

  /* Reduce image height for mobile */
  .ezy__portfolio15 .card-img-top {
    height: 130px !important;
    object-fit: contain !important;
    padding: 10px !important;
  }

  /* Reduce card minimum height to fit layout */
  .ezy__portfolio15 .card {
    min-height: 320px !important;
  }
}

/* ===================================== */
/*          ezy__header30 SECTION        */
/* ===================================== */


/* ================================================= */
/* ========== MOBILE FIX — SMOOTH SCROLL =========== */
/* ================================================= */



/* NAVBAR: always white, links dark, hover -> grey */
.navbar,
.navbar-light,
nav.navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;

}

/* link colors */
.navbar-light .navbar-brand,
.navbar-light .navbar-nav .nav-link {
  color: #353f4f !important;
  /* dark text for readability */
  transition: color .2s ease;
}

/* hover / active => grey */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
  color: #6c757d !important;
  /* grey on hover/active */
}

/* toggler and icons */
.navbar-light .navbar-toggler {
  color: #353f4f !important;
  border-color: rgba(0, 0, 0, 0.05);
}

/* dropdown / mobile menu */
.navbar .dropdown-menu,
.navbar-light .navbar-collapse,
nav.bg-transparent {
  background: #ffffff !important;
}

.dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  background-color: #f1f3f5 !important;
  /* light grey bg on hover */
  color: #6c757d !important;
}

/* mobile fix: ensure menu text readable on white */
@media (max-width: 992px) {
  .navbar-light .navbar-nav .nav-link {
    color: #4f4d35ff !important;
  }
}

/* ----------------------------------
   ADD THIS CSS FOR YOUR NEW CARDS
---------------------------------- */



/* Makes the card background transparent */
.ezy__header30 .card {
  background: none;
  border: none;
}

/* 1. This creates the centered circle for the image */
.ezy__header30 .card-head {
  max-width: 250px;
  /* Adjust the size of the circle here */
  margin: 0 auto 20px auto;
  /* Centers the circle and adds space below */
  border-radius: 50%;
  /* This makes it a circle */
  overflow: hidden;
  /* Clips the image to the circle shape */
  aspect-ratio: 1 / 1;
  /* Ensures it is a perfect circle */
  border: 4px solid #8088f3ff;
  /* Optional: adds a light border */
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
  /* Optional: soft shadow */
}

/* 2. This makes the image fill the circle perfectly */
.ezy__header30 .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Scales the image to fill the space */
}

/* 3. This centers the text content below the circle */
.ezy__header30 .card-body {
  text-align: center;
  padding: 0;
}

/* 4. This fixes the invisible text (from your first question) */
.ezy__header30-card-content h4,
.ezy__header30-card-content p {
  color: #333333;
  /* A dark color for your "light" theme */
}

/* 5. This styles the "View All" button/link */
.ezy__header30 .ezy__header30-btn {
  background-color: #007bff;
  /* Example: blue */
  color: #FFFFFF;
  /* White text */
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  /* Needed for <a> tag */
}

@media (max-width: 768px) {

  /* enable horizontal scroll */
  .ezy__header30-courses .carousel-inner {
    display: flex !important;
    overflow-x: auto !important;
    gap: 16px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
  }

  /* hide arrows */
  .ezy__header30-courses .carousel-control-prev,
  .ezy__header30-courses .carousel-control-next {
    display: none !important;
  }

  /* each carousel slide */
  .ezy__header30-courses .carousel-item {
    flex: 0 0 auto !important;
    display: flex !important;
  }

  /* row inside slide */
  .ezy__header30-courses .carousel-item .row {
    flex-wrap: nowrap !important;
    display: flex !important;
    gap: 16px !important;
  }

  /* card width */
  .ezy__header30-courses .col-12,
  .ezy__header30-courses .col-md-3 {
    flex: 0 0 55% !important;
    max-width: 55% !important;
    scroll-snap-align: start;
  }

  /* remove absolute overlay */
  .ezy__header30-card-content {
    position: static !important;
    margin-top: 10px !important;
  }

  /* smaller text */
  .ezy__header30-card-content h4 {
    font-size: 16px !important;
    white-space: normal !important;
  }

  /* circle image sizes */
  .circle-img {
    width: 85px !important;
    height: 85px !important;
  }
}

/* ----------------------------------
   Original Template CSS (for context)
---------------------------------- */

.ezy__header30-topbar {
  position: relative;
  padding: 90px 0;
}

.ezy__header30-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  z-index: 1;

}

.ezy__header30-topbar .container {
  position: relative;
  z-index: 2;
}

.ezy__header30-heading,
.ezy__header30-sub-heading {
  color: #fff;
}



.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 14px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  color: white;
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-43 {
    padding: var(--sectionPadding);
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
  }

  #gallery-43 .cs-container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    padding-top: 200px;
  }

  #gallery-43 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #gallery-43 .cs-image-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }

  #gallery-43 .cs-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }

  #gallery-43 .cs-item:hover .cs-hover-box {
    opacity: 1;
  }

  #gallery-43 .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }

  #gallery-43 .cs-item:hover .cs-h3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }

  #gallery-43 .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }

  #gallery-43 .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }

  #gallery-43 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  #gallery-43 .cs-hover-box {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1em;
    background-color: rgba(229, 87, 44, 0.9);
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Prevents padding from contributing to height & width */
    box-sizing: border-box;
    /* Sets stage for 3d transform animation */
    perspective: 700px;
    top: 0;
    left: 0;
    z-index: 10;
    /* prevents mouse from being able to interact with these elements */
    pointer-events: none;
    transition: opacity 0.3s;
  }

  #gallery-43 .cs-icon {
    /* 50px - 60px */
    width: clamp(3.125rem, 5vw, 3.75rem);
    height: clamp(3.125rem, 5vw, 3.75rem);
    /* 16px - 32px */
    margin-bottom: clamp(1rem, 5vw, 2rem);
    border-radius: 50%;
    background-color: #fff;
    outline: 0.5rem solid rgba(255, 255, 255, 0.7);
    /* Start with the icon box rotated 90deg */
    transform: rotateY(90deg);
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: transform 0.5s;
  }

  #gallery-43 .cs-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }

  #gallery-43 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 auto;
    max-width: 16.875rem;
    color: #fff;
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    margin-bottom: 0.5rem;
    transition:
      opacity 0.3s,
      transform 0.3s ease-out;
    transition-delay: 0.1s;
  }

  #gallery-43 .cs-hover-box-text {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1vw, 1rem);
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 16.875rem;
    color: #fff;
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    transition:
      opacity 0.3s,
      transform 0.3s ease-out;
    transition-delay: 0.2s;
  }
}

/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-43 .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }

  #gallery-43 .cs-item {
    grid-column: span 6;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-43 .cs-item {
    grid-column: span 4;
  }
}

/*-- -------------------------- -->
<---          Events            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-2rem);
    }

    100% {
      transform: translateY(0);
    }
  }

  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-3rem);
    }

    100% {
      transform: translateY(0);
    }
  }

  #events-1511 {
    padding: var(--sectionPadding);
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }

  #events-1511 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }

  #events-1511 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 43.75rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }

  #events-1511 .cs-title {
    max-width: 24ch;
  }

  #events-1511 .cs-text {
    max-width: 100%;
  }

  #events-1511 .cs-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.25rem);
  }

  #events-1511 .cs-card-group {
    width: 100%;
    /* changes to 741px at desktop */
    max-width: 31.25rem;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.25rem);
  }

  #events-1511 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    max-width: 52.5rem;
    /* 16px - 24px */
    padding: clamp(1rem, 3.9vw, 1.5rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 2.5rem;
    transition: border-color 0.3s;
  }

  #events-1511 .cs-item:hover {
    border-color: var(--secondary);
  }

  #events-1511 .cs-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  #events-1511 .cs-image-group {
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }

  #events-1511 .cs-picture {
    width: 100%;
    height: 12.1875rem;
    background-color: #1a1a1a;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* prevents flexbox from squsihing it */
    flex: none;
  }

  #events-1511 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s, opacity 0.3s;
  }

  #events-1511 .cs-mask {
    --maskBG: #fff;
    --maskBorder: #e8e8e8;
    width: 102%;
    height: 102%;
    position: absolute;
    top: -1px;
    right: 0;
    bottom: 0;
    left: -2px;
    z-index: 1;
  }

  #events-1511 .cs-date {
    font-size: 1rem;
    line-height: 2.5rem;
    margin: 0;
    padding: 0 0.5rem;
    background-color: #fff;
    border-radius: 3.125rem;
    overflow: hidden;
    color: var(--headerColor);
    border: 1px solid var(--secondary);
    display: inline-block;
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 1;
  }

  #events-1511 .cs-date:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: .1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #events-1511 .cs-tag {
    font-size: 1rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    padding: 0 1rem;
    color: var(--primary);
    border-radius: 3.125rem;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  #events-1511 .cs-tag:before {
    /* background color */
    content: '';
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: .1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #events-1511 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }

  #events-1511 .cs-time,
  #events-1511 .cs-place {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
  }

  #events-1511 .cs-time {
    margin: 0 0 0.5rem 0;
  }

  #events-1511 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: flex;
  }

  #events-1511 .cs-subscribe {
    width: 100%;
    max-width: 52.5rem;
    margin: auto;
    /* 40px - 100px top & bottom */
    /* 16px - 60px left & right */
    padding: clamp(2.5rem, 10vw, 6.25rem) clamp(1rem, 5vw, 3.75rem);
    overflow: hidden;
    background-color: #fff;
    border-radius: 2.5rem;
    /* prevents padding from affecting height abd width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 28px - 36px */
    gap: clamp(1.75rem, 4vw, 2.25rem);
    position: relative;
    z-index: 1;
  }

  #events-1511 .cs-subscribe:before {
    /* background-color */
    content: '';
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: .1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }

  #events-1511 .cs-subscribe .cs-topper {
    color: var(--secondary);
  }

  #events-1511 .cs-subscribe .cs-title {
    max-width: 100%;
  }

  #events-1511 .cs-subscribe .cs-text {
    max-width: 31.25rem;
  }

  #events-1511 .cs-blob {
    --blobColor: var(--secondary);
    opacity: .25;
    display: none;
    position: absolute;
  }

  #events-1511 .cs-blob1 {
    width: 16.9375rem;
    display: block;
    height: auto;
    top: 0;
    left: -8.75rem;
  }

  #events-1511 .cs-blob2 {
    width: 28.8125rem;
    height: auto;
    bottom: 0;
    right: 0;
  }

  #events-1511 .cs-form {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
  }

  #events-1511 .cs-input {
    font-size: 1rem;
    width: 100%;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    margin: 0;
    padding: 0;
    padding-left: 1.25rem;
    border: none;
    border-radius: 5rem;
    /* prevents padding from adding to width and height */
    box-sizing: border-box;
    display: block;
  }

  #events-1511 .cs-input::placeholder {
    color: #767676;
  }

  #events-1511 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    overflow: hidden;
    min-width: 9.375rem;
    padding: 0 2rem;
    background-color: var(--secondary);
    border-radius: 5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }

  #events-1511 .cs-button-solid:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width .3s;
  }

  #events-1511 .cs-button-solid:hover {
    cursor: pointer;
  }

  #events-1511 .cs-button-solid:hover:before {
    width: 100%;
  }

  #events-1511 .cs-submit {
    width: 100%;
    border: none;
  }

  #events-1511 .cs-floater1 {
    /* 500px - 710px */
    width: clamp(31.25rem, 50vw, 44.375rem);
    opacity: .05;
    position: absolute;
    top: -20.625rem;
    left: 70%;
    z-index: -1;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }

  #events-1511 .cs-floater2 {
    width: 44.375rem;
    opacity: .05;
    display: none;
    position: absolute;
    bottom: 4rem;
    left: -25rem;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #events-1511 .cs-card-group {
    max-width: 100%;
    padding: 0 12px;
    gap: 1rem;
  }

  #events-1511 .cs-item {
    padding: 1rem;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    max-width: 100%;
  }

  #events-1511 .cs-picture {
    height: 140px;
    border-radius: 12px;
  }

  #events-1511 .cs-date {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin: 0.5rem 0;
    padding: 6px 10px;
    border-radius: 999px;
  }

  #events-1511 .cs-tag {
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  #events-1511 .cs-h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  #events-1511 .cs-time,
  #events-1511 .cs-place {
    font-size: 0.95rem;
    gap: 0.4rem;
  }

  #events-1511 .cs-wrapper {
    gap: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  #events-1511 .cs-subscribe {
    padding: 1.25rem;
    border-radius: 18px;
  }

  /* Tap targets & readability */
  #events-1511 .cs-button-solid,
  #gallery-43 .cs-item .btn {
    min-height: 44px;
    padding: 0 1rem;
    line-height: 44px;
    border-radius: 8px;
  }
}

/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #events-1511 .cs-wrapper {
    flex-direction: row;
    align-items: stretch;
  }

  #events-1511 .cs-card-group {
    width: 55%;
    max-width: 46.3125rem;
    /* prevents flexbox from squishing it */
    flex: none;
    /* sends it to the right in the 2nd position */
    order: 2;
  }

  #events-1511 .cs-subscribe {
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #events-1511 .cs-blob2 {
    display: block;
  }

  #events-1511 .cs-floater1 {
    margin-left: 34.4375rem;
    left: 50%;
    top: 0.625rem;
    right: auto;
  }

  #events-1511 .cs-floater2 {
    margin-right: 24.75rem;
    display: block;
    right: 50%;
    bottom: 1.25rem;
    left: auto;
  }
}

/* Mobile-friendly tweaks for Gallery & Events */
@media (max-width: 767.98px) {

  /* Gallery */
  #gallery-43 .cs-container {
    padding-top: 120px;
    gap: 2rem;
    padding-left: 12px;
    padding-right: 12px;
  }

  #gallery-43 .cs-image-group {
    gap: 0.75rem;
  }

  #gallery-43 .cs-item {
    aspect-ratio: auto;
    height: auto;
    margin: 0 0 12px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  #gallery-43 .cs-picture {
    height: 200px;
    border-radius: 12px;
  }

  #gallery-43 .cs-picture img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  #gallery-43 .cs-hover-box {
    padding: 0.75rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45));
    pointer-events: auto;
    justify-content: center;
  }

  #gallery-43 .cs-h3 {
    font-size: 1.05rem;
    max-width: 100%;
    transform: translateY(0);
    opacity: 1;
    background: rgba(0, 0, 0, 0.45);
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 6px;
  }

  #gallery-43 .cs-hover-box-text {
    font-size: 0.95rem;
    opacity: 1;
    transform: translateY(0);
  }

  #gallery-43 .cs-icon {
    display: none;
  }

  /* simplify for small screens */
  #gallery-43 .cs-item a {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  /* Events */
  #events-1511 .cs-card-group {
    max-width: 100%;
    padding: 0 12px;
    gap: 1rem;
  }

  #events-1511 .cs-item {
    padding: 1rem;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    max-width: 100%;
  }

  #events-1511 .cs-picture {
    height: 140px;
    border-radius: 12px;
  }

  #events-1511 .cs-date {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin: 0.5rem 0;
    padding: 6px 10px;
    border-radius: 999px;
  }

  #events-1511 .cs-tag {
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  #events-1511 .cs-h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  #events-1511 .cs-time,
  #events-1511 .cs-place {
    font-size: 0.95rem;
    gap: 0.4rem;
  }

  #events-1511 .cs-wrapper {
    gap: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  #events-1511 .cs-subscribe {
    padding: 1.25rem;
    border-radius: 18px;
  }

  /* Tap targets & readability */
  #events-1511 .cs-button-solid,
  #gallery-43 .cs-item .btn {
    min-height: 44px;
    padding: 0 1rem;
    line-height: 44px;
    border-radius: 8px;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 14px 20px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.floating-whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  color: white;
}


.card {
  position: relative;
  overflow: hidden;
}

.card-head,
.card-img-top {
  position: static !important;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ezy__header30-card-content {
  position: static !important;
  transform: none !important;
  background: none !important;
  color: inherit !important;
  text-align: center;
  padding-top: 10px;
}


:root {
  --primary: #000000ff;
  /* Arise Blue Accent */
  --headerColor: #1a1a1a;
  --bodyTextColor: #444;
  --sectionPadding: 4rem 1.5rem;
}

/* MOBILE FIRST */
@media only screen and (min-width: 0rem) {
  #RPsbs-1587 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    background: #fff;
  }

  #RPsbs-1587 .cs-container {
    width: 100%;
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  /* IMAGE STYLING */
  #RPsbs-1587 .cs-picture {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  #RPsbs-1587 .cs-picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* CONTENT STYLING */
  #RPsbs-1587 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  #RPsbs-1587 .cs-topper {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
  }

  #RPsbs-1587 .cs-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }

  #RPsbs-1587 .cs-text {
    font-size: 1rem;
    line-height: 1.6em;
    color: var(--bodyTextColor);
    margin-bottom: 1.5rem;
  }

  #RPsbs-1587 .cs-card-group {
    display: grid;
    gap: 1.5rem;
    width: 100%;
  }

  #RPsbs-1587 .cs-item {
    background: #f8f9fc;
    border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }

  #RPsbs-1587 .cs-item:hover {
    background: #e9f0ff;
    transform: translateY(-3px);
  }

  #RPsbs-1587 .wrapper {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }

  #RPsbs-1587 .cs-item-number {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
  }

  #RPsbs-1587 .cs-h3 {
    font-size: 1.125rem;
    color: var(--headerColor);
    font-weight: 600;
  }

  #RPsbs-1587 .cs-item-text {
    font-size: 0.95rem;
    margin-top: 0.25rem;
    color: var(--bodyTextColor);
  }

  /* BUTTON */
  #RPsbs-1587 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--primary);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    margin-top: 1rem;
    display: inline-block;
    transition: 0.3s;
  }

  #RPsbs-1587 .cs-button-solid:hover {
    background-color: #5e5f64ff;
  }
}

/* TABLET */
@media only screen and (min-width: 48rem) {
  #RPsbs-1587 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  #RPsbs-1587 .cs-picture {
    width: 45%;
    min-height: 28rem;
  }

  #RPsbs-1587 .cs-content {
    width: 50%;
  }
}

/* DESKTOP */
@media only screen and (min-width: 64rem) {
  #RPsbs-1587 {
    padding: 6rem 4rem;
  }

  #RPsbs-1587 .cs-picture {
    border-radius: 1.25rem;
  }

  #RPsbs-1587 .cs-item {
    border-left-width: 6px;
  }
}

/* Prevent hero heading overflowing on small screens */
html,
body {
  overflow-x: hidden;
  /* avoids accidental horizontal scroll */
}

/* Responsive hero heading */
.hero-header .display-4,
.hero-header h1.display-4 {
  font-size: clamp(1.6rem, 4.5vw, 3.6rem) !important;
  line-height: 1.08;
  margin-top: 0;
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Tighter sizes and spacing on small screens */
@media (max-width: 767.98px) {

  .hero-header .display-4,
  .hero-header h1.display-4 {
    font-size: clamp(1.25rem, 6.5vw, 2.2rem) !important;
    line-height: 1.15;
    margin-top: 0.5rem;
  }

  .hero-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Ensure the right-side hero image doesn't push layout */
  .hero-header .col-lg-6 img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  /* Reduce large top margin used elsewhere */
  .ezy__header30-heading {
    margin-top: clamp(2rem, 8vw, 5rem) !important;
  }
}

--- .ezy__about13 {
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
  margin-top: 170px;
}

.ezy__about13 {
  /* Bootstrap variables */
  --bs-body-color: #1e2329;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgba(64, 83, 250, 1);
  --ezy-theme-color-rgb: 13, 110, 253;

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

@media (min-width: 768px) {
  .ezy__about13 {
    padding: 100px 0;

  }
}

/* Gray Block Style */
.gray .ezy__about13,
.ezy__about13.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__about13,
.ezy__about13.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);
}

/* Dark Block Style */
.dark .ezy__about13,
.ezy__about13.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);
}

.ezy__about13-heading {
  font-size: 55px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 30px;
  /* shift heading down on small screens */
  display: block;
}

@media (min-width: 768px) {
  .ezy__about13-heading {
    font-size: 65px;
    margin-top: 150px;
    /* keep your desktop offset */
  }
}

.ezy__about13-sub-heading {
  font-size: 22px;
  line-height: 1.5;
  opacity: 0.75;
}

.ezy__about13-divider {
  width: 100px;
  height: 3px !important;
  color: var(--bs-body-color);
  opacity: 1;
}

.ezy__about13 img {
  transform: rotate(45deg);
  position: relative;
  top: 60px;
  width: 400px;
  height: 400px;
  object-fit: cover;
}

.ezy__about13-img2 {
  top: -400px;
  left: 300px !important;
  position: absolute !important;
  display: none;
}

@media (min-width: 768px) {
  .ezy__about13-img2 {
    display: block;
  }
}

@media (min-width: 991px) {
  .ezy__about13 img {
    transform: rotate(45deg);
    position: relative;
    left: 100px;
    width: 400px;
    height: 400px;
    object-fit: cover;
  }

  .ezy__about13-img2 {
    top: 0px !important;
    left: 100px !important;
    position: relative !important;
  }
}

.ezy__about13-bg-holder {
  width: 36vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--ezy-theme-color-rgb), 0.3);
  float: left;
}

.ezy__numbers11 {
  --bs-body-color: #2b323c;
  --bs-body-bg: #fff;
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  padding: 60px 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .ezy__numbers11 {
    padding: 100px 0;
  }
}

/* Gray Block */
.gray .ezy__numbers11,
.ezy__numbers11.gray {
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block */
.dark-gray .ezy__numbers11,
.ezy__numbers11.dark-gray {
  --bs-body-color: #fff;
  --bs-body-bg: rgb(30, 39, 53);
}

/* Dark Block */
.dark .ezy__numbers11,
.ezy__numbers11.dark {
  --bs-body-color: #fff;
  --bs-body-bg: rgb(11, 23, 39);
}

.ezy__numbers11-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 1;
}

@media (min-width: 768px) {
  .ezy__numbers11-heading {
    font-size: 45px;
  }
}

.ezy__numbers11-card {
  background-color: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ezy__numbers11-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.08);
}

.ezy__numbers11 img {
  max-width: 90px;
  color: var(--ezy-theme-color);
}

.ezy__numbers11-card h5 {
  font-size: 18px;
  line-height: 1.6;
}

.ezy__numbers11-card p {
  font-size: 20px;
  color: #555;
  margin: 0 auto;
  max-width: 90%;
}

.ezy__howitworks11 {
  /* Bootstrap variables */
  --bs-body-color: #212529;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-border-color: rgba(0, 0, 0, 0.3);

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  position: relative;
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__howitworks11 {
    padding: 100px 0;
    margin: left 50px;
  }
}

/* Gray Block Style */
.gray .ezy__howitworks11,
.ezy__howitworks11.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__howitworks11,
.ezy__howitworks11.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-border-color: rgba(255, 255, 255, 0.2);
}

/* Dark Block Style */
.dark .ezy__howitworks11,
.ezy__howitworks11.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-border-color: rgba(255, 255, 255, 0.3);
}

.ezy__howitworks11-heading {
  font-size: 25px;
  line-height: 1;
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ezy__howitworks11-heading {
    font-size: 45px;
    margin-left: 50px;
  }
}

.ezy__howitworks11-divider {
  width: 7%;
  height: 2px;
  opacity: 0.75;
  background-color: var(--bs-body-color);
}

.ezy__howitworks11-line {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0%);
  height: 100%;
  width: 5px;
  border-right: 5px dashed var(--ezy-border-color);
}

@media (min-width: 768px) {
  .ezy__howitworks11-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.ezy__howitworks11-end {
  position: absolute;
  bottom: -10px;
  left: -13px;
  background-color: var(--bs-body-bg);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ezy__howitworks11-title {
  color: var(--ezy-theme-color);
  font-weight: 500;
}

.ezy__howitworks11-count {
  position: absolute;
  top: 0;
  background-color: var(--bs-body-bg);
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
}

.ezy__howitworks11-count span {
  font-size: 40px;
  font-weight: 700;
}

.ezy__howitworks11-count-one,
.ezy__howitworks11-count-two,
.ezy__howitworks11-count-three {
  left: -60px;
}

@media (min-width: 768px) {

  .ezy__howitworks11-count-one,
  .ezy__howitworks11-count-three {
    right: -60px;
    left: 100%;
  }

  .ezy__howitworks11-count-two {
    left: -22px;
  }
}

.ezy__cta19 {
  /* Bootstrap variables */
  --bs-body-color: #212529;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;

  background-color: var(--bs-body-bg);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 60px 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .ezy__cta19 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__cta19,
.ezy__cta19.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__cta19,
.ezy__cta19.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);
}

/* Dark Block Style */
.dark .ezy__cta19,
.ezy__cta19.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);
}

.ezy__cta19-heading {
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  color: white;
}

@media (min-width: 768px) {
  .ezy__cta19-heading {
    font-size: 44px;
    color: white;
  }
}

.ezy__cta19-sub-heading {
  line-height: 1.7;
}

.ezy__cta19-card {
  background-color: #063a8f;
  border-radius: 15px;
}

.ezy__cta19-line-one {
  position: absolute;
  left: 30px;
  top: 0;
  height: 96%;
  width: 1px;
  transform: translateY(2%);

  background-color: rgba(255, 255, 255, 1);
}

.ezy__cta19-line-two {
  position: absolute;
  left: 0;
  top: 30px;
  height: 1px;
  width: 98%;
  transform: translateX(1%);
  background-color: rgba(255, 255, 255, 1);
}

.ezy__cta19 .form-control {
  min-height: 48px;
  line-height: 40px;
  border-color: transparent;
  background: #0e48a7;
  border-radius: 10px;
  color: var(--bs-body-color);
}

.ezy__cta19 .form-control::placeholder {
  color: #fff !important;
}

.ezy__cta19 .form-control:focus {
  border-color: #86b7fe;
  box-shadow: none;
  color: #fff;
}

.ezy__cta19-btn {
  padding: 12px 30px;
  color: #ffffff;
  background-color: var(--ezy-theme-color);
  border-color: var(--ezy-theme-color);
}

.ezy__cta19-btn:hover {
  background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
  border-color: rgba(var(--ezy-theme-color-rgb), 0.9);
  color: #ffffff;
}

.ezy__howitworks2 {
  /* Bootstrap variables */
  --bs-body-color: #23262f;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;

  background-color: var(--bs-body-bg);
  padding: 60px 0;
}

@media (min-width: 768px) {
  .ezy__howitworks2 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__howitworks2,
.ezy__howitworks2.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__howitworks2,
.ezy__howitworks2.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);
}

/* Dark Block Style */
.dark .ezy__howitworks2,
.ezy__howitworks2.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);
}

.ezy__howitworks2-heading {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__howitworks2-heading {
    font-size: 45px;
  }
}

.ezy__howitworks2-sub-heading {
  font-size: 17px;
  line-height: 1.5;
  color: var(--bs-body-color);
  opacity: 0.8;
}

/* img */
.ezy__howitworks2 img {
  border-radius: 20px;
}

.ezy__howitworks2-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ezy-theme-color);
  color: #fff;
}

.ezy__howitworks2-title {
  font-weight: 500;
  color: var(--bs-body-color);
}

.ezy__howitworks2-content {
  color: var(--bs-body-color);
  opacity: 0.8;
}

.ezy__howitworks2-play {
  text-decoration: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--ezy-theme-color);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.ezy__howitworks2-play:hover {
  color: #fff;
}

.filter-btn {
  background: #f8f9fa;
  border: 1px solid #ddd;
  color: #000000ff;
  margin: 5px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #2f4a5cff;
  color: #fff;
}

.product-card .card {
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}

.product-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-card img {
  height: 220px;
  object-fit: cover;
}

.product-card h5 {
  color: #000000ff;
  font-weight: 600;
}

.btn-outline-primary {
  border: 1px solid #355788ff;
  color: #22262cff;
}

.btn-outline-primary:hover {
  background-color: #292f38ff;
  color: #fff;
}



.cnc-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #16a34a;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.cnc-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-loader {
  font-size: 14px;
}

.cnc-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #16a34a;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.cnc-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-loader {
  font-size: 14px;
}

/*** Gear Spinner Animations ***/
@keyframes gear-spin-cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gear-spin-ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}