/* ----- "Header" template styling ----- */
.arrow-btn {
  padding-left: 3px;
  display: inline-block; 
  width: 14px;
  height: 11px;
  transition: transform 0.3s ease;
}

.arrow-btn-section:hover .arrow-btn, .arrow-btn-section:active .arrow-btn {
  transform: rotate(45deg);
}



/* ----- "Upz - About Us Card" template styling ----- */
.feature-card {
  border-radius: 12px;
  border: none;
  /* background: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
  overflow: hidden;
}

.image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.about-us-card-link {
  display: inline-block;
  width: fit-content;
  padding: 10px 18px;
  background: #f5b400;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-us-card-link:hover {
  background: #d79c00;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

@media(max-width: 1441px) {
  .image {
    height: 300px;
  }
}

 

/* ----- "Upz - Business Promotion" template styling ----- */
/*  HERO CTA SECTION  */
.hero-cta-section {
    padding: 150px 0 140px 0;
    background: linear-gradient(135deg, #0a1628 0%, #081e3c 50%, #133552 100%);
    color: #ffffff;
    text-align: center;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-content {
    max-width: 80%;
    margin: 0 auto;
}

/* Eyebrow Text */
.hero-cta-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Main Title */
.hero-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-cta-title.small {
    font-size: 2.5rem;
}

.hero-cta-title.extra-small {
    font-size: 2rem;
}

/* Description Text */
.hero-cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-description p {
    margin-bottom: 1rem;
}

.hero-cta-description p:last-child {
    margin-bottom: 0;
}

/* Button Group */
.hero-cta-button-group {
    display: row;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
}

.btn-hero-cta,
.upzoids-primary-btn {
    width: auto;           
    text-align: center;
    margin-right:1rem;
}

/* Button Styles */
.btn-hero-cta {
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-family: inherit;
    text-decoration: none;
}

.btn-hero-cta.primary-teal {
    background: linear-gradient(135deg, #00c9b7 0%, #00a8a8 100%);
    color: #000;
}

.btn-hero-cta.primary-teal:hover {
    background: linear-gradient(135deg, #00e5cc 0%, #00bfb8 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 201, 183, 0.4);
    text-decoration: none;
    color: #000;
}

.btn-hero-cta.primary-gold {
    background: #F8B600;
    color: #000;
}

.btn-hero-cta.primary-gold:hover {
    background: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(248, 182, 0, 0.4);
    text-decoration: none;
    color: #000;
}

.btn-hero-cta.secondary {
    background: transparent;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-hero-cta.secondary:hover {
        text-decoration: none;
}

.arrow-icon {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero-cta.secondary:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-cta-title {
        font-size: 3rem;
    }

    .hero-cta-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 992px) {
    .hero-cta-section {
        padding: 90px 0;
    }

    .hero-cta-title {
        font-size: 2.5rem;
    }

    .hero-cta-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-cta-button-group {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-cta-section {
        padding: 70px 20px;
    }

    .hero-cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .btn-hero-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero-cta-button-group {
        gap: 1rem;
    }

    .hero-cta-eyebrow {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-cta-section {
        padding: 70px 15px;
    }

    .hero-cta-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-button-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-hero-cta {
        width: auto;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-cta-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-cta-eyebrow {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-section {
        padding: 90px 10px;
    }

    .hero-cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .btn-hero-cta {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-cta-button-group {
        gap: 0.75rem;
    }
}

@media (max-width: 300px) {
  .btn-hero-cta.secondary {
      margin-top: 1.5rem;
  }
}



/* ----- "Upz - Card" template styling ----- */
/* Card base layout */
.upz-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
  border-radius: 12px;
  position: relative;
  border: 2px solid transparent; 
  background: #fff;
}

/* Glowing border on hover */
.upz-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 12px;
  background: conic-gradient(
    from 0deg,
    #3BBBC9,
    #00D4FF,
    #3BBBC9
  );
  opacity: 0;
  z-index: -1;
  animation: none;
}

.image-wrapper {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Force 3 columns on medium screens and up */
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .upz-card {
    width: 100%;
    max-width: 380px;
  }
}

.upz-card:hover {
  transform: translateY(-5px);
   border: 2px solid #FF3366;
}

  /* Snake border layer */
      .upz-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        padding: 2px; /* border thickness */
        /* The "snake" segment uses a conic gradient */
        background: conic-gradient(
          from var(--angle),
          var(--accent) 0 12%,
          transparent 12% 100%
        );
        /* Mask so only the ring shows (hollow center) */
        -webkit-mask: linear-gradient(#000 0 0) content-box,
          linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
      }

      /* Animate the gradient angle on hover */
      .upz-card:hover::after {
        opacity: 1;
        animation: spin 1.1s linear infinite;
      }

/* Link styles */
.upz-link {
  color: #3BBBC9;
  transition: all 0.3s ease;
}


.upz-link:hover {
  color: #028b95;
}


.arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 48px;
  height: 48px;
  flex: none;
  order: 1;
  flex-grow: 0;
  position: relative;
  line-height: 0;
}

.arrow-btn1 {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}
.upz-card:hover,
.upz-card:active {
  transform: translateY(-5px);
  border: 2px solid #FF3366;
}

.upz-card:hover::after,
.upz-card:active::after {
  opacity: 1;
  animation: spin 1.1s linear infinite;
}

.upz-link:hover,
.upz-link:active {
  color: #028b95;
}

.upz-card:hover .arrow-btn1,
.upz-card:active .arrow-btn1 {
  transform: rotate(45deg);
}


@media (min-width: 992px) {
  .upz-card {
    margin-right: 0px;
    margin-bottom: 32px;
  }
}

@media (max-width: 991px) {
  .upz-card {
    margin-bottom: 32px;
  }
}



/* ----- "Upz - Carousel" template styling ----- */
.link-light, .upzoids-primary-btn{
  white-space: nowrap; 
}
#heroCarousel.no-transition .carousel-component-item {
  transition: none !important;
}

#heroCarousel.initialized .carousel-component-item {
  visibility: visible;
}

.carousel-component-inner {
  overflow: hidden;
  position:relative;
  align-items: center; 
  max-width: 80%;
  margin: 0 auto;
}
.carousel-component-item {
  visibility: hidden;
  position: absolute;
  transition: transform 700ms cubic-bezier(0.34, 1.3, 0.64, 1), filter 500ms ease, opacity 500ms ease;
  display:block;
  left: 50%;
  width: 100%;
}
.carousel-component-item.active {
  position: relative;
  z-index: 2;
}

.smaller-component{
  max-width: 100% !important;
}

/* Hide Bootstrap default controls */
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  display: none !important;
}

/* Buttons (uses your existing palette) */
.btn-primary {
  background: #20b2aa;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  height: 44px;
}
.btn-primary:hover {
  background-color: #1a9a92 !important;
}

/* Segment bar + labels */
.carousel-segment-container {
  gap: 60px;
  cursor: pointer;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  width: 100px;    
}
.segment-bar {
  position: relative;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: background 0.4s, width 0.4s;
  overflow: hidden; 
}

/* .segment:first-child:not(.active) .segment-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;                
  height: 6px;                
  background: #FFFFFF;        
  border-radius: 4px;          
} */

.segment:first-child:not(.active):hover .segment-bar::before {
  background: #3FB0C0;       
}

.segment.active .segment-bar {
  background: #3BBBC9;
  /* width: 40px; */
}
.segment-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
}
.segment.active .segment-label {
  color: #fff;
  /* font-weight: 600; */
  display: block;
  white-space: nowrap;
  overflow: visible;
}

.arrow-btn-carousel {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

/* Hover effect on secondary links with arrow */
.link-light:hover .arrow-btn-carousel,
.link-light:active .arrow-btn-carousel {
  transform: rotate(45deg);
}

/* -----------------------------
   📱 Responsive tweaks
   ----------------------------- */
@media (max-width: 991.98px) {
  .carousel-item .row {
    flex-direction: column-reverse;
    text-align: center;
  }
  .carousel-item .col-lg-6 {
    width: 80%;
    padding: 1rem;
  }
  .carousel-item img {
    max-height: 250px;
  }
  .carousel-item h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .carousel-item p {
    font-size: 1rem;
  }
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.55rem 1.2rem;
  }
  .carousel-segment-container {
    /* gap: 25px;
    margin-top: 1.5rem; */
    display: none !important;
  }

  #heroCarousel .carousel-component-item {
    transition: none !important;
    position: relative !important;
    opacity: 1 !important;
    filter: none !important;
    left: 0%;
  }

  .carousel-item .d-flex {
    justify-content: center !important; /* center horizontally */
  }
  .carousel-component-inner {
    max-width:100%;
  }
}

@media (max-width: 575.98px) {
  .carousel-item img {
    max-height: 200px;
  }
  .carousel-item h1 {
    font-size: 1.5rem;
  }
  .carousel-item p {
    font-size: 0.95rem;
  }
  .btn-primary {
    font-size: 0.85rem;
  }

  .carousel-item .col-lg-6 {
    width: 100%;
    padding: 1rem 0;
  }
}



/* ----- "Upz - Default Web Template" template styling ----- */
.header-bottom.header-sticky {
    background: #010E21;
}



/* ----- "Upz - Drop-down Component" template styling ----- */
.dropdown-feature-header {
  display: flex;
  justify-content: space-between; 
  align-items:flex-start;  
  cursor: pointer;
}

.dropdown-feature-chevron {
  position: relative;
  width: 12px;
  height: 12px;
  margin-left: auto;
}

.dropdown-feature-chevron::before,
.dropdown-feature-chevron::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  opacity: 0;
}

.dropdown-feature-chevron::before {
  transform: rotate(45deg);
  opacity: 1;
}

.dropdown-feature-chevron::after {
  transform: rotate(-135deg);
  top:5px;
}

.dropdown-feature-chevron.open::before {
  opacity: 0; 
}
.dropdown-feature-chevron.open::after {
  opacity: 1; 
  top:5px;
}

.dropdown-feature-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  margin-top: 0.75rem;
}

.dropdown-feature-description.open {
  max-height: 500px; 
  opacity: 1;
}

.dropdown-feature-block {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #E5E7EB;
  align-items: flex-start;
}

.dropdown-feature-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dropdown-feature-block.no-border {
  border-bottom: none;
}

.dropdown-feature-content {
  flex: 1;
}

.dropdown-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
  text-transform: none !important;
  margin-right: 1rem;
}

