.elementor-1331 .elementor-element.elementor-element-aaa17ee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1331 .elementor-element.elementor-element-cf23fef{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1331 .elementor-element.elementor-element-eb820b4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1331 .elementor-element.elementor-element-05306dc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1331 .elementor-element.elementor-element-236e766{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1331 .elementor-element.elementor-element-f239f94{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7c8b50d *//* ========================= */
/* Carousel Wrapper */
/* ========================= */
.custom-carousel {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background-color: #111; /* Soft black fallback */
}

/* ========================= */
/* Slides (stacked) */
/* ========================= */
/* Inactive slide */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transform: scale(1.02); /* subtle zoom-out for inactive slides */
  background-size: cover;
  background-position: center;
  pointer-events: none;
  transition: opacity 1s ease-in-out, transform 2s ease;
  will-change: opacity, transform;
}

/* Active slide */
.carousel-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1); /* reset zoom */
  pointer-events: auto;
}

/* ========================= */
/* Overlay for text readability */
/* ========================= */
.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* ========================= */
/* Text Overlay */
/* ========================= */
.carousel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  max-width: 90%;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active .carousel-text {
  opacity: 1;
  animation: fadeInText 1.2s ease forwards;
}

/* ========================= */
/* Text Fade-in Animation */
/* ========================= */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ========================= */
/* Dots */
/* ========================= */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: #fff;
}

/* ========================= */
/* Responsive Text */
/* ========================= */
@media (max-width: 768px) {
  .carousel-text {
    font-size: 2rem;
  }
}

/* === Fade Zoom Effect on Active Slide === */


