.elementor-189 .elementor-element.elementor-element-d07bcba{--display:flex;--margin-top:-178px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:21px;--padding-left:0px;--padding-right:0px;}.elementor-189 .elementor-element.elementor-element-d07bcba:not(.elementor-motion-effects-element-type-background), .elementor-189 .elementor-element.elementor-element-d07bcba > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#02010100;}.elementor-189 .elementor-element.elementor-element-7fa0ced{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;z-index:0;}.elementor-189 .elementor-element.elementor-element-9f582a6{--display:flex;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-189 .elementor-element.elementor-element-9f582a6:not(.elementor-motion-effects-element-type-background), .elementor-189 .elementor-element.elementor-element-9f582a6 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-189 .elementor-element.elementor-element-341fb4b{padding:40px 0px 40px 0px;}.elementor-189 .elementor-element.elementor-element-4b0a70d{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-189 .elementor-element.elementor-element-b0c71ee{padding:0px 0px 1px 0px;}.elementor-189 .elementor-element.elementor-element-c111d8c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-189 .elementor-element.elementor-element-c111d8c:not(.elementor-motion-effects-element-type-background), .elementor-189 .elementor-element.elementor-element-c111d8c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0D0D0D;}.elementor-189 .elementor-element.elementor-element-89564b3{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-189 .elementor-element.elementor-element-f87a465{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-189:not(.elementor-motion-effects-element-type-background), body.elementor-page-189 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}@media(max-width:767px){.elementor-189 .elementor-element.elementor-element-d07bcba{--margin-top:-114px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--z-index:0;}.elementor-189 .elementor-element.elementor-element-7fa0ced{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}@media(min-width:768px){.elementor-189 .elementor-element.elementor-element-d07bcba{--content-width:1600px;}.elementor-189 .elementor-element.elementor-element-9f582a6{--content-width:1373px;}}/* Start custom CSS for html, class: .elementor-element-7fa0ced *//* ---------------------------------------------------- */

/* 1. NEW ANIMATION KEYFRAMES (Zoom In) */

/* ---------------------------------------------------- */

@keyframes textZoomIn {

    /* Starting state: Completely transparent and very small */

    0% {

        opacity: 0;

        transform: scale(0.1); 

    }

    /* Ending state: Fully visible and normal size */

    100% {

        opacity: 1;

        transform: scale(1);

    }

}



/* ---------------------------------------------------- */

/* 2. MAIN CONTENT STYLES (Centering) */

/* ---------------------------------------------------- */

/* Targets the main container of the text */

#main-content {

    /* Center text vertically and horizontally using Flexbox */

    display: flex;

    justify-content: center;

    align-items: center;

    

    /* Set height to match the Elementor section's 100vh setting */

    background-color: #000;

    height: 100vh; 

    width: 100%;

    

    /* Ensure box model is predictable */

    box-sizing: border-box; 

    

    /* Important: Override Elementor's default margin if necessary */

    margin: 0; 

}



/* ---------------------------------------------------- */

/* 3. HEADING STYLES AND ANIMATION APPLICATION */

/* ---------------------------------------------------- */

#main-content h1 {

    color: #FFFFFF; /* White text */

    font-family: sans-serif; /* CHANGE THIS FONT to match the video */

    font-size: 80px; /* Adjust size as needed */

    letter-spacing: 5px;

    font-weight: 700;



    /* Apply the new zoom animation: */

    /* textZoomIn (name) | 0.8s (duration - making it fast) | ease-out | forwards */

    animation: textZoomIn 0.8s ease-out forwards;

    

    /* Set the initial state for the animation to start from */

    opacity: 0; 

}









/* ---------------------------------------------------- */
/* 4. IMAGE COLLAGE CONTAINER STYLES */
/* ---------------------------------------------------- */
#collage-container {
    /* Fixed positioning relative to the viewport so the JS can move it */
    position: fixed;
    top: 0;
    left: 0;
    
    /* Set a size for the overall area where the scattered images will sit */
    width: 400px; 
    height: 300px; 
    
    /* Initial state: Hidden */
    opacity: 0;
    visibility: hidden;
    
    /* Smooth transition for showing/hiding. */
    transition: opacity 0.3s ease, visibility 0.3s ease; 
    
    z-index: 99999; 
    pointer-events: none; /* Allows the mouse to still track over the main heading */
}