.dropdown-feature-description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .dropdown-feature-block {
    flex-direction: column; 
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
  }
  
  .dropdown-feature-title {
    font-size: 0.9rem !important;
  }
  
  .dropdown-feature-description {
    font-size: 0.9rem;
  }
  .dropdown-feature-content {
    width: 100%;          
  }
}

@media (max-width: 576px) {
  .dropdown-feature-block {
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  
  .dropdown-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}



/* ----- "Upz - FAQ Section" template styling ----- */
.grid-items{
    margin: 0 15rem;
}
.faq-py-5 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

@media (min-width: 992px) {
    .faq-text-section{
        margin-bottom: 1.5rem !important;
    }
}
@media (max-width: 1580px) {
    .grid-items{
        margin: 0 10rem;
    }
}

@media (max-width: 1376px) {
    .grid-items{
        margin: 0 5rem;
    }
}

@media (max-width: 991px) {
    .grid-items{
        margin: 0 0rem;
    }
    .faq-py-5 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .faq-text-section{
        margin-bottom: 0rem !important;
    }
}



/* ----- "Upz - Features Grid Section" template styling ----- */
.text-section{
    padding: 0 20rem;
}

.grid-item{
    padding: 0 4rem;
}

@media (min-width: 992px) {
    .features-grid-text-section{
        margin-bottom:1.5rem;
    }
    .features-grid-section{
        padding-top: 5rem;
        padding-bottom: 6rem;
    }
}

@media (max-width: 1506px) {
    .text-section{
        padding: 0 10rem;
    }
}

@media (max-width: 991px) {
    .text-section{
        padding: 0 0rem;
    }
    .grid-item{
        padding: 0 0rem;
    }

    .features-grid-section{
        padding-top:4rem;
        padding-bottom: 4rem;
    }

    .features-grid-text-section{
        margin-bottom:0px;
    }
}



/* ----- "Upz - Scrolling Componenet" template styling ----- */
.scrolling-feature-block {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #E5E7EB;
  align-items: flex-start;
}

.scrolling-feature-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.scrolling-feature-block.no-border {
  border-bottom: none;
}

.scrolling-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  /* background: #F8B600; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.scrolling-feature-content {
  flex: 1;
}

.scrolling-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  /* color: #04060F; */
  margin-bottom: 1rem;
  line-height: 1.4;
}

.scrolling-feature-description {
  font-size: 1rem;
  /* color: #04060F; */
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .scrolling-feature-block {
    flex-direction: column; 
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
  }
  
  .scrolling-feature-icon {
    margin-bottom: 0.5rem; 
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .scrolling-feature-title {
    font-size: 0.9rem !important;
  }
  
  .scrolling-feature-description {
    font-size: 0.9rem;
  }
  .scrolling-feature-content {
    width: 100%;          
  }
}

@media (max-width: 576px) {
  .scrolling-feature-block {
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  
  .scrolling-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}



/* ----- "Upz - Scrolling Copy" template styling ----- */
.scrolling-section {
  min-height: 50vh;
  padding: 5.5rem 0;
}

.scrolling-left-content {
  position: sticky;
  top: 20rem;
  height: fit-content;
  padding-right: 3rem;
}

.scrolling-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.scrolling-right-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
}

/* === Feature block === */
.scrolling-feature-block {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #E5E7EB;
  align-items: flex-start; /* TOP align – was center */
}

.scrolling-feature-block:last-child,
.scrolling-feature-block.no-border {
  border-bottom: none;
  padding-bottom: 0;
}

.scrolling-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px; /* nudge down so it lines up with heading */
}

.scrolling-feature-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.scrolling-feature-content {
  flex: 1;
}