/* === Dot Hover Enhancement === */
.carousel-dot:hover {
  background-color: #ffffff;
  transform: scale(1.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* === Carousel Text Smooth Fade (already exists) === */
.carousel-text.animate {
  animation: fadeInZoom 0.8s ease-out both;
}

/* === Optional: Add touch of animation to entire carousel === */
.custom-carousel {
  animation: fadeInContainer 1s ease;
}

@keyframes fadeInContainer {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-501a3a3 *//* ============================ */
/* Brand Intro Section Styles */
/* ============================ */
.brand-intro-section {
  background-color: #fefcf6;
  padding: 4rem 1.5rem;
}

.brand-intro-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
}

/* === Text Block === */
.brand-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.brand-text h2 {
  font-size: 3rem;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.brand-text p {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.6;
}

/* === Image Block === */
.brand-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.brand-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* === Responsive Layout === */
@media (max-width: 768px) {
  .brand-intro-container {
    flex-direction: column;
    text-align: center;
  }

  .brand-image img {
    max-width: 100%;
  }

  .brand-text h2 {
    font-size: 2.2rem;
  }

  .brand-text p {
    font-size: 1.4rem;
  }
}

/* Add to your CSS */
.fade-in-up {
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.about-story-text {
  background-color: rgba(0, 97, 157, 0.08); /* Soft blue tint like Story section */
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto;
  color: #1e1e1e;
  font-size: 1.5rem;
  line-height: 1.7;
}

.about-story-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #1e1e1e;
  text-align: center;
}

.about-story-text p {
  margin-bottom: 1.2rem;
  color: #333;
}

/* Optional fade-in scroll animation (reused pattern from earlier) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.two-column-about-section {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left Text */
.about-text {
  flex: 1;
  min-width: 300px;
  background-color: rgba(0, 97, 157, 0.08);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  color: #1e1e1e;
}

.about-text h2 {
  font-size: rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.about-text p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

/* Right Image */
.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 500px;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   border: 2px solid rgba(0, 97, 157, 0.2); /* soft blue */
}

/* Scroll animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .two-column-about-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

 .about-image {
  min-height: 400px;
  max-height: 100%;
}

}

.two-column-about-section {
  align-items: stretch;
}
.about-text,
.about-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Right Image Column (Stacked Images) */
.about-image-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  max-width: 500px;
}

.about-image-column img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

 @media (max-width: 768px) {
  .about-image-column {
    max-width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-083d49b *//* Container */
.slc-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.slc-section-header {
  text-align: center;
  margin-bottom: 3rem;
    opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slc-section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.slc-section-header p {
  font-size: 1.1rem;
  color: #555;
}
.slc-section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Grid */
.slc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card */
.slc-feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slc-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slc-feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slc-feature-card h3 {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #222;
}

.slc-feature-card p {
  font-size: 1rem;
  color: #666;
}

/* ============================== */
/* Scroll Reveal Animations      */
/* ============================== */
.slc-feature-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slc-feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================== */
/* Optional Icon Hover Pop       */
/* ============================== */
.slc-feature-card .icon {
  transition: transform 0.3s ease;
}

.slc-feature-card:hover .icon {
  transform: scale(1.2);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b124abc *//* ========================== */
/* Section Wrapper */
.slc-testimonials-section {
  padding: 4rem 2rem;
  background: #f8f8f8;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #222;
}

/* ========================== */
/* Grid */
.slc-testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ========================== */
/* Testimonial Block (Row Layout) */
.testimonial-block {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 700px;
  position: relative;
}

.testimonial-block.left {
  align-self: flex-start;
  flex-direction: row;
}

.testimonial-block.right {
  align-self: flex-end;
  flex-direction: row-reverse;
}

/* ========================== */
/* Image Style */
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px white, 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================== */
/* Card */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  flex: 1;
  transform: rotate(-1.5deg);
}

.testimonial-block.left .testimonial-card:hover,
.testimonial-block.right .testimonial-card:hover {
  transform: rotate(0deg) scale(1.02);
}


.testimonial-card:hover {
  transform: rotate(0deg) scale(1.02);
}

/* ========================== */
/* Text */
.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.author {
  font-weight: bold;
  color: #666;
  font-size: 1rem;
}

/* ========================== */
/* Responsive */
@media (max-width: 768px) {
  .testimonial-block {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .testimonial-card {
    transform: none !important;
  }

  .testimonial-img {
    margin-bottom: 1rem;
  }
}

/* ========================== */
/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
}

/* Left Testimonial Animation */
.testimonial-block.left.animate-on-scroll.visible {
  animation: fadeInLeft 0.8s ease forwards;
}

/* Right Testimonial Animation */
.testimonial-block.right.animate-on-scroll.visible {
  animation: fadeInRight 0.8s ease forwards;
}

/* Section Title Animation */
.section-title.animate-on-scroll.visible {
  animation: fadeUpDelayed 0.8s ease forwards;
}

/* Animation Keyframes */
@keyframes fadeUpDelayed {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2679b83 *//* ============================ */
/* Founders Section Wrapper */
/* ============================ */
.slc-founders-section {
  padding: 4rem 2rem;
  background: #fffdf8;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.slc-founders-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #222;
}

/* ============================ */
/* Carousel Container */
/* ============================ */
.slc-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.slc-carousel::-webkit-scrollbar {
  display: none;
}
.slc-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ============================ */
/* Founder Card Styling */
/* ============================ */
.founder-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.founder-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* ============================ */
/* Founder Avatar Image */
/* ============================ */
.founder-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #f4f4f4;
}

/* ============================ */
/* Name & Description Text */
/* ============================ */
.founder-card h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  color: #333;
}

.founder-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ============================ */
/* Responsive Adjustments */
/* ============================ */
@media (max-width: 768px) {
  .founder-card {
    flex: 0 0 80%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f0498dd *//* Section Container */
.slc-journey-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1200x600');
  background-size: cover;
  background-position: center;
}

/* Headline */
.slc-journey-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Body Text */
.slc-journey-section p {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Button Group */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Base Button Style */
.cta-button {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border-radius: 999px;
  transition: background 0.3s ease;
  display: inline-block;
}

/* Platform Styles */
.instagram {
  background: #e1306c;
}
.instagram:hover {
  background: #c81e5c;
}

.tiktok {
  background: #000;
  border: 2px solid #fff;
}
.tiktok:hover {
  background: #222;
}

.discord {
  background: #5865F2;
}
.discord:hover {
  background: #4854d4;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* Scroll animation base */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional subtle hover scale for CTAs */
.cta-button:hover {
  transform: scale(1.05);
}/* End custom CSS */