/* ---------------------------------------------------- */
/* 5. INDIVIDUAL IMAGE STYLES (Creates the scattered effect) */
/* ---------------------------------------------------- */
.collage-img {
    position: absolute; /* Allows images to overlap and be positioned manually */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    
    /* Initial default size */
    width: 150px; 
    height: 150px;
}

/* Image 1: Top Left, rotated slightly */
.collage-img.img-1 {
    width: 120px;
    height: 120px;
    top: 10px;
    left: 20px;
    transform: rotate(-8deg); 
}

/* Image 2: Center, larger, slightly different rotation */
.collage-img.img-2 {
    width: 180px;
    height: 180px;
    top: 50px;
    left: 100px;
    transform: rotate(4deg);
    z-index: 10; /* Bring this one forward */
}

/* Image 3: Bottom Right, rotated more dramatically */
.collage-img.img-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    left: 50px;
    transform: rotate(15deg);
}

/* You can add more .collage-img.img-4, img-5, etc., and customize their position (top, left) and rotation (transform: rotate()) *//* End custom CSS */


/* Start custom CSS for html, class: .elementor-element-341fb4b */.custom-hero-section {
    max-width: 1900px;
    margin: 40px auto;
    padding: 60px 30px;
    font-family: "Inter", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    border-radius: 45px;
    background: 
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(120deg, #FFEA00, #FF3B3B, #000000) border-box;
}

/* Highlight red word */
.highlight-text {
    color: #000;
    font-weight: 800;
}

/* Image inside text */
.custom-hero-section img,
.elementor img {
    width: clamp(120px, 18vw, 220px);
    height: auto;
    border-radius: 20px;
}

/* Row layout */
.hero-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

/* Description */
.hero-description {
    font-size: clamp(19px, 1.2vw, 27px);
    font-weight: 400;
    line-height: 1.8;
    color: #6b7280;
    max-width: 750px;
    margin: 30px auto 10px;
}

/* CTA Wrapper */
.hero-cta {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Base Button */
.hero-btn {
    font-size: 18px;
    font-weight: 600;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.35s ease;
}

/* Black Button (Get Started) */
.primary-btn {
    background: #111;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Outline Button (View Our Work) */
.secondary-btn {
    background: #fff;
    color: #111 !important;
    border: 2px solid #ddd;
}

.secondary-btn:hover {
    border-color: #111;
    transform: translateY(-3px);
}

/* Moving Arrow */
.moving-arrow {
    color: #e53935;
    display: inline-block;
    font-size: 1.2em;
    font-weight: 800;
    margin-left: 10px;
    animation: slideRight 1.2s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Tablet */
@media (max-width: 1024px) {
    .custom-hero-section {
        font-size: clamp(30px, 5vw, 54px);
        padding: 50px 25px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .custom-hero-section {
        font-size: 28px;
        line-height: 1.25;
        margin: 20px auto;
        padding: 40px 20px;
        border-radius: 30px;
    }

    .hero-row {
        flex-direction: column;
        gap: 10px;
    }

    .custom-hero-section img {
        width: 130px;
    }

    .hero-description {
        font-size: 15px;
        margin-top: 20px;
        padding: 0 10px;
    }

    .hero-cta {
        gap: 12px;
    }

    .hero-btn {
        font-size: 15px;
        padding: 12px 22px;
    }

    .moving-arrow {
        animation: none;
    }
}/* End custom CSS */


/* Start custom CSS for html, class: .elementor-element-b0c71ee */.wp-hero,
.wp-content,
.wp-images {
  overflow: visible !important;
}



.wp-show { opacity: 1; }


.wp-hero {
  min-height:   100vh;
  padding-top: 100px; 
  padding-bottom: 200px; /* 🔥 critical */
  display: flex;
  justify-content: center;
  align-items: flex-start; /* 🔥 important */
  background: #fff;
  position: relative;
  z-index: 5;
   transition: padding-bottom 0.6s ease;
}


/* AFTER images align */
.wp-hero.wp-tight {
  padding-bottom: 1px; /* 👈 auto reduced */
  min-height: 20vh;
}


.wp-content {
  text-align: center;
  position: relative;
  max-width: 1200px;
  width: 100%;
}

.wp-title {
  font-size: 38px;
  line-height: 1.4;
  margin-bottom: 140px;
  color:#000;
  padding-top:12px;
}

/* IMAGE CONTAINER */
.wp-images {
  position: relative;
  min-height: 320px;
  padding-bottom: 220px;
}

/* IMAGES */
.wp-img {
  position: absolute;
  width: 220px;
  opacity: 0;
  transition: all 1s ease;
}
/* AFTER FINAL LAYOUT */
.wp-images.wp-final-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  padding-bottom: 70px;      /* 🔥 removes extra space */
  min-height: auto;       /* 🔥 auto height */
}
/* FLOAT POSITIONS */
.img1 { left: -150px; top: -160px; transform: rotate(-20deg); }
.img2 { right: -150px; top: -140px; transform: rotate(18deg); }
.img3 { left: -120px; bottom: -160px; transform: rotate(15deg); }
.img4 { right: -120px; bottom: -160px; transform: rotate(-18deg); }

/* SHOW */
.wp-show { opacity: 1; }

/* FINAL */
.wp-final {
  position: relative;
  transform: rotate(0);
  left: auto; right: auto; top: auto; bottom: auto;
}

.wp-images.wp-final-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}











/* ===============================
   TABLET (≤ 1024px)
================================ */
@media (max-width: 1024px) {

  .wp-title {
    font-size: 30px;
    margin-bottom: 100px;
  }

  .wp-img {
    width: 180px;
  }

  .img1 { left: -100px; top: -120px; }
  .img2 { right: -100px; top: -120px; }
  .img3 { left: -90px; bottom: -120px; }
  .img4 { right: -90px; bottom: -120px; }

  .wp-images.wp-final-layout {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 50px;
  }
}


/* ===============================
   MOBILE (≤ 767px)
================================ */
@media (max-width: 767px) {

  .wp-hero {
    padding-top: 60px;
    padding-bottom: 120px;
    min-height: auto;
  }

  .wp-hero.wp-tight {
    padding-bottom: 20px;
  }

  .wp-title {
    font-size: 22px;
    margin-bottom: 60px;
    padding-top: 0;
  }

  /* Kill floating chaos on mobile */
  .wp-img {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    opacity: 1;
    transform: none !important;
  }

  .img1,
  .img2,
  .img3,
  .img4 {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .wp-images {
    padding-bottom: 0;
    min-height: auto;
  }

  .wp-images.wp-final-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 30px;
  }
}/* End custom CSS */






/* Start custom CSS for html, class: .elementor-element-9a03522 *//* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  background: radial-gradient(circle at top right, #2a2a2a, #000);
  color: #fff;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

/* Pill */
.testimonial-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #555;
  font-size: 12px;
  margin-bottom: 20px;
}

/* Heading */
.testimonial-header h2 {
  font-size: 46px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 80px;
  text-transform: none;
}

/* ===== SLIDER WRAPPER (FIXED ALIGNMENT) ===== */
.testimonial-slider {
  max-width: 1200px; /* keeps slider centered */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}

/* Track (IMPORTANT: removed justify-content center) */
.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 40px; /* MUST match JS gap */
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Card (CRITICAL FIX: prevent flex shrinking) */
.testimonial-card {
  min-width: 380px;
  flex: 0 0 380px; /* prevents misalignment */
  padding: 50px 18px 50px 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.4;
  transform: scale(0.9);
  transition: all 0.4s ease;
  text-align: left;
}

/* Active center card */
.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

/* Text */
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.user strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.user span {
  font-size: 12px;
  opacity: 0.7;
}

/* Stars */
.stars {
  color: #d6c15a;
  font-size: 14px;
}

/* Navigation */
.testimonial-nav {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.testimonial-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #777;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .testimonial-header h2 {
    font-size: 34px;
    margin-bottom: 60px;
  }

  .testimonial-card {
    min-width: 320px;
    flex: 0 0 320px;
    padding: 40px 18px;
  }
}

/* ===== MOBILE (PERFECT SLIDER FIX) ===== */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-header h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .testimonial-slider {
    padding: 0 15px;
  }

  .testimonial-track {
    gap: 20px; /* smoother mobile slide */
  }

  .testimonial-card {
    min-width: 280px;
    flex: 0 0 280px; /* prevents shift on mobile */
    padding: 30px 16px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .testimonial-nav {
    margin-top: 30px;
  }

  .testimonial-nav button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}/* End custom CSS */


/* Start custom CSS */.site-header{
    display: none;
}/* End custom CSS */