.scrolling-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.scrolling-feature-description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .scrolling-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .scrolling-left-content,
  .scrolling-title,
  .content-text,
  .section-eyebrow,
  .scrolling-right-content {
    text-align: left !important;
  }

  .scrolling-right-content {
    align-items: flex-start !important;
  }

  .spacer-section {
    margin-top: 1rem;
  }

  .scrolling-section {
    padding: 85px 0 0 0;
  }

  .scrolling-left-content {
    position: relative;
    top: auto;
    padding-right: 0;
    text-align: left !important;
  }

  .content-text {
    margin-bottom: 0 !important;
  }

  .scrolling-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .scrolling-title {
    font-size: 1.5rem;
  }

  .scrolling-feature-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
  }

  .scrolling-feature-icon {
    margin-top: 0;
    margin-bottom: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .scrolling-feature-title {
    font-size: 0.9rem !important;
  }

  .scrolling-feature-description {
    font-size: 0.9rem;
  }

  .scrolling-feature-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .scrolling-section {
    padding: 80px 0 0 0;
  }

  .scrolling-title {
    font-size: 1.5rem;
  }

  .scrolling-feature-block {
    gap: 0.75rem;
    padding: 1.5rem 0;
  }

  .scrolling-feature-icon {
    width: 36px;
    height: 36px;
  }
}



/* ----- "Upz - Scrolling Section" template styling ----- */
.scrolling-section {
  min-height: 50vh;
  padding: 5.5rem 0;
}

.scrolling-left-content {
  position: sticky;
  top: 20rem;
  height: fit-content;
  padding-right: 3rem;
}

.scrolling-title {
  font-size: 2.5rem; 
  font-weight: 700;
  color: #04060F;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.scrolling-right-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
}

@media (max-width: 1200px) {
  .scrolling-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .scrolling-left-content,
  .scrolling-title,
  .content-text,
  .section-eyebrow,
  .scrolling-right-content {
    text-align: left !important;
  }

  .scrolling-right-content {
    align-items: flex-start !important; /* ensures flex children align left */
  }

  .spacer-section{
    margin-top: 1rem;
  }
  .scrolling-section {
    padding: 85px 0 0 0;
  }
  
  .scrolling-left-content {
    position: relative;
    top: auto;
    padding-right: 0;
    /* margin-bottom: 3rem; */
    text-align: left !important;
  }

  .scrolling-title,
  .content-text{
    text-align: left !important;
  }
  
  .content-text {
    margin-bottom: 0rem !important;
  }
  
  .scrolling-right-content {
    padding-left: 0;
  }
  
  .scrolling-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .scrolling-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .scrolling-section {
    padding: 80px 0 0 0;
  }
  
  .scrolling-title {
    font-size: 1.5rem;
  }
}



/* ----- "Upz - Success stories" template styling ----- */
.stories-carousel-section {
  background: #F3F3F3;
  padding: 100px 0px;
}

.carousel-wrapper {
  max-width: 100%;
  margin: 0 0;
}

#storiesCarousel {
  margin-bottom: 40px;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  display: none !important;
}

.carousel-sliding-inner {
  overflow: hidden;
  position:relative;
  align-items: center; 
}

.carousel-sliding-item {
  position: absolute;
  transition: transform 700ms cubic-bezier(0.34, 1.3, 0.64, 1), filter 500ms ease, opacity 500ms ease;
  display:block;
  left: 50%;
  width: 78%;
}

.carousel-sliding-item.active {
  position: relative;
  z-index: 2;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  padding: 0px;
  background: white;
  border-radius: 16px;
  position: relative;
}

/* Image */
.story-image-wrapper {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  border-top-left-radius: 16px;  
  border-bottom-left-radius: 16px;
  border-top-right-radius: 0;    
  border-bottom-right-radius: 0;
  overflow: hidden;
  height: 100%;
}

.story-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 16px;  
  border-bottom-left-radius: 16px;
  border-top-right-radius: 0;    
  border-bottom-right-radius: 0;
  transition: filter 0.4s ease;
}

.story-card:hover .story-img {
  filter: brightness(0.84); 
}

.read-badge {
  position: absolute;
  top: 25px;
  background: white;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 4px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  z-index: 10;
}

/* Content */
.story-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-label {
  font-size: 0.75rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.story-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

.story-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Arrow */
.link-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
} */

.arrow-btn-success {
  width: 48px;
  height: 48px;
  display: block;
}

.ms-1 {
  margin-left: 0.25rem;
}

/* Bottom Bar */
.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  max-width: 78%;
  margin: 0 auto;
}

/* Progress bar */
.progress-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-track {
  position: relative;
  width: 100%;       
  height: 8px;        
  background: #D1D1D2;   
  border-radius: 40px;   
  overflow: hidden;
}

.progress-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: #6B696D;   
  border-radius: 40px;
  transition: left 0.7s cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #333;
  width: 10px;
  border-radius: 5px;
}

.dot:hover {
  background: #999;
} */

/* Buttons */
.buttons-nav {
  display: flex;
  gap: 12px;
}

