.elementor-kit-115{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-115 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.popup-wrapper {
  position:fixed;
  top:50%;
  right:-65vw;
  transform:translateY(-50%);
  height:80vh;
  display:flex;
  align-items:center;
  transition:right .6s ease;
  z-index:1000;
}
.popup-wrapper.active { right:0; }

/* Floating Buttons */
.floating-btns {
  position:absolute;
  left:-70px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:15px;
  padding:15px 10px;
  background:linear-gradient(135deg,#ff6b6b,#ff8e53);
  border-radius:12px 0 0 12px;
  box-shadow:0 8px 25px rgba(255,107,107,.4);
  transition:left .6s ease;
  z-index:2;
}
.popup-wrapper.active .floating-btns { left:0; }

.floating-btns button {
  background:rgba(255,255,255,.15);
  border:none;
  border-radius:50%;
  padding:10px;
  cursor:pointer;
  transition:transform .3s, background .3s;
}
.floating-btns button:hover {
  background:rgba(255,255,255,.4);
  transform:scale(1.1);
}
.floating-btns img {width:40px;height:40px;border-radius:6px;object-fit:contain;}

/* Popup container */
.popup-container {
  width:65vw;
  height:100%;
  background:rgba(20,20,20,.95);
  border-left:1px solid rgba(255,255,255,.1);
  border-radius:12px 0 0 12px;
  backdrop-filter:blur(15px);
  box-shadow:-5px 0 25px rgba(0,0,0,.5);
  overflow-y:auto;
  padding:40px;
  position:relative;
}

/* Close button */
.close-btn {
  position:absolute;
  top:15px;
  right:15px;
  width:36px;
  height:36px;
  font-size:22px;
  color:#fff;
  background:#ff6b6b;
  border:none;
  border-radius:50%;
  cursor:pointer;
  transition:background .3s, transform .3s;
}
.close-btn:hover {background:#ff5252;transform:rotate(90deg);}

/* Sections */
.popup-section {text-align:center;}
.popup-section h2 {margin-bottom:20px;}

/* Image Grid */
.image-grid {
  column-count:3;
  column-gap:15px;
}
.image-item {
  display:inline-block;
  width:100%;
  margin-bottom:15px;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 4px 10px rgba(0,0,0,.4);
  transition:transform .3s ease;
}
.image-item:hover {transform:scale(1.05);}
.image-item img {width:100%;display:block;border-radius:10px;}

/* CTA button */
.cta-btn {
  background:linear-gradient(135deg,#ff6b6b,#ff8e53);
  border:none;
  color:#fff;
  padding:12px 28px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:transform .3s;
}
.cta-btn:hover {transform:scale(1.05);}


/* 🔹 Explore Our Features — Dark Glass Style */
.card-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 35px;
  width: 100%;
  padding: 20px 0;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 250px;
  height: 300px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatCard 5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

/* Animated Gradient Border Glow */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53, #ffc371);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) scale(1.03) rotateX(4deg);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.45);
}

/* Card Image */
.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 2px 6px rgba(255, 107, 107, 0.4));
}
.card:hover img {
  transform: scale(1.2) rotate(10deg);
}

/* Card Text */
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
}

/* Floating Animation */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}/* End custom CSS */