.btn-slide {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: #6B696D;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}

/* Arrow Tail */
.btn-slide[data-bs-slide="prev"]::before, .btn-slide[data-bs-slide="next"]::before {
  content: "";
  position: absolute;
  width: 24px; 
  height: 2px;
  background: currentColor;
  top: 50%;
  transform: translateY(-50%);
}
.btn-slide[data-bs-slide="prev"]::before {
  left: 8px;
}
.btn-slide[data-bs-slide="next"]::before {
  right: 8px;
}

.btn-slide:hover, .btn-slide:active  {
  color: #3BBBC9;               
}

/* Arrow head */
.btn-slide[data-bs-slide="prev"]::after,  .btn-slide[data-bs-slide="next"]::after{
  content: "";
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  position: absolute;
  top: 50%;
}
.btn-slide[data-bs-slide="prev"]::after{
  transform: translateY(-50%) rotate(135deg);
  left: 7px;
}
.btn-slide[data-bs-slide="next"]::after {
  transform: translateY(-50%) rotate(-45deg);
  right: 7px;
}

/* Responsive */
@media (max-width: 1214px) {
  .read-badge{
    position: relative;
    width: 97px;
    top: auto;
    margin-top: 15px;
  }
}

@media (max-width: 1024px) {
  .story-card {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .story-content {
    padding: 0px 30px 30px 30px;
    margin-top: -45px;
  }

  .story-img {
    width: 100% !important;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    margin-bottom: 0px !important;
    margin: 0 0 0 0 !important;
  }

  .story-image-wrapper {
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }

  .arrow-success.arrow {
    top: 30px;
    right: 30px;
  }

  .link-arrow {
    position: relative !important;
    top: 75px;
    right: 0px;
    bottom: 0px;
    z-index: 10;
    display: block;
  }

  .arrow-btn-success{
    width: auto !important;
    margin: 0 0 0 auto !important;
  }
  
  .story-image-wrappe{
    top:0px;
  }
}

@media (min-width: 992px) and (max-width: 1024px){
  .story-img{
    height: 624px !important;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
  }
}

@media (max-width: 991px) {
  .stories-carousel-section {
    padding: 0px 0px 10px 0px
  }
  #storiesCarousel {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .stories-carousel-section {
    padding: 0px 0px 0px 0px
  }

  .story-card {
    /* padding: 20px; */
  }

  .story-img {
    height: 250px;
  }

  .story-title {
    font-size: 1.5rem;
  }

  .btn-slide[data-bs-slide="prev"]::before, .btn-slide[data-bs-slide="next"]::before {
    width: 18px;
  }
  .btn-slide[data-bs-slide="prev"]::after, .btn-slide[data-bs-slide="next"]::after {
    padding: 4px;
  }

  .btn-slide {
    width: 34px;
  }

  .arrow-btn-success {
    height: 38px;
  }

  .carousel-sliding-item{
    width: 80%;
  }
}
@media (max-width: 575px) {
  .carousel-sliding-item{
    width: 90%;
  }
}

@media (min-width: 760px) {
  .story-img{
    height: 400px !important;
  }
}



/* ----- "Upz - Success stories" template styling ----- */
.carousel-arrow-background {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #F3F3F3;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 0.5rem 1rem;
  border-radius: 50%;
}

@media (max-width: 1660px) {
  .carousel-arrow-background.left-arrow {
    left: 60px !important; 
  }

  .carousel-arrow-background.right-arrow {
    right: 60px !important; 
  }
}

@media (max-width: 1250px) {
  .carousel-arrow-background.left-arrow {
    left: 30px !important; 
  }

  .carousel-arrow-background.right-arrow {
    right: 30px !important; 
  }
}

@media (max-width: 992px) {
  .carousel-arrow-background.left-arrow {
    left: 15px !important; 
  }

  .carousel-arrow-background.right-arrow {
    right: 15px !important; 
  }
}

@media (max-width: 768px) {
  .carousel-arrow-background.left-arrow {
    left: 7px !important; 
  }

  .carousel-arrow-background.right-arrow {
    right: 7px !important; 
  }
}

@media (max-width: 630px) {
  .carousel-arrow-background.left-arrow {
    display:none !important;
  }

  .carousel-arrow-background.right-arrow {
    display:none !important;
  }
}

.carousel-arrow-background.left-arrow {
  left: 100px; 
  color: #6B696D;
}

.carousel-arrow-background.right-arrow {
  right: 100px; 
  color: #6B696D;
}

.carousel-arrow-background:hover {
  background: rgb(245, 245, 245);
}



/* ----- "Upz - Testimonial Section" template styling ----- */
  .testimonial-grid {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  @media (max-width: 992px) {
    .testimonial-content {
      padding-right: 0;
      /* margin-bottom: 1.5rem; */
    }
  }
  
  @media (max-width: 768px) {
    .testimonial-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  /* Custom CSS for Testimonial Component */
  .testimonial-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
    min-height: 280px;
    border: none;
  }
  
  .testimonial-logo {
    width: 119px;
    height: 40px;
    /* margin: 0 auto; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
  }
  
  .testimonial-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    justify-content: space-between;
  }
  
  .testimonial-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #04060F;
    margin: 0;
  }
  
  .testimonial-client {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .testimonial-avatar {
    width: 52px;
    height: 52px;
    background: #F8B600;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  
  .testimonial-avatar img {
    width: 52px;
    height: 52px;
    border-radius: 50px;
    object-fit: cover;
  }
  
  .testimonial-avatar-icon {
    width: 18px;
    height: 22px;
    background: #FFFFFF;
    /* You can replace this with an actual icon */
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
  }
  
  .testimonial-client-info {
    flex: 1;
  }
  
  .testimonial-client-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #04060F;
    margin: 0;
  }
  
  .testimonial-client-role {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6B696D;
    margin: 0;
  }
  
/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 24px;
        gap: 24px;
    }

    .testimonial-body {
        font-size: 14px;
        line-height: 22px;
    }

    .testimonial-client-name,
    .testimonial-client-role {
        font-size: 14px;
        line-height: 22px;
    }
}
  
@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
        gap: 20px;
    }

    .testimonial-logo {
        width: 100px;
        height: 32px;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }

    .testimonial-avatar img {
        width: 44px;
        height: 44px;
    }

    .testimonial-client {
        gap: 12px;
    }
}



/* ----- "Upz - Trusted Logos" template styling ----- */
  #trusted-logos h5 {
    font-family: 'Fira Sans', sans-serif;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  #trusted-logos {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .trusted-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }

  .trusted-logo:hover {
    opacity: 1;
  }

  @media (max-width: 767.98px) {
    .trusted-logo {
      height: 32px;
      margin-bottom: 1rem;
      padding: 0 !important
    }

    #trusted-logos {
      padding-top: 5rem !important;
      padding-bottom: 3rem !important;
    }
  }



/* ----- "Upz - Two Column Section" template styling ----- */
  .main-section {
    padding: 80px 0;
  }

  /* Content Layout Styles */
  .section-content,
  .content-side {
    padding-right: 2rem;
  }
  
  .quote-side {
    padding-left: 2rem;
    position: relative;
  }

  /* Typography Styles */
  .section-eyebrow,
  .client-eyebrow {
    font-size: 0.875rem;
    font-weight: 400;
    color: #04060F;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }
  
  .section-title,
  .content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #04060F;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .content-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #6B696D;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .section-header {
    font-size: 1.2rem;
    color: #04060F;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .content-text {
    font-size: 1rem;
    color: #04060F;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .content-text p {
    margin-bottom: 1.5rem;
  }
  
  .content-text p:last-child {
    margin-bottom: 0;
  }

  /* Client Section Styles */
  .client-content {
    padding-right: 2rem;
  }

  .client-name {
    font-size: 3rem;
    font-weight: 700;
    color: #04060F;
    margin-bottom: 2rem;
    line-height: 1.1;
  }

  .client-description,
  .client-additional {
    font-size: 1rem;
    color: #04060F;
    line-height: 1.6;
  }

  .client-description {
    margin-bottom: 1.5rem;
  }

  .client-additional {
    margin-bottom: 0;
  }

  /* Client Sidebar Styles */
  .client-sidebar {
    background-color: #F3F3F3;
    padding: 2rem;
    border-radius: 8px;
  }

  .client-info-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #E5E7EB;
  }

  .client-info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .client-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6B696D;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }

  .client-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #04060F;
    line-height: 1.4;
  }

  .client-results {
    font-size: 1rem;
    font-weight: 600;
    color: #04060F;
    line-height: 1.6;
  }

  .client-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .client-results li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .client-results li:before {
    content: "•";
    color: #F8B600;
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  /* Quote Styles */
  
  .quote-container {
    background: #ffffff;
    border-left: 4px solid #F8B600;
    padding: 2rem;
    position: relative;
  }
  
  /* Quote with author (smaller) */
  .quote-text {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
    color: #6B696D;
    line-height: 2.125rem; /* 34px */
    margin-bottom: 2rem;
    font-style: normal;
  }
  
  /* Quote without author (larger) */
  .quote-container.no-author .quote-text {
    font-size: 1.875rem; /* 30px */
    line-height: 2.75rem; /* 44px */
    margin-bottom: 0;
  }
  
  .quote-author {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
  }
  
  .quote-author-name {
    font-size: 0.875rem; /* 14px */
    font-weight: 700;
    color: #6B696D;
    margin: 0;
    line-height: 1.25rem; /* 20px */
  }
  
  .quote-author-role {
    font-size: 0.75rem; /* 12px */
    font-weight: 400;
    color: #6B696D;
    margin: 0;
    line-height: 1.125rem; /* 18px */
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
    .section-title,
    .content-title {
      font-size: 2rem;
    }
    
    .client-name {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 992px) {
    .main-section,
    .content-quote-section {
      padding:0px 0 !important;
    }

    .section-content,
    .content-side {
      padding-right: 0;
      margin-bottom: 3rem;
    }

    .section-content {
      text-align: center;
    }
    
    .quote-side {
      padding-left: 0;
    }
    
    .section-title,
    .content-title {
      font-size: 1.8rem;
    }
    
    .client-content {
      padding-right: 0;
      margin-bottom: 3rem;
    }
    
    .client-name {
      font-size: 2rem;
    }
    
    .client-sidebar {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 768px) {
    
    .section-title,
    .content-title {
      font-size: 1.5rem;
    }
    
    .client-name {
      font-size: 1.8rem;
    }
    
    .section-subtitle {
      font-size: 1rem;
    }
    
    .quote-text {
      font-size: 1.25rem; /* 20px on tablet */
      line-height: 1.75rem; /* 28px */
    }
    
    .quote-container.no-author .quote-text {
      font-size: 1.5rem; /* 24px on tablet */
      line-height: 2.125rem; /* 34px */
    }
    
    .content-text,
    .client-description,
    .client-additional {
      font-size: 0.9rem;
    }
    
    .quote-container {
      padding: 1.5rem;
    }
    
    .client-sidebar {
      padding: 1rem;
    }
    
    .client-info-section {
      margin-bottom: 1.5rem;
    }

    .main-section,
    .content-quote-section {
      padding: 0px 0 !important;
    }
  }
  
  @media (max-width: 576px) {
    .main-section,
    .content-quote-section {
      padding: 0px 0 !important;
    }
    
    .quote-container,
    .client-sidebar {
      padding: 1rem;
    }
    
    .client-name {
      font-size: 1.5rem;
    }
  }



/* ----- "Upz - Two Section With Card" template styling ----- */
/* ===== DARK STATS SECTION ===== */
.stats-dark-section {
    padding: 90px 0px 160px 0px;
    /* background: linear-gradient(135deg, #0a1628 0%, #0f1f3a 100%); */
    background: #040C2C;
    color: #ffffff;
    min-height: auto;
    display: flex;
    align-items: center;
}

/* Left Column - Stats Grid */
.stats-left-column {
    padding-right: 2rem;
}
/* Stats Grid Container - 2 Column Layout */
.stats-grid-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Stat Card Styles */
.stat-card-dark {
    background: linear-gradient(135deg, rgba(0, 128, 160, 0.3), rgba(0, 160, 200, 0.2));
    border: 1px solid rgba(0, 160, 200, 0.4);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    backdrop-filter: blur(10px);
}

.stat-card-dark:hover {
    background: linear-gradient(135deg, rgba(0, 128, 160, 0.4), rgba(0, 160, 200, 0.3));
    border-color: rgba(0, 180, 220, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 201, 183, 0.2);
}

.stat-number-dark {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label-dark {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-weight: 500;
}

/* Right Column - Content */
.stats-right-column {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Eyebrow Text */
.stats-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Content Title */
.stats-content-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stats-content-title.small {
    font-size: 2.5rem;
}

.stats-content-title.extra-small {
    font-size: 2rem;
}

/* Content Description */
.stats-content-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.stats-content-description p {
    margin-bottom: 1rem;
}

.stats-content-description p:last-child {
    margin-bottom: 0;
}

/* Button Group */
.stats-button-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn-stats {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-family: inherit;
}

.btn-stats.primary-teal {
    background: linear-gradient(135deg, #00c9b7 0%, #00a8a8 100%);
    color: #000;
}

.btn-stats.primary-teal:hover {
    background: linear-gradient(135deg, #00e5cc 0%, #00bfb8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 201, 183, 0.3);
    text-decoration: none;
    color: #000;
}

.btn-stats.primary-gold {
    background: #F8B600;
    color: #000;
}

.btn-stats.primary-gold:hover {
    background: #ffc400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 182, 0, 0.3);
    text-decoration: none;
    color: #000;
}

.btn-stats.secondary {
    background: transparent;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 1;  
    white-space: nowrap;
}

.btn-stats.secondary:hover {
    text-decoration: none;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-stats.secondary:hover .arrow-icon {
    transform: translateX(4px);
}

.card-text-section{
    padding-bottom: 0px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .stats-content-title {
        font-size: 2.5rem;
    }

    .stats-content-title.small {
        font-size: 2rem;
    }

    .stat-number-dark {
        font-size: 2.5rem;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .stats-dark-section {
        padding: 95px 0 50px 0;
    }
}

@media (max-width: 992px) {
    .stats-content-title,
    .stats-eyebrow,
    .stats-content-description,
    .stats-button-group {
        text-align: left !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .stats-left-column {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .stats-right-column {
        padding-left: 0;
    }

    .stats-content-title {
        font-size: 2rem;
        text-align: center;
    }

    .stats-content-title.small {
        font-size: 1.75rem;
    }

    .stats-eyebrow {
        text-align: center;
    }

    .stats-content-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        /* max-width: 600px; */
    }

    .stats-button-group {
        justify-content: center;
    }

    /* Keep 2 columns on tablet */
    .stats-grid-dark {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .card-text-section{
        padding-bottom: 30px;
    }
}

@media (min-width:577px) and (max-width: 768px) {
    .stats-dark-section {
        padding: 95px 0 50px 0;
    }
}

@media (max-width: 768px) {
    .stats-content-title {
        font-size: 1.75rem;
    }

    .stats-content-title.small {
        font-size: 1.5rem;
    }

    .stat-number-dark {
        font-size: 2rem;
    }

    .stat-card-dark {
        min-height: 140px;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .stat-label-dark {
        font-size: 0.9rem;
    }

    .stats-button-group {
        flex-direction: row;
        align-items: wrap;
        gap: 1rem;
        width: auto;
        justify-content: center;
    }

    .btn-stats {
        width: auto;
        text-align: center;
    }

    .stats-content-description {
        font-size: 1rem;
    }

    /* 2 Columns on mobile landscape */
    .stats-grid-dark {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-dark-section {
        padding: 80px 0 50px 0;
    }

    .stats-content-title {
        font-size: 1.5rem;
    }

    .stats-content-title.small {
        font-size: 1.25rem;
    }

    .stat-number-dark {
        font-size: 1.75rem;
    }

    /* Stack to single column on small mobile */
    .stats-grid-dark {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card-dark {
        min-height: 120px;
        padding: 1.25rem;
    }

    .stat-label-dark {
        font-size: 0.85rem;
    }

    .stats-content-title {
        margin-bottom: 1.5rem;
    }

    .stats-content-description {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .stats-button-group {
        gap: 0.75rem;
    }

    .btn-stats {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .stats-left-column {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-dark-section {
        padding: 80px 0 50px 0;
    }

    .stats-content-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .stat-number-dark {
        font-size: 1.5rem;
    }

    .stats-content-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .stat-label-dark {
        font-size: 0.8rem;
    }

    .btn-stats {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 347px) {
    .stats-button-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
}



/* ----- "Upz - Testimonial Copy" template styling ----- */
  /* Testimonial Section Styles */
.main-section .testimonial-container {
    max-width: 100% !important;
    width: 100%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* always 2 columns on desktop */
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .testimonial-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Card styles */
.testimonial-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: auto;
  min-height: 280px;
  border: none;
}

.testimonial-logo {
  width: 119px;
  height: 40px;
  display: flex;
  align-items: center;
}

.testimonial-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.testimonial-body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #04060F;
  margin: 0;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  background: #F8B600;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50px;
  object-fit: cover;
}

.testimonial-avatar-icon {
  width: 18px;
  height: 22px;
  background: #FFFFFF;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.testimonial-client-info {
  flex: 1;
}

.testimonial-client-name {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #04060F;
  margin: 0;
}

.testimonial-client-role {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #6B696D;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 24px;
    gap: 24px;
  }
  
  .testimonial-body {
    font-size: 14px;
    line-height: 22px;
  }
  
  .testimonial-client-name,
  .testimonial-client-role {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 20px;
    gap: 20px;
  }
  
  .testimonial-logo {
    width: 100px;
    height: 32px;
  }
  
  .testimonial-avatar {
    width: 44px;
    height: 44px;
  }
  
  .testimonial-avatar img {
    width: 44px;
    height: 44px;
  }
  
  .testimonial-client {
    gap: 12px;
  }
}



/* ----- "Upzoids - First Header" template styling ----- */
  .top-nav-bar { 
    background: #d1d1d2;
  }
  .top-nav-bar .top-nav-links { 
    display:flex; 
    align-items:center; 
    justify-content:flex-end; 
    color: #04060F !important; 
    line-height:42px !important; 
    font-weight: 400 !important; 
    gap: 21px;               
  }
  .top-nav-bar .top-sep { 
    display:none
  }
  .top-nav-bar .top-nav-link {
    text-decoration: none;
  }
  .top-nav-bar .top-nav-link:hover, .top-nav-bar .top-nav-link:focus { 
    text-decoration: none;
  }

  @media (max-width: 991px) {
    .top-nav-bar .top-nav-links { 
      display: none;
    }
  }

  @media (max-width: 1258px) {
    a.top-nav-link {
      gap: 19px;
    }
  }

  .top-nav-link{
    color: #04060F !important; 
    font-weight: 600 !important;
    font-size: 14px !important;
    font-family: 'Sohne', sans-serif !important;  
  }
  .top-nav-link:hover {
    font-weight: 600 !important; 
  }

  /* Remove extra space */
  .container-fluid {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  /* Nav bar item UI */
  .nav-link,
  .nav-link:hover,
  .nav-link:focus,
  .nav-link:active {
    text-decoration: none !important;
  }

  .main-menu .nav-link {
    font-weight: 500 !important;
    font-size: 15px;
  }



/* ----- "Upzoids - Mobile Header" template styling ----- */
.mobile-nav-button-group {
    display: flex;
    flex-direction: column;    
    align-items: center;        
    justify-content: center;    
    text-align: center;  
    gap: 1rem;                 
    margin-top: 1rem;
}

@media (max-width: 991px) {
    a.slicknav_item.slicknav_row {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .main-menu { 
        display:none !important; 
    }

    .main-menu .dropdown-menu,
    .main-menu .dropdown.show > .dropdown-menu,
    .main-menu .open > .dropdown-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: none !important;
        pointer-events: none !important;
    }

    .header-spacing {
        padding-top:10px;
        padding-bottom: 2px;
    }

    .dropdown-item {
        color: #FFFFFF !important;
        padding-left: 1.1rem !important;
    }

    .desktop-only{
        display: none;
    }
    
    .dropdown-menu{
        background-color: #04DBED0D;
    }

    .dropdown-header-divider {
        background-color: #FFFFFF33 !important;
        width: 93.3% !important;
        margin-top: 5px !important;
    }

    .mobile_menu {
        display: block !important;
        width: 100%;
    }

    .mobile-nav-button-group,
    .mobile-nav-button-group .nav-item {
        width: 100%;
        display: block;
    }

    .upzoids-primary-btn-mobile{
        width: 100% !important;       
        margin: 0 auto !important;    
    }

    .book-time-mobile{
        display: flex;
        align-items: center;  
        text-align: center;  
        text-transform: none !important;
        padding-left: 15px !important;
        padding-bottom: 0px !important;
        font-size: 16px !important;
        margin-left: 5px !important;
    }

    .slicknav_nav .slicknav_open .dropdown-menu li:first-child {
        display: block;
    }

    .slicknav_nav .slicknav_open .dropdown-menu {
        background-color: #04DBED0D;
        border-radius: 12px;
        margin-left: 0px;
        margin-top: 0;
        margin-bottom: 10px;
        position: static;
        float: none;
        width: auto;
        border: 0;
        box-shadow: none;
    }

    .slicknav_nav .slicknav_open .dropdown-columns .dropdown-menu {
        padding-top: 2px;
    }

    .dropdown-columns {
        /* display: flex !important; */
        flex-direction: column;
        gap: 11px;
        margin-left: 0px !important;
    }

    .dropdown-menu > li > a {
        line-height: 1 !important;
    }

    .dropdown-item,
    .dropdown-item:active,
    .dropdown-item:focus {
        line-height: 1 !important;
        font-size: 14px;
        display: block !important;
        align-items: center;
        background-color: transparent !important;
        color: #FFFFFF !important;
        padding-top: 15px !important;
        padding-bottom: 13px !important;
        transition: none !important;
        text-transform: none !important;
    }

    .dropdown-columns .dropdown-item,
    .dropdown-columns .dropdown-item:active,
    .dropdown-columns .dropdown-item:focus {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        padding-left: 17.6px !important; 
        transform: none !important;
        box-shadow: none !important;
    }


    .dropdown-columns .dropdown-item:focus {
        outline: none !important;
        border: none !important;
    }

    .dropdown-column {
        max-height: 46px; 
        overflow-y: auto; 
    }

    .dropdown-columns .dropdown-menu:not(:first-child) {
        margin-top: 22px !important; 
    }

    /* Showing the "X" icon when nav bar is open */
    .slicknav_btn::after {
        content: "✕";              
        display: none;
        font-size: 18px;
        line-height: 1;
        color: #FFFFFF !important;   
        vertical-align: middle;
        margin-left: 6px;            
        pointer-events: none;        
        position: relative;
        top: 0;
    }

    .slicknav_btn.slicknav_open::after,
    .slicknav_menu .slicknav_btn.slicknav_open::after{
        display: inline-block;
    }

    .slicknav_btn.slicknav_open .slicknav_icon-bar,
    .slicknav_menu .slicknav_btn.slicknav_open .slicknav_icon-bar,
    .slicknav_menu.slicknav_open .slicknav_btn .slicknav_icon-bar,
    .slicknav_menu .slicknav_open .slicknav_icon-bar,
    .slicknav_open .slicknav_icon-bar {
        display: none !important;
    }

    .slicknav_btn, .slicknav_menu {
        overflow: visible !important;
        z-index: 9999;
    }

    .slicknav_nav ul {
        margin: 0 0 0 0px !important;
    }

    /* Buttons' smooth transition */
    :root {
        --mobile-buttons-height: 140px; 
    }

    body.mobile-nav-open .slicknav_nav .weblinks {
        padding-bottom: var(--mobile-buttons-height);
        transition: max-height 280ms ease, transform 220ms ease, opacity 220ms ease;
    }

    .mobile-nav-button-group {
        transform: translateY(-10px);
        opacity: 0;
        will-change: transform, opacity;
        transition: transform 0ms ease, opacity 220ms ease;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    body.mobile-nav-open .slicknav_nav .mobile-nav-button-group {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    .slicknav_nav.slicknavd-none .mobile-nav-button-group{
        transform: translateY(0) !important;
        opacity: 0 !important;
    }

    /* Dropdown animation */
    .slicknav_nav .slicknav_collapsed .dropdown-menu,
    .slicknav_nav .slicknav_collapsed .dropdown-columns{
        max-height: 0;           
        overflow: hidden;
        pointer-events: none;
        opacity: 0;                  
        transition: max-height 280ms ease, transform 220ms ease; 
    }

    .slicknav_nav .slicknav_open .dropdown-menu,
    .slicknav_nav .slicknav_open .dropdown-columns,
    .slicknav_nav .dropdown.show > .dropdown-menu {
        display: block !important;    
        max-height: 0;           
        overflow: hidden;
        pointer-events: none;
        max-height: 1000px;           
        transform: translateY(0);
        opacity: 1;             
        pointer-events: auto;
        transition: max-height 280ms ease, transform 220ms ease; 
    }

    .slicknav_nav .slicknav_animating .dropdown-menu, .slicknav_nav .slicknav_open .dropdown-menu {
        position: relative !important;
        float: right !important;
        width: 100% !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    
    /* Smooth animation on nav bar */
    .slicknav_nav.slicknavd-none > li.nav-item {
        opacity: 0;
        transition: opacity 280ms ease, transform 220ms ease;
        transform: translateY(-10px);
    }

    .slicknav_nav:not(.slicknavd-none) > li.nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .slicknav_nav.slicknavd-none {
        max-height: 0;          
        opacity: 0;           
        overflow: hidden;        
        pointer-events: none;    
        transition: max-height 280ms ease, opacity 220ms ease;
    }

    .slicknav_nav:not(.slicknavd-none) {
        max-height: 100vh;        
        opacity: 1;
        overflow-y: auto;         
        pointer-events: auto;
        transition: max-height 280ms ease, opacity 220ms ease;
    }
}

body.mobile-nav-open {
    overflow: hidden !important;
}

.mobile_menu,
.slicknav_menu {
    background: transparent !important;
}

.slicknav_nav {
    right: 0 !important;
    height: 100vh;
    overflow-y: auto !important;
    z-index: 10001 !important;   
    pointer-events: auto !important;
    background: #040C2C;        
    display: none;                
}

/* Positions the buttons at bottom of screen */    
body.mobile-nav-open .slicknav_nav {
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important; 
    box-sizing: border-box;
    min-height: 100vh; 
}

body.mobile-nav-open .slicknav_nav .weblinks {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;       
    overflow-y: auto;       
    padding-bottom: 0;
}

body.mobile-nav-open .slicknav_nav .mobile-nav-button-group {
    margin-top: auto !important;
    padding-top: 50px;
    padding-bottom: 90px;
    width: 100%;
    box-sizing: border-box;
}



/* ----- "Upzoids - Second Header" template styling ----- */
  .main-nav-bar { 
    background: #040C2C; 
    color:#F3F3F3 !important; 
    font-family: 'Sohne', sans-serif !important;
  }

  /* Drop down items UI */
  .dropdown-header-divider {
    display: block;
    height: 0.5px;
    margin: 0.5rem 2rem 0.5rem 1rem !important;
    padding: 0rem 0rem 0rem 0rem !important;
    list-style: none;
  }

  .mega-dropdown .dropdown-header-divider {   
    width: 90% !important;
    margin: 0.5rem 2rem 0.5rem 0.8rem !important;
  }

  /* Remove extra space */
  .container-fluid {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }

  @media (min-width: 992px) {
    .dropdown-header-divider {
      width: 75% !important;
      background-color: #D1D1D2;
    }

    /* Remove text decoration on drop down item */
    .dropdown-item {
      text-decoration: none !important;
      font-weight: 400 !important;
    }
    .dropdown-item:hover,
    .dropdown-item:focus {
      text-decoration: none !important;
      background-color: transparent !important; 
      color: inherit !important;
    }

    /* Removes underline in nav bar */
    .main-menu .nav-link,
    .main-menu .nav-link:hover,
    .main-menu .nav-link:focus,
    .main-menu .nav-link:active {
      text-decoration: none !important;
    }

    /* Nav bar item UI */
    .main-menu .nav-link {
      font-weight: 500 !important;
      font-size: 15px;
    }

    /* Transition of items inside the dropdown */
    .dropdown-item {
      color: #04060F !important;
      font-size: 14px !important;
      transition: none !important;
      display: inline-block; 
      font-weight: 400;
    }

    /* 2 column drop down ui */
    .mega-dropdown {
      color: #04060F !important;
      width: 540px;
    }
    .mega-dropdown .dropdown-item {
      color: #04060F !important;
    }

    .dropdown-menu,
    .mega-dropdown {
      font-family: inherit;
      color: #04060F !important;
    }
  
    .dropdown-menu.mega-dropdown {
      padding-left: 8px;
      padding-right: 15px;
    }

    .dropdown-columns {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      align-items: start;
      grid-auto-rows: minmax(44px, auto);
    }
    .mega-dropdown .dropdown-column li {
      padding: 5px 0;             
      display: flex;
      align-items: center;      
      box-sizing: border-box;
    }

    .dropdown-column ul li a {
      text-decoration: none;
      display: block;
    }

    .main-menu.f-right.d-none.d-lg-block ul li a.dropdown-item{
      padding-top: 0px !important;
      padding-bottom: 5px !important;
    }

    /* Hide dropdown on default */
    .main-header .main-menu ul li.dropdown .dropdown-menu {
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      border-radius: 12px;
      background-color: #f3f3f3;
      transition: none !important;
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      border: none;
    }

    /* Drop down icon display */
    .dropdown-icon-closed { 
      padding-bottom: 1px;  
      display: inline-block; 
    }
    .dropdown-icon-opened { 
      display: none; 
    }
    .dropdown-icon-closed,
    .dropdown-icon-opened-sizing{
      width: 16px;
      height: 16px;
    }

    /* Only show dropdown when clicked on */
    @media (hover: none) {
      .main-header .main-menu ul li.dropdown:focus-within > .dropdown-menu {
          display: block;
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          pointer-events: auto;
          z-index: 9999;
          background-color: #f3f3f3;
          border: none;
          text-decoration: none !important;
      }

      .nav-item.dropdown:active > a .dropdown-icon-closed, 
      .nav-item.dropdown.show > a .dropdown-icon-close 
      .main-menu .dropdown:focus-within > a .dropdown-icon-closed, 
      .main-menu .dropdown:focus-within > a .dropdown-icon-closed{
        display: none;
      }

      .nav-item.dropdown:active > a .dropdown-icon-opened, 
      .nav-item.dropdown.show > a .dropdown-icon-opened, 
      .main-menu .dropdown:focus-within > a .dropdown-icon-opened, 
      .main-menu .dropdown:focus-within > a .dropdown-icon-opened {
        padding-bottom:  1px; 
        display: inline-block;
      }
    }

    /* Only show dropdown while hovered */
    @media (hover: hover) {
      .main-header .main-menu ul li.dropdown:hover > .dropdown-menu {
          display: block;
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          pointer-events: auto;
          z-index: 9999;
          background-color: #f3f3f3;
          border: none;
          text-decoration: none !important;
      }

      .nav-item.dropdown:hover > a .dropdown-icon-closed, 
      .nav-item.dropdown:active > a .dropdown-icon-closed, 
      .nav-item.dropdown.show > a .dropdown-icon-close{
        display: none;
      }
      .nav-item.dropdown:hover > a .dropdown-icon-opened, 
      .nav-item.dropdown:active > a .dropdown-icon-opened, 
      .nav-item.dropdown.show > a .dropdown-icon-opened{
        padding-bottom:  1px; 
        display: inline-block;
      }
    }

    /* Remove borders, outlines, and shadows on click */
    .dropdown-item:active,
    .dropdown-item:focus {
      border: none !important;
      outline: none !important;
      box-shadow: none !important;
      background-color: transparent !important; 
    }

    .dropdown-item:focus-visible {
      outline: none !important;
    }

    /* Remove fade on nav bar item when changing color */
    .main-menu .nav-link {
      transition: none !important;
    }

    .main-header .row>* { 
      padding-right: 0px !important;
    }

    li.nav-item.weblink > a:hover {
      text-decoration: none !important;
    }
  }

  /* Primary button styling */
  .upzoids-primary-btn {
    color: #04060F !important;
    background-color: #3BBBC9;
    border-radius: 6px;
    font-family: 'Sohne', sans-serif ;
    font-weight: 400 !important;
    font-size: 16px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 44px;
    padding: 10px 24px !important;
    line-height: 1.6;
    text-transform: none !important;
  }

  .upzoids-primary-btn:hover {
    background-color: #3FB0C0 !important;
    color: #04060F;
    text-decoration: none !important;

  }
  .upzoids-primary-btn:active, .upzoids-primary-btn.active {
    background-color: #43A5B7 !important;
    color: #04060F;
    text-decoration: none !important;

  }
  .upzoids-primary-btn:active:hover, .upzoids-primary-btn:active:focus, .upzoids-primary-btn:active.focus, .upzoids-primary-btn.active:hover, .upzoids-primary-btn.active:focus, .upzoids-primary-btn.active.focus {
    background-color: #43A5B7 !important;
    color: #04060F !important;
    text-decoration: none !important;
  }
  .upzoids-primary-btn:focus, .btn-primary.focus {
    background-color: #43A5B7 !important;
    color: #04060F;
    text-decoration: none !important;
  }

  /* Logo */
  .upz-header-logo {
    max-height: 40px; 
    margin-bottom: 0.6rem;
    z-index: 10001;
  }
  

  @media (max-width: 1336px) {
    .header-spacing{
      padding-left: 0px;
    }

    .main-header .main-menu ul li a:not(.upzoids-primary-btn):not(.dropdown-item){
      padding: 27px 8px !important;
    }
    
    .upzoids-primary-btn{
        margin-right: 0px !important;
    }
  }

  @media (max-width: 1258px) {
    .nav-item .ms-3{
      margin-left: 0px !important;
    }

    .main-menu .nav-link{
      font-size: 14px !important;
      color: #F3F3F3 !important;
    }
    
    .main-menu .nav-link:hover{
      color: #04dbec !important;
    }

    li.nav-item.weblink > a {
      color: #F3F3F3 !important;
    }
    
    li.nav-item.weblink > a:hover {
      color: #04dbec !important;
    }
  }


  @media (max-width: 991px) {
    .upz-header-logo {
      max-height: 23px; 
      margin-bottom: 0rem;
    }
  }

  @media (max-width: 576px) {
    .upzoids-primary-btn{
      font-size:0.9rem !important;   
    }
  }

  @media (min-width: 992px) and (max-width: 1244px) {
    .main-menu .ms-3 {
      margin-left: 0.3rem !important;
    }
  }




/* ----- "Upzoids Content Page 2" template styling ----- */
.page-heading {
    margin-bottom: 0;
}
.page-heading {
    padding-top: 0;
    background-color: #04dbec;
    margin-bottom: 80px;
}
.breadcrumb {
  padding: 8px 15px;
    background-color: transparent;
    height: 50px;
    border-radius: 0;
    float: right;
    margin-top: 20px;
    margin-bottom: 0;
}
ul {
    list-style-image: url(data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
		<circle fill="#009FDC" cx="5" cy="5" r="3"/>
	</svg>);
}

.breadcrumb a {
    color: #212529;
}
li a {
    margin-left: 3px;
}

a {
    color: #109AD6;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.breadcrumb .active {
    color: #fff;
}

.page-header {
    float: left;
    margin-top: 30px;
    border: 0;
    width: auto;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin: 0 0;
    text-transform: uppercase;
    color: #fff;
}
.jumbotron {
    min-height: 200px;
    max-height: 350px;
}

blockquote h6, h6 {
    font-size: 18px;
    color: #777777;
}
.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200;
}

.bg-overlay {
    position: relative;
    z-index: 1;
}

.bg-overlay:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    content: '';
    z-index: -1;
    top: 0;
    left: 0
}



/* ----- "Upzoids Job Apply" template styling ----- */
.job-bullet li {
    display: block;
}

.job-bullet ul {
    padding: revert;
    margin: revert;
}

.job-bullet li:before
{
    /*Using a Bootstrap glyphicon as the bullet point*/
    content: "\e080";
    font-family: 'Glyphicons Halflings';
    font-size: 9px;
    float: left;
    margin-top: 4px;
    margin-left: -17px;
    color: #CCCCCC;
}

.page-heading {
    margin-bottom: 0;
}
.page-heading {
    padding-top: 0;
    background-color: #04dbec;
    margin-bottom: 80px;
}
.breadcrumb {
  padding: 8px 15px;
    background-color: transparent;
    height: 50px;
    border-radius: 0;
    float: right;
    margin-top: 20px;
    margin-bottom: 0;
}
ul {
    list-style-image: url(data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
		<circle fill="#009FDC" cx="5" cy="5" r="3"/>
	</svg>);
}

.breadcrumb a {
    color: #212529;
}
li a {
    margin-left: 3px;
}

a {
    color: #109AD6;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.breadcrumb .active {
    color: #fff;
}

.page-header {
    float: left;
    margin-top: 30px;
    border: 0;
    width: auto;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin: 0 0;
    text-transform: uppercase;
    color: #fff;
}
.jumbotron {
    min-height: 200px;
    max-height: 350px;
}

blockquote h6, h6 {
    font-size: 18px;
    color: #777777;
}
.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200;
}

.bg-overlay {
    position: relative;
    z-index: 1;
}

.bg-overlay:after {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    content: '';
    z-index: -1;
    top: 0;
    left: 0
}