@import url('https://fonts.googleapis.com/css2?family=Alice&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+HU:wght@100..400&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
  font-family: Plus Jakarta Sans;
  overflow-x: hidden;
}
/* Core Button Reset */
.button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}
/* Animated overlay base */
.animated-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  transform: skew(20deg);
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.3, 1, 0.8, 1);
}
/* On hover, slant slides away */
.animated-button:hover::before {
  transform: translateX(120%) skew(20deg);
}
/* Keep text on top */
.animated-button span {
  position: relative;
  z-index: 1;
}

/* Color-specific styles */
.btn-orange {
  background-color: #7C2308 !important;
}

.btn-orange::before {
  background-color: #FF511A;
}
.btn-dark {
  background-color: #ffffff;
}

.btn-dark::before {
  background-color: #000000;
}

/* ------------------ Base Hero Section ------------------ */
.hero-section {
  background-image: url('../images/smallherobg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  min-height: 120vh;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-section .container {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-header {
  font-weight: 700;
  font-size: 75px;
  line-height: 80px;
  color: #101320;
  text-align: left;
}

.hero-section p {
  font-size: 20px;
  line-height: 32px;
  color: #333333;
  margin-top: 20px;
}

/* ------------------ Mobile: up to 575px ------------------ */
@media (max-width: 575px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    padding: 20px;
    min-height: 90vh;
  }

  .hero-section .container {
    min-height: 90vh;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-header {
    font-size: 35px;
    line-height: 40px;
    text-align: center;
  }

  .hero-section p {
    font-size: 15px;
    line-height: 22px;
    text-align: center;
  }
}

/* ------------------ Small Tablets: 576px–767px ------------------ */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    background-position: top center;
    background-size: contain;
    min-height: 100vh;
    padding: 30px;
  }

  .hero-header {
    font-size: 38px;
    line-height: 44px;
  }

  .hero-section p {
    font-size: 17px;
    line-height: 26px;
  }
}

/* ------------------ Tablets: 768px–1023px ------------------ */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
    background-position: top right;
    background-size: contain;
    min-height: 50vh;
    /* padding: 40px; */
  }
  .hero-section .container {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: start;
}
.hero-section .container .row{
  width: 45% !important;
  margin-left: 100px;
}

  .hero-header {
    font-size: 30px;
    line-height: 30px;
  }

  .hero-section p {
    font-size: 14px;
    line-height: 20px;
    margin: 0px;
  }
}

/* ------------------ Medium Devices: 1024px–1199px ------------------ */
@media (min-width: 1025px) and (max-width: 1199px) {
  .hero-section {
    background-position: top center;
    background-size: cover;
    min-height: 40vh;
    /* padding: 60px; */
  }

  .hero-section .container {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: start;
}
.hero-section .container .row{
  width: 50% !important;
    margin-left: 100px;
}
 .hero-header {
    font-size: 45px;
    line-height: 45px;
  }

  .hero-section p {
    font-size: 18px;
    line-height: 24px;
    margin: 0px;
  }
}

/* ------------------ Large Desktops: 1200px–1399px ------------------ */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section {
    background-position: top center;
    background-size: contain;
    min-height: 45vh;
  }

 .hero-section .container {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: start;
}

  .hero-header {
    font-size: 60px;
    line-height: 68px;
  }
  .hero-section p {
    font-size: 20px;
    line-height: 28px;
    margin: 0px;
  }
}

/* ------------------ Extra Large Desktops: 1400px+ ------------------ */
@media (min-width: 1400px) {
  .hero-section {
    min-height: 120vh;
    background-size: cover;
    background-position: top center;
  }
  .hero-section .container {
    min-height: 100vh;
    align-items: center;
  }
}
  /* Default transparent style */
  .navbar {
  background: transparent;
  border-bottom: 1px solid #FFFFFF33;
  transition: all 0.3s ease;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Style when scrolled */
.navbar.scrolled {
  background-color: #ffffff !important;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.25px;
  vertical-align: middle;
  margin-left: 20px;
  margin-left: 20px;
  /* color: #101320 !important; */

}

.nav-item .active {
  color: #e74c3c !important;
}

.navbar-brand {
  font-size: 1.5rem;
}

/* Mobile toggle menu background */
@media (max-width: 991.98px) {
  
  /* .navbar-collapse {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 0 0 12px 12px;
  } */

  .navbar-nav{
    width: 100%;
  }

  .navbar-nav .nav-item {
    color: #101320 !important;
    margin: 0px;

  }
  .navbar-nav .btn-dark{
    width: 100%;
    margin: 0px !important;

  }
}

/* Smooth transition for collapsing without layout glitch */
/* .navbar-collapse {
  overflow: hidden;
  transition: height 0.35s ease;
}

.navbar-collapsing {
  display: block !important;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
} */

 /* Smooth slide animation for Bootstrap collapse */
/* .navbar-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* When the menu is open (Bootstrap adds .show)
.navbar-collapse.show {
  max-height: 500px; /* adjust based on content height 
} */

.navbar-collapse {
  overflow: hidden;
  transition: height 0.35s ease;
  /* padding: 20px; */
}

.navbar-collapse .navbar-nav{
  background-color: transparent;
}



.navbar-collapse.collapsing {
  /* height: 0 !important; */
  /* overflow: hidden; */
  transition: height 0.35s ease;
}

@media (max-width: 991.98px) {
  /* .navbar-collapse.show {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 0 0 12px 12px;
  } */
     .navbar-collapse .navbar-nav{
  padding: 20px;
  background-color: white;
}
}


.overflow-hidden {
  overflow: hidden;
}
/* Base Styles */
.logo {
  width: 120px;
  height: 52px;
}

p {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #000000;
}

.btn-dark {
  font-weight: 500;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0.25px;
  vertical-align: middle;
  background-color: #101320;
  padding: 12px 32px;
}

/* Remove default focus styles */
.custom-toggler:focus {
  box-shadow: none;
  outline: none;
  border: none;
}


/* Container */
.toggler-icon {
  width: 20px;
  height: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* Lines */
.toggler-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}



/* Base Styles */
.earn-section {
  /* padding: 60px 20px; */
  text-align: center;
}

.earn-section h2 {
  width: 100%;
  font-size: 32px;
  line-height: 42px;
  padding: 0 10px;
}

.earn-section p {
  font-size: 16px;
  line-height: 28px;
  width: 100%;
  max-width: 901px;
  padding: 0 15px;
}

.s2img {
  width: 100%;
  max-width: 1000px;
  border-radius: 16px;
}

/* Extra Small Mobile Devices (up to 375px) */
@media (max-width: 375px) {
  .earn-section {
    padding: 20px 10px;
  }

      .earn-section h2 {
        font-size: 18px;
        line-height: 26px;
    }

  .earn-section p {
    font-size: 14px;
    line-height: 22px;
  }

  .s2img {
    width: 125%;
  }
}

/* Small to Medium Mobile Devices (376px to 576px) */
@media (min-width: 376px) and (max-width: 576px) {

  .earn-section {
    padding: 30px 15px;
  }

  .earn-section h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .earn-section p {
    font-size: 16px;
    line-height: 24px;
  }

  .s2img {
    width: 100%;
  }
}

/* Tablets (577px to 991px) */
@media (min-width: 577px) and (max-width: 991px) {
  .earn-section {
    padding: 50px 30px;
  }

  .earn-section h2 {
    font-size: 30px;
    line-height: 42px;
  }

  .earn-section p {
    font-size: 16px;
    line-height: 28px;
  }
}

/* Small Laptops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .earn-section {
    padding: 60px 40px;
  }

  .earn-section h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .earn-section p {
    font-size: 17px;
    line-height: 30px;
  }
}

/* Desktops (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .earn-section h2 {
    font-size: 42px;
    line-height: 52px;
  }

  .earn-section p {
    font-size: 18px;
    line-height: 32px;
  }
}

/* Large Desktops (1400px to 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
  .earn-section h2 {
    font-size: 46px;
    line-height: 56px;
  }

  .earn-section p {
    font-size: 20px;
    line-height: 34px;
  }

  .s2img {
    max-width: 940px;
    height: 100%;
    min-height: 645px;
  }
}

/* Ultra-Wide Screens (1600px and up) */
@media (min-width: 1600px) {
  .earn-section {
    padding: 80px 60px;
  }

  .earn-section h2 {
    font-size: 52px;
    line-height: 64px;
  }

  .earn-section p {
    font-size: 22px;
    line-height: 36px;
    max-width: 900px;
  }

  .s2img {
    max-width: 1194px;
    max-height: 645px;
    min-height: 645px;
  }
}

.partner-logo {
  max-height: 40px;
  width: auto;
  margin: auto;
  display: block;
}

.partners-section .owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}


.partners-section .partner-div {
  padding: 50px;
  background-color: #f5f5f5;
  border-radius: 16px;
}

.trusted-text {
  font-weight: 400;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0.25px;
}

.partner-logo {
  max-height: 40px;
  width: 40%;
  object-fit: contain;
  margin: auto;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partners-section .owl-carousel .item  {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .trusted-text {
    font-size: 30px;
    line-height: 35px;
  }

  .partner-logo {
    min-height: 30px;
  }
}

@media (max-width: 768px) {

  .trusted-text {
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 1rem;
  }

  .partner-logo {
    height: 24px;
  }
  
}

@media (max-width: 480px) {
  .partner-logo {
    height: 20px;
  }
  .partners-section .partner-div {
  padding: 30px;
  padding-bottom: 0px;
}
}


/* === How It Works - Base Styles === */
.how-it-works {
  padding: 200px 100px;
  background-color: #f5f5f5;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0px;
  color: #101320;
}

.how-it-works-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
}

.i_step, .b_step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 21px;
  color: #fff;
}

.i_step {
  background: #FF511A;
}

.b_step {
  background: #C73000;
}

.step-number {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 25px;
  flex-shrink: 0;
}

.how-it-works-box img {
  height: 120px;
  object-fit: contain;
  margin-left: auto;
}

.how-it-works-box h6 {
  color: #B02A00;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
}

.how-it-works-box p {
  display: flex;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 0;
}

/* ============ Mobile: up to 575px ============ */
@media (max-width: 575px) {
  .how-it-works {
    padding: 80px 10px;
  }

  .section-title h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .how-it-works-box {
    padding: 15px;
  }

  .step-number {
    font-size: 22px;
  }

  .how-it-works-box h6 {
    font-size: 18px;
    line-height: 26px;
  }

  .how-it-works-box p {
    font-size: 14px;
    line-height: 20px;
  }

  .how-it-works-box img {
    height: 80px;
  }
}

/* ============ Small Tablets: 576px–767px ============ */
@media (min-width: 576px) and (max-width: 767px) {
  .how-it-works {
    padding: 100px 30px;
  }

  .section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .how-it-works-box {
    padding: 25px;
  }

  .step-number {
    font-size: 24px;
  }

  .how-it-works-box h6 {
    font-size: 20px;
  }

  .how-it-works-box p {
    font-size: 16px;
  }

  .how-it-works-box img {
    height: 90px;
  }
}

/* ============ Tablets: 768px–1023px ============ */
@media (min-width: 768px) and (max-width: 1023px) {
  .how-it-works {
    padding: 120px 50px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .how-it-works-box {
    padding: 30px;
  }

  .step-number {
    font-size: 26px;
  }

  .how-it-works-box h6 {
    font-size: 22px;
  }

  .how-it-works-box p {
    font-size: 22px;
  }

  .how-it-works-box img {
    height: 100px;
  }
}

/* ============ Medium Devices: 1024px–1199px ============ */
@media (min-width: 1024px) and (max-width: 1199px) {
  .how-it-works {
    padding: 100px 0px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .step-number {
    font-size: 28px;
  }

  .how-it-works-box{
        padding: 30px
  }

  .how-it-works-box h6 {
    font-size: 23px;
  }

  .how-it-works-box p {
            font-size: 18px;
        line-height: 22px;
  }

  .how-it-works-box img {
    height: 110px;
  }
}

/* ============ Large Desktops: 1200px–1399px ============ */
@media (min-width: 1200px) and (max-width: 1399px) {
  .how-it-works {
    padding: 180px 90px;
  }

  .section-title h2 {
    font-size: 44px;
  }

  .how-it-works-box {
    padding: 36px;
  }

  .step-number {
    font-size: 30px;
  }

  .how-it-works-box h6 {
    font-size: 24px;
  }

  .how-it-works-box p {
    font-size: 21px;
  }
}

/* ============ Extra Large Desktops: 1400px+ ============ */
@media (min-width: 1400px) {
  .how-it-works {
    padding: 200px 100px;
  }

  .section-title h2 {
    font-size: 45px;
  }

  .how-it-works-box {
    padding: 40px;
  }

  .step-number {
    font-size: 30px;
  }

  .how-it-works-box h6 {
    font-size: 24px;
  }

  .how-it-works-box p {
    font-size: 22px;
  }

  .how-it-works-box img {
    height: 120px;
  }
}

/* --- Section 9: CTA Styles --- */
.cta-section {
  background-image: url('../images/cta.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #000;
  text-align: center;
}

.cta-heading {
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -1.2px;
  color: #05090D;
}

/* --- Responsive Typography and Padding --- */
@media (max-width: 992px) {
  .cta-heading {
    font-size: 36px;
    line-height: 48px;
  }

  .cta-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 28px;
    line-height: 40px;
  }

  .cta-section .btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .cta-heading {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.5px;
  }

  .cta-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .cta-section .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px;
    font-size: 15px;
  }
}


/* ===top creators ==== */

.top-creators {
  background-image: url('../images/Top\ Creators\ &\ Real\ Campaigns\ That\ Work.jpg');
  min-height: 120vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.top-creators .custom-container{
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 150px;
  margin-right: 150px;

}

.top-creators h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0px;
  text-align: center;

}

.creator-card {
  background-color: #4A201D;
  min-width: 300px;
  border-radius: 16px;
  color: #fff;
  transition: 0.3s;
  padding-top: 30px !important;
  padding-bottom: 8px !important;
}

.creator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.creator-img {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  object-fit: cover;
}

.handle {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  text-align: center;
  color: #FFFFFF;

}

.stats {
  min-width: 140px;
  background-color: #311B1E;
  padding: 20px;
  border-radius: 6px;
  text-align: left;
}

.stats span {
  font-weight: 400;
  font-size: 30px;
  /* font-size: 32px; */
  line-height: 30px;
  letter-spacing: 0px;
  color: #FFFFFF;

}

.stats small {
  font-weight: 500;
  font-size: 16px;
  /* font-size: 20px; */
  line-height: 30px;
  letter-spacing: 0px;
  color: #FFFFFF;

}

.btn-orange {
  background-color: #FF511A;
  color: white;
  padding: 10px 35px;
  border-radius: 99px;
  font-weight: 500;
  /* transition: background 0.3s; */
}


@media (max-width: 1366px) {
  .top-creators {
    min-height: 50vh;
    padding: 60px 20px;
    background-position: center;
  }

  .top-creators h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .creator-card {
    min-width: 240px;
    padding: 10px !important;
  }

  .stats {
    min-width: 105px;
    padding: 10px;
  }

  .stats span {
    font-size: 20px;
  }

  .stats small {
    font-size: 14px;
  }
}

@media (max-width: 1025px) {
  .top-creators{
        min-height: 100vh;
  }
  .top-creators h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .creator-card {
    min-width: 240px;
    margin-bottom: 20px;
  }

  .creator-img {
    width: 50px;
    height: 50px;
  }

  .stats {
    width: 110px;
    padding: 14px;
  }

  .stats span {
    font-size: 20px;
  }

  .stats small {
    font-size: 13px;
  }

  .btn-orange {
    padding: 8px 28px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .top-creators {
    padding: 50px 15px;
    background-size: cover;
    background-position: center;
    height: auto;
  }

  .top-creators h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .creator-card {
    min-width: 100%;
    margin-bottom: 20px;
    padding: 30px 24px !important;
  }

  .stats {
    width: 100%;
    padding: 12px;
    text-align: center;
  }

  .stats span {
    font-size: 22px;
  }

  .stats small {
    font-size: 12px;
  }

  .btn-orange {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .top-creators h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .creator-img {
    width: 45px;
    height: 45px;
  }

  .stats span {
    font-size: 20px;
  }

  .stats small {
    font-size: 11px;
  }

  .btn-orange {
    font-size: 14px;
    padding: 8px 18px;
  }
}


/* why myliras  */
.why-myliras{
  padding: 100px 0px;
}
.why-myliras h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 80px;
  letter-spacing: 0px;
  text-align: center;
  color: #101320;
}

.card-box {
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  height: 100%;
  width: 95%;
}

.featured {
  background-color: #FF511A;
}

.featured .list-unstyled {
  background-color: #EF4915;
  padding: 40px 25px;
  border-radius: 6px;
}

.benefits {
  background-color: #C73000;
}

.benefits .list-unstyled {
  background-color: #B02A00;
  padding: 40px 25px;
  border-radius: 6px;
}

.card-box h5 {
  font-weight: 600;
}

.featured ul li {
font-weight: 400;
font-size: 20px;
line-height: 25px;
letter-spacing: 0%;
  background: #FF511A;
  color: #fff;
  padding: 9px 24px;
  border-radius: 25px;
  margin-bottom: 25px;
  width: auto;
  display: inline-block;
}
.benefits ul li {
font-weight: 400;
font-size: 20px;
line-height: 25px;
letter-spacing: 0%;
  background: #C73000;
  color: #fff;
  padding: 9px 24px;
  border-radius: 25px;
  margin-bottom: 25px;
  width: auto;
  display: inline-block;
}

@media ( max-width: 1180px) {
      .why-myliras{
        padding: 60px 20px;
      }  
}

/* Tablet View */
@media (max-width: 768px) {
  .why-myliras {
    padding: 60px 0px;
  }

  .why-myliras h2 {
    font-size: 32px;
    line-height: 50px;
  }

  .card-box {
    padding: 20px;
    width: 96%;
  }

  .featured .list-unstyled,
  .benefits .list-unstyled {
    padding: 30px 20px;
  }

  .featured ul li,
  .benefits ul li {
    font-size: 16px;
    line-height: 22px;
    padding: 8px 20px;
    margin-bottom: 15px;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .why-myliras {
    padding: 40px 20px;
  }

  .why-myliras h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .card-box {
    padding: 15px;
    width: 100%;
  }

  .featured .list-unstyled,
  .benefits .list-unstyled {
    padding: 25px 15px;
  }

  .featured ul li,
  .benefits ul li {
    font-size: 14px;
    line-height: 20px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }
}
/* testimonial  */
.testimonial-section {
  background-image: url('../images/Testimonials.jpg');
   min-height: 900px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* overflow: visible !important; */
}
.testimonial-section p{
font-weight: 400;
font-size: 18px;
line-height: 32px;
letter-spacing: 0%;
text-align: center;
text-transform: capitalize;
color: #0A102A;
}
.testimonial-section .user{
  width: 64px;
height: 64px;
border-radius: 99px;
margin: auto;
}
.testimonial-section .quote{
  width: 30px;
height: 24px;
}
.testimonial-section strong{
font-weight: 600;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;

}
.testimonial-section small{
font-weight: 400;
font-size: 14px;
line-height: 25px;
letter-spacing: 0%;

}
.star img{
  width: 26px !important;
height: 25px;
margin: 2px;
}

.quote-icon {
  width: 94px;
  height: 94px;
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.08);
}

.z-1 {
  z-index: 1;
}

.z-3 {
  z-index: 3 !important;
  /* Ensure quote icon is on top */
}

/* .owl-stage-outer {
  overflow: visible !important;
} */


.text-orange {
  color: #ff5a2c;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.owl-nav button {
  background: #ff5a2c !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 20px !important;
  line-height: 1;
}

.owl-dots {
  margin-top: 20px;
}

.btn-nav {
  width: 45px;
  height: 45px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bg-orange {
  background-color: #ff5a2c !important;
}

.custom-nav {
  /* position: absolute; */
  /* top: 50%; */
  width: 100%;
  padding: 0 10px;
  /* transform: translateY(-50%); */
  z-index: 1;
}
.owl-stage-outer{
  padding: 50px 0;

}

/* Tablet View */
@media (max-width: 768px) {
  .testimonial-section p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 20px; /* Optional: adds side padding for better spacing */
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .testimonial-section{
        min-height: 650px;
  }
  .testimonial-section p {
    font-size: 14px;
    line-height: 24px;
    padding: 0 15px; /* Optional: reduce padding further for small screens */
  }

  .owl-stage-outer {
    padding: 30px 0;
}
}

/* ---value----- */


/* === Tablets (768px to 1199px) === */
@media (min-width: 768px) and (max-width: 1199px) {

  .icon {
    margin-bottom: 0;
  }
}

/* === Mobile (max-width: 576px) === */
@media (max-width: 576px) {
  .title {
    font-size: 13px;
  }
}

/* === iPad Air Specific (Portrait & Landscape) === */
@media screen and (width: 820px), screen and (width: 1180px) {

  .icon {
    margin-bottom: 0;
  }
}

/* ========footer============= */
 .video-bg {
      position: relative;
      min-height: 40vh;
      /* height: 1000px; */
      overflow: hidden;
      color: white;
      background-image: url('../images/footerbg.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
        }

    .video-bg h1{
font-weight: 400;
    font-size: 65px;
    line-height: 70px;
    letter-spacing: -2px;
text-align: center;
margin-top: 150px;
margin-bottom: 24px;
    }
    .video-bg p{
      color: #5E5E5E;
font-weight: 400;
font-size: 22px;
line-height: 33px;
letter-spacing: 0%;
text-align: center;

    }

    .content-overlay {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
      text-align: center;
      padding: 0px 20px 0px 20px;
    }

    .cta-button {
      margin-top: 20px;
      background: #FF511A;
      color: white;
      padding: 10px 35px;
      border: none;
      border-radius: 50px;
    }

    .footer-links a{
font-weight: 500;
font-size: 16px;
line-height: 30px;
letter-spacing: 0.25px;
vertical-align: middle;
      margin-top: 40px;
      color: #FFFFFF;
      text-decoration: none;
    }
    .footer-links .contactid{
      color: #FFFFFF;
font-weight: 500;
font-size: 18px;
line-height: 33px;
letter-spacing: 0%;
vertical-align: middle;

    }

    .social-icons{
      margin-bottom: 60px;
    }
    .social-icons img {
      margin: 0 8px;
    }

    .footer-bottom {
      background-color: #161616;
font-weight: 500;
font-size: 18px;
line-height: 33px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
      padding: 20px;
      color: #FFFFFF;
    }


 /* ====================== MEDIA QUERIES ====================== */

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .video-bg {
    height: auto;
    padding: 60px 0;
    min-height: 50vh;
  }

  .video-bg h1 {
    font-size: 28px;
    line-height: 38px;
    margin-top: 50px;
    margin-bottom: 16px;
  }

  .video-bg p {
    font-size: 16px;
    line-height: 24px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }

  .footer-links a,
  .footer-links .contactid {
    font-size: 14px;
    line-height: 26px;
  }

  .footer-bottom {
    font-size: 14px;
    line-height: 24px;
    padding: 15px;
  }

  .social-icons {
    margin-bottom: 30px;
  }
}

/* Mini Tablet (577px – 767px) */
@media (min-width: 577px) and (max-width: 767px) {
  .video-bg{
    min-height: 50vh;
  }
  .video-bg h1 {
    font-size: 36px;
    line-height: 46px;
    margin-top: 100px;
  }

  .video-bg p {
    font-size: 18px;
    line-height: 28px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 15px;
  }

  .footer-links a,
  .footer-links .contactid {
    font-size: 15px;
  }
}

/* iPad Air (768px – 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .video-bg{
    min-height: 50vh;
  }
  .video-bg h1 {
    font-size: 42px;
    line-height: 52px;
    margin-top: 150px;
  }

  .video-bg p {
    font-size: 20px;
    line-height: 30px;
  }

  .cta-button {
    padding: 8px 32px;
    font-size: 16px;
  }

  .footer-links a,
  .footer-links .contactid {
    font-size: 16px;
  }
}

/* iPad Pro (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .video-bg{
    min-height: 50vh;
  }
  .video-bg h1 {
    font-size: 50px;
    line-height: 60px;
  }

  .video-bg p {
    font-size: 21px;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 17px;
  }
}

/* ---=======ABOUT US=====++++++++ */
.about-hero {
  background-image: url('../images/about\ hero\ section.jpg');
  min-height: 80vh;
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-header {
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
}

.about-hero p {
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  width: 70%;
  margin: 0 auto;
}

/* === Small Mobiles (320px - 480px) === */
@media (min-width: 320px) and (max-width: 480px) {
  .about-hero {
    min-height: 100vh;
    background-position: center;
  }

  .hero-header {
          font-size: 35px;
        line-height: 40px;
        width: 100%;
    } 

  .about-hero p {
    font-size: 16px;
    line-height: 1.7;
    width: 90%;
  }
}

/* === Large Mobiles (481px - 767px) === */
@media (min-width: 481px) and (max-width: 767px) {
  .about-hero {
    min-height: 65vh;
    background-position: center;
  }

  .hero-header {
    font-size: 30px;
    line-height: 36px;
  }

  .about-hero p {
    font-size: 16px;
    line-height: 26px;
    width: 90%;
  }
}

/* === Tablets (768px - 991px) === */
@media (min-width: 768px) and (max-width: 991px) {
  .about-hero {
    min-height: 70vh;
    background-position: center;
  }

  .hero-header {
    font-size: 36px;
    line-height: 44px;
  }

  .about-hero p {
    font-size: 18px;
    line-height: 28px;
    width: 85%;
  }
}

/* === Small Laptops (992px - 1199px) === */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-header {
    font-size: 40px;
    line-height: 48px;
  }

  .about-hero p {
    font-size: 19px;
    line-height: 32px;
    width: 80%;
  }
}

/* === Laptops (1200px - 1399px) === */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-header {
    font-size: 44px;
    line-height: 52px;
  }

  .about-hero p {
    font-size: 20px;
    line-height: 34px;
    width: 75%;
  }
}

/* === Large Desktops (1400px - 1599px) === */
@media (min-width: 1400px) and (max-width: 1599px) {
  .hero-header {
    font-size: 52px;
    line-height: 56px;
  }

  .about-hero p {
    font-size: 20px;
    line-height: 29px;
    width: 70%;
  }
}

/* === Ultra-Wide Screens (1600px and up) === */
@media (min-width: 1600px) {
  .hero-header {
    font-size: 75px;
    line-height: 80px;
  }

  .about-hero p {
    font-size: 24px;
    line-height: 38px;
    width: 85%;
  }

  .about-hero {
    min-height: 100vh;
    background-size: cover;
  }
}

/* === iPad Pro Portrait (1024 x 1366) === */
@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 1366px) {
  .about-hero {
    min-height: 50vh;
    background-position: top center;
  }

  .hero-header {
    font-size: 42px;
  }

  .about-hero p {
    font-size: 20px;
    width: 50%;
  }
}



/* === Section 2 Base === */
.who-we-are {
  min-height: 70vh;
  background-image: url('../images/Who\ We\ Are.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: start;
  aspect-ratio: 16/9;
}

.who-we-are h1 {
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: 0px;
  text-align: center;
}

.who-we-are p {
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

/* === Small Mobiles (320px - 480px) === */
@media (min-width: 320px) and (max-width: 480px) {
  .who-we-are {
    min-height: 60vh;
    padding-top: 10px;
    aspect-ratio: auto;
    background-size: cover;
    border-radius: 16px;
  }

  .who-we-are h1 {
            font-size: 40px;
        line-height: 70px;
  }

  .who-we-are p {
    font-size: 16px;
    line-height: 1.7;
    width: 80%;
    margin: 0px;
  }
}

/* === Large Mobiles (481px - 767px) === */
@media (min-width: 481px) and (max-width: 767px) {
  .who-we-are {
    padding-top: 60px;
    background-size: cover;
  }

  .who-we-are h1 {
    font-size: 30px;
    line-height: 36px;
    margin-top: 120px;
  }

  .who-we-are p {
    font-size: 16px;
    line-height: 26px;
    width: 90%;
  }
}

/* === Tablets (768px - 991px) === */
@media (min-width: 768px) and (max-width: 991px) {
  .who-we-are {
    min-height: 30vh;
  }

  .who-we-are h1 {
    font-size: 34px;
    line-height: 44px;
  }

      .who-we-are p {
        font-size: 14px;
        line-height: 20px;
        width: 65%;
    }
}

/* === Small Laptops (992px - 1199px) === */
@media (min-width: 992px) and (max-width: 1199px) {
  .who-we-are {
    min-height: 35vh;
  }

  .who-we-are h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .who-we-are p {
    font-size: 19px;
    line-height: 32px;
    width: 80%;
  }
}

/* === Laptops (1200px - 1399px) === */
@media (min-width: 1200px) and (max-width: 1399px) {
  .who-we-are h1 {
    font-size: 44px;
    line-height: 52px;
  }

  .who-we-are p {
    font-size: 20px;
    line-height: 34px;
    width: 75%;
  }
}

/* === Large Desktops (1400px - 1599px) === */
@media (min-width: 1400px) and (max-width: 1599px) {
  .who-we-are h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .who-we-are p {
    font-size: 20px;
        line-height: 29px;
        width: 70%;
  }
}

/* === Ultra-Wide Screens (1600px and up) === */
@media (min-width: 1600px) {
  .who-we-are h1 {
    font-size: 52px;
    line-height: 62px;
  }

  .who-we-are p {
    font-size: 24px;
    line-height: 38px;
    width: 58%;
  }

  .who-we-are {
    min-height: 80vh;
    background-size: contain;
  }
}

/* === iPad Pro (1024 x 1366 Portrait) === */
@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 1366px) {
  .who-we-are {
    min-height: 50vh;
    /* padding-top: 120px; */
    background-position: top center;
  }

  .who-we-are h1 {
    font-size: 42px;
    margin-top: 0px;
  }

  .who-we-are p {
    font-size: 20px;
    width: 50%;
  }
}

/* ===== Default Styles (Desktops ≥1400px) ===== */
.info-box {
  background-color: #F5F5F5;
  text-align: left;
  padding: 30px;
}

.info-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #000;
}

.icon {
  width: 65px;
  height: 65px;
  border-radius: 6px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.help-text h4 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -1.2px;
  color: #000;
}

.help-text p {
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -1.2px;
  color: #05090D;
}

.help-logo img {
  width: 266px;
  height: 116px;
}
/* ===== XXL Desktops (1400px - 1599px) ===== */
@media (min-width: 1400px) and (max-width: 1599px) {
  .info-box{
    padding: 20px;
  }
  .info-text {
    font-size: 18px;
    line-height: 28px;
  }

  .help-text h4,
  .help-text p {
    font-size: 46px;
    line-height: 58px;
  }

  .help-logo img {
    width: 260px;
    height: auto;
  }
}

/* ===== Ultra-Wide Screens (1600px and above) ===== */
@media (min-width: 1600px) {
  .info-box{
    padding: 40px;
  }
  .info-text {
    font-size: 22px;
    line-height: 30px;
  }

  .help-text h4,
  .help-text p {
    font-size: 50px;
    line-height: 64px;
  }

  .help-logo img {
    width: 280px;
    height: auto;
  }
}


/* ===== Large Desktops (1200px - 1399px) ===== */
@media (min-width: 1200px) and (max-width: 1399px) {
  .info-text {
    font-size: 18px;
    line-height: 26px;
  }

  .help-text h4,
  .help-text p {
    font-size: 42px;
    line-height: 54px;
  }

  .help-logo img {
    width: 230px;
    height: auto;
  }
}


/* ===== Laptops (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
  .info-box {
    padding: 30px !important;
  }

  .info-text {
    font-size: 16px;
    line-height: 24px;
  }

  .help-text h4,
  .help-text p {
    font-size: 36px;
    line-height: 48px;
  }

  .icon {
    width: 55px;
    height: 55px;
  }

  .help-logo img {
    width: 200px;
    height: auto;
  }
}


/* ===== Tablets (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
  .info-box {
    padding: 25px !important;
  }

  .info-text {
    font-size: 15px;
    line-height: 22px;
  }

  .help-text h4,
  .help-text p {
    font-size: 32px;
    line-height: 44px;
  }

  .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
  }

  .help-logo img {
    width: 180px;
    height: auto;
  }
}


/* ===== Large Mobiles (481px - 767px) ===== */
@media (min-width: 481px) and (max-width: 767px) {
  .info-box {
    padding: 20px !important;
  }

  .info-text {
    font-size: 14px;
    line-height: 20px;
  }

  .help-text h4,
  .help-text p {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
  }

  .icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
  }

  .help-logo img {
    width: 140px;
    height: auto;
  }
}
/* ===== iPhone 14 Pro Max (430px width) ===== */
@media (min-width: 425px) and (max-width: 440px) {
  .info-outer {
    margin-left: 0.5rem !important; /* mx-2 equivalent in Bootstrap = 0.5rem */
    margin-right: 0.5rem !important;
  }
}

/* ===== Small Mobiles (320px - 480px) ===== */

@media (min-width: 320px) and (max-width: 480px) {
  .info-box {
    padding: 16px !important;
            display: flex;
        flex-direction: column;
        justify-content: space-between;
  }

  .info-text {
    font-size: 14px;
    line-height: 20px;
  }

  .help-text h4,
  .help-text p {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
  }

  .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .help-logo img {
    width: 120px;
    height: auto;
  }
}


/* === Base Styles === */

.about-work {
  background-image: url('../images/Top\ Creators\ &\ Real\ Campaigns\ That\ Work.jpg');
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 100px;
}

.glow-card .img-div {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: -30%;
}

.glow-card .img-div img {
  width: 100%;
  max-width: 1220px;
  height: 100%;
}

.how-it-works-about h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  text-align: center;
  /* margin-top: 100px; */
  color: #101320;
}

.how-it-works-about p {
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
  color: #24171E;
  width: 75%;
  margin: 0 auto;
  /* margin-bottom: 40px; */
}

/* === Small Mobile (320px - 480px) === */
@media (min-width: 320px) and (max-width: 389px) {
  .boy-div{
    min-height: 60vh;
  }
  .about-work {
    background-size: cover;
    min-height: 50vh;
    padding-top: 50px;
    
  }

  .how-it-works-about h2 {
    font-size: 26px;
    line-height: 32px;
    margin-top: 0px;
  }

  .how-it-works-about p {
    font-size: 14px;
    line-height: 22px;
    width: 95%;
  }

  .glow-card .img-div {
    position: static;
    margin-top: 30px;
  }

  .glow-card .img-div img {
    min-width: 100%;
    height: auto;
            position: absolute;
        bottom: -25%;
        right: 0%;
    }
  }


/* === Large Mobile (481px - 767px) === */
@media (min-width: 390px) and (max-width: 767px) {
  .about-work {
    background-size: cover;
    min-height: 46vh;
    padding-top: 70px;
    margin-top: 60px;
  }

  .how-it-works-about h2 {
    font-size: 30px;
    line-height: 36px;
    
  }

  .how-it-works-about p {
    font-size: 16px;
    line-height: 26px;
    width: 90%;
  }

  .glow-card .img-div {
    position: static;
    margin-top: 40px;
  }

  .glow-card .img-div img {
    min-width: 100%;
    height: auto;
     position: absolute;
        bottom: -28%;
        right: 0%;
  }
}

/* === Small Tablet (768px - 991px) === */
@media (min-width: 768px) and (max-width: 991px) {
  .about-work {
    min-height: 50vh;
    background-size: cover;
    padding-top: 80px;
    margin-bottom: 150px;
  }

  .how-it-works-about h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0px;
  }

      .how-it-works-about p {
        font-size: 16px;
        line-height: 28px;
        width: 90%;
    }

  .glow-card .img-div {
    position: absolute;
    bottom: -150px;
    margin-top: 50px;
  }

  .glow-card .img-div img {
    width: 100%;
    height: auto;
  }
}

/* === Large Tablet / Small Laptop (992px - 1199px) === */
@media (min-width: 992px) and (max-width: 1199px) {
      .boy-div{
  min-height: 140vh;
}
  .about-work {
    min-height: 200vh;
    background-size: cover;
    padding-top: 60px;
  }
  .how-it-works-about h2 {
    font-size: 40px;
    line-height: 48px;
    margin-top: 120px;
  }

  .how-it-works-about p {
    font-size: 19px;
    line-height: 32px;
    width: 80%;
  }

  .glow-card .img-div img {
    width: 100%;
    height: auto;
  }
}

/* === Laptops (1200px - 1399px) === */
@media (min-width: 1200px) and (max-width: 1399px) {
    .boy-div{
  min-height: 140vh;
}
  .about-work {
    min-height: 140vh;
    background-size: cover;
    padding-top: 60px;
  }
  .how-it-works-about h2 {
    font-size: 44px;
    line-height: 50px;
  }

  .how-it-works-about p {
    font-size: 20px;
    width: 75%;
  }
  /* .glow-card .img-div img {
    width: 100%;
    height: auto;
  } */
  
}

/* === Large Desktops (1400px and up) === */
@media (min-width: 1400px) {
    .boy-div{
  min-height: 150vh;
}
  .about-work {
    min-height: 120vh;
    background-size: cover;
    padding-top: 80px;
  }
  .how-it-works-about h2 {
    font-size: 48px;
    line-height: 56px;
    margin-top: 0px;
  }

  .how-it-works-about p {
    font-size: 22px;
    line-height: 35px;
    width: 70%;
  }

  /* .glow-card .img-div img {
    min-width: 1520px;
    min-height: 851px;
  } */
}
/* === Ultra-Wide Screens (1600px and up) === */
@media (min-width: 1600px) {
  .boy-div {
    min-height: 160vh;
  }

  .about-work {
    min-height: 100vh;
    background-size: cover;
    padding-top: 80px;
  }

  .how-it-works-about h2 {
    font-size: 54px;
    line-height: 64px;
    margin-top: 20px;
  }

  .how-it-works-about p {
    font-size: 24px;
    line-height: 38px;
    width: 65%;
  }

  .glow-card .img-div img {
    max-width: 1520px;
    height: auto;
  }
}


/* Custom Padding for Vertical Centered Blocks */
.custom-padding-right {
  padding: 150px 0px 150px 150px;
}
.custom-padding-left {
  padding: 150px 150px 150px 0px;
}

/* Default Styling */
.info-row{
  margin-top: 50px;
}
.info-row h2 {
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
}

.info-row p {
  font-size: 20px;
  line-height: 32px;
}

@media (max-width: 1399px) {
  .info-row h2 { font-size: 40px; line-height: 48px; }
  .info-row p { font-size: 18px; line-height: 30px; }
  /* .custom-padding { padding: 120px 0; } */
  .custom-padding-right {
  padding: 120px 0px 120px 120px;
}
.custom-padding-left {
  padding: 120px 120px 120px 0px;
}
}

@media (max-width: 1199px) {
  .info-row h2 { font-size: 36px; line-height: 44px; }
  .info-row p { font-size: 17px; line-height: 28px; }
  /* .custom-padding { padding: 100px 0; } */
  .custom-padding-right {
  padding: 100px 0px 100px 100px;
}
.custom-padding-left {
  padding: 100px 100px 100px 0px;
}
}

@media (max-width: 991px) {
  .info-row h2 { font-size: 32px; line-height: 40px; text-align: start; }
  .info-row p { font-size: 16px; line-height: 26px; text-align: start; }
  /* .custom-padding { padding: 80px 0; } */
  .custom-padding-right {
  padding: 40px 20px 40px 50px;
}
.custom-padding-left {
  padding: 40px 40px 40px 10px;
}
}

@media (max-width: 767px) {
  
  .info-row h2 { font-size: 28px; line-height: 36px; }
  .info-row p { font-size: 15px; line-height: 24px; }
  /* .custom-padding { padding: 60px 0; } */
  .custom-padding-right {
  padding: 60px 0px 60px 60px;
}
.custom-padding-left {
  padding: 60px 60px 60px 0px;
}
}

@media (max-width: 575px) {
  .info-row{
  margin-top: 100px;
}
  .info-row h2 { font-size: 24px; line-height: 32px; text-align: center; }
  .info-row p { font-size: 14px; line-height: 22px; text-align: center; }
  /* .custom-padding { padding: 40px 0; } */
  .custom-padding-right {
  padding: 30px;
}
.custom-padding-left {
  padding: 30px;
}
}

@media (max-width: 376px) {
  .info-row{
    margin-top: 20px;
  }
}

.why-choose-us {
  background-image: url('../images/Why\ Choose\ MyLiras_.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 20px;
  text-align: center;
}

/* === Responsive Tweaks for Background Image === */

/* Extra Large Screens (≥1400px) */
@media (min-width: 1400px) {
  .why-choose-us {
    background-size: contain;
    background-position: center center;
  }
}

/* Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
  .why-choose-us {
    background-size: contain;
    background-position: center;
  }
}

/* Laptops/Tablets Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .why-choose-us {
    background-size: cover;
    background-position: top center;
  }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) {
  .why-choose-us {
    background-size: cover;
    background-position: top center;
    padding: 80px 15px;
  }
}

/* Large Mobiles (576px - 767px) */
@media (max-width: 767px) {

  .why-choose-us {
    background-size: cover;
    background-position: center top;
    background-image: url('../images/mobilebg.svg');
  }
}

/* Small Mobiles (<576px) */
@media (max-width: 575px) {
  .why-choose-us {
    background-image: url('../images/mobilebg.svg');
    min-height: 50vh;
    background-size: cover;
    background-position: center top;
    padding: 60px 10px;
  }
}

/* iPad Pro (1020px - 1050px) */
@media (min-width: 1020px) and (max-width: 1050px) {
  .why-choose-us {
    background-size: contain;
    background-position: top center;
  }
}


.why-choose-us h1 {
  font-weight: 700;
  font-size: 75px;
  line-height: 80px;
  letter-spacing: 0;
  color: #101320;
  margin-bottom: 30px;
}

.choose-pill {
  background-color: white;
  border-radius: 50px;
  padding: 27px 35px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  width: auto;
  transition: all 0.3s ease;
}

.choose-pill:hover {
  background-color: #ff511a;
  color: white;
  transform: scale(1.03);
}

/* === Responsive Tweaks === */

/* Extra Large Screens (≥1400px) */
@media (min-width: 1400px) {
  .why-choose-us h1 {
    font-size: 75px;
    line-height: 85px;
  }
  .choose-pill {
  background-color: white;
  border-radius: 50px;
  padding: 25px 23px;
  font-weight: 700;
  font-size: 20px;
}
}

/* Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
  .why-choose-us h1 {
    font-size: 65px;
    line-height: 75px;
  }
}

/* Laptops/Tablets Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .why-choose-us h1 {
    font-size: 55px;
    line-height: 65px;
  }

  .choose-pill {
    padding: 20px 30px;
    font-size: 18px;
  }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) {
      .why-choose-us {
        padding: 40px 15px;
        min-height: 10vh;
        border-radius: 25px;
    }

  .why-choose-us h1 {
            font-size: 35px;
        line-height: 45px;
  }

  .choose-pill {
            padding: 10px 30px;
        font-size: 15px;
        width: 100%;
  }
}

/* Large Mobiles (576px - 767px) */
@media (max-width: 767px) {
  .why-choose-us h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .choose-pill {
    padding: 15px 30px;
        width: 100%;
        font-size: 18px;
        line-height: 24px;
  }
}

/* Small Mobiles (<576px) */
@media (max-width: 575px) {
  .why-choose-us {
    padding: 60px 10px;
  }

  .why-choose-us h1 {
    font-size: 28px;
    line-height: 38px;
  }

      .choose-pill {
        padding: 18px 36px;
        width: 100%;
        font-size: 18px;
        line-height: 24px;
    }
    
}

/* Specific for iPad Pro (1024px width) */
@media (min-width: 1020px) and (max-width: 1050px) {
  .why-choose-us h1 {
    font-size: 52px;
    line-height: 62px;
  }

  .choose-pill {
    padding: 20px 30px;
    font-size: 17px;
  }
}

.help-text h4 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: -1.2px;
  margin-bottom: 30px;
  color: #05090D;
}

.help-text p {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: -1.2px;
  color: #05090D;
  margin: 0;
}

.help-text a {
  color: #05090D;
  text-decoration: underline;
}

.help-logo img {
  max-width: 260px;
}

/* ------------ Responsive Media Queries ------------ */

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {

  .help-text h4,
  .help-text p {
    font-size: 32px;
    line-height: 40px;
  }

      .help-logo img {
        width: 200px;
        height: auto;
    }
}

/* Large Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {

  .help-text h4,
  .help-text p {
    font-size: 28px;
    line-height: 40px;
  }

  .help-logo img {
    max-width: 140px;
  }
}

/* Small Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .help-text h4,
  .help-text p {
            font-size: 31px;
        line-height: 35px;
  }

  .help-logo img {
    max-width: 180px;
  }
}

/* Large Tablet / Small Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .help-text h4,
  .help-text p {
    font-size: 44px;
    line-height: 56px;
  }

  .help-logo img {
    max-width: 220px;
  }
}

/* Desktops (1200px and up) */
@media (min-width: 1200px) {
      .help-text h4, .help-text p {
        font-size: 34px;
        line-height: 50px;
    }

  .help-logo img {
    max-width: 260px;
  }
}
.custom-container {
  margin-left: 200px;
  margin-right: 200px;
  /* width: 80%; */
}

/* Large Laptops (1200px - 1399px) */
@media (max-width: 1399px) {
  .custom-container {
    margin-left: 180px;
    margin-right: 180px;
  }
}

/* Tablets and Small Laptops (992px - 1199px) */
@media (max-width: 1199px) {
  .custom-container {
    margin-left: 80px;
    margin-right: 80px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .custom-container {
    margin-left: 60px;
    margin-right: 60px;
  }
}

/* Large Mobiles (576px - 767px) */
@media (max-width: 767px) {
  .custom-container {
    margin-left: 30px;
    margin-right: 30px;
  }
}

/* Small Mobiles (up to 575px) */
@media (max-width: 575px) {
  .custom-container {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.custom-container-sm {
  margin-left: 40px;
  margin-right: 40px;
}

/* Small tablets (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .custom-container-sm {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Large mobile devices (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .custom-container-sm {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Small mobile devices (<576px) */
@media (max-width: 575px) {
  .custom-container-sm {
    margin-left: 10px;
    margin-right: 10px;
  }
}



/* ==============value rounded img=============== */
 .value-div {
            min-height: 10vh;
            /* background-color: antiquewhite; */
        }

        .windmill-section {
            background: url('../images/valuefullimg.jpg') no-repeat center center/cover;
            position: relative;
            height: 100vh;
            overflow: hidden;
            border-radius: 16px;
        }

        .overlay-box {
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: rgb(255, 255, 255);
            width: 60%;
            height: 50%;
            border-top-left-radius: 16px;
            z-index: 2;
            display: flex;
        }

        .overlay-top-right {
            position: absolute;
            top: -50px;
            right: 0px;

            background-color: transparent;
            box-shadow: 20px 20px 0 white;
            width: 50px;
            height: 50px;
            border-radius: 16px;
            /* border-bottom-right-radius: 0px ; */
            /* border: 1px solid rgb(255, 255, 255); */
            z-index: 2;
        }

        .overlay-top-bottom {
            position: absolute;
            left: -50px;
            bottom: 0px;

            background-color: transparent;
            box-shadow: 20px 20px 0 white;
            width: 50px;
            height: 50px;
            border-radius: 16px;
            /* border-bottom-right-radius: 0px ; */
            /* border: 1px solid rgb(255, 255, 255); */
            z-index: 2;
        }


        @media (max-width: 768px) {
            .overlay-box {
                width: 100%;
                height: 50%;
                border-top-left-radius: 1.5rem;
                border-top-right-radius: 1.5rem;
            }

            .overlay-top-right {
                width: 100%;
                height: 50%;
                border-bottom-left-radius: 1.5rem;
                border-bottom-right-radius: 1.5rem;
            }
        }

        .value-card {
            height: 100%;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
        }

        .value-card .title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.2;
        }

        .value-card .icon {
            background-color: #FFFFFF;
            height: 60px;
            width: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 💻 XXL Desktops - width > 1600px */
        @media (min-width: 1601px) {
            .windmill-section {
                /* height: 100%; */
                height: 68vh;
            }

            .overlay-box {
                width: 50%;
                height: 53%;
            }
            

            .value-card .title {
                font-size: 16px;
            }
        }

        /* 🖥️ Large Desktops - 1400px to 1600px */
        @media (min-width: 1400px) and (max-width: 1600px) {
            .windmill-section {
                height: 100%;
                /* 577px equivalent */
            }

            .overlay-box {
                width: 52%;
        height: 53%;
            }
        }

        /* 🧑‍💻 Medium Desktops - 1200px to 1399px */
        @media (min-width: 1200px) and (max-width: 1399px) {
            .windmill-section {
                height: 100%;
            }

            .overlay-box {
                width: 50%;
                height: 50%;
            }

            .value-card .title {
                font-size: 14px;
            }
        }

        /* 💼 Regular Laptops - 992px to 1199px */
        @media (min-width: 992px) and (max-width: 1199px) {
            .windmill-section {
                height: 50vh;
            }

            .overlay-box {
                width: 55%;
                height: 50%;
            }

            .value-card .title {
                font-size: 13px;
            }
        }

        /* 📱 Already defined for tablets & mobile <768px */

        .overlay-box {
            align-items: stretch;
            /* make children use full height */
        }

        .value-card{
            min-height: 100% !important;
            width: 100%;
            display: flex;
            align-items: center;
            /* center content vertically */
            justify-content: center;
            /* center content horizontally if needed */
            padding: 20px 0px 0px 20px;
        }
        
        .v-card>div {
             width: 100%;
            min-height: 32vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 50px;
            margin-bottom: 10px;
            
        }

        .value-card>div {
            width: 100%;
            /* ensures inner box takes full width */
            min-height: 100%;
            /* ensures full height inside card */
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 1.5rem;
        }
        /* 📱 Small Mobiles (≤ 480px) */
@media (max-width: 480px) {
    .overlay-box {
        width: 100%;
        height: 60%;
        border-radius: 1.25rem 1.25rem 0 0;
        flex-direction: column;
        padding: 1rem;
    }

    .value-card {
        padding: 0 10px;
    }

    .value-card .title {
        font-size: 13px;
    }

    .icon {
        height: 50px;
        width: 50px;
    }
}

/* 📱 Large Mobiles (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .overlay-box {
        width: 100%;
        height: 55%;
        padding: 1rem;
    }

    .value-card .title {
        font-size: 14px;
    }

    .icon {
        height: 55px;
        width: 55px;
    }
}

/* 📲 Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .overlay-box {
        width: 100%;
        height: 50%;
    }

    .value-card {
        padding: 0 15px;
    }

    .value-card .title {
        font-size: 15px;
    }

    .icon {
        height: 60px;
        width: 60px;
    }
}
/* ==============value rounded img=============== */


/* Form Background */
/* ========= GLOBAL FORM BACKGROUND ========== */
.formbg {
  min-height: 100vh;
  width: 100%;
  background-image: url('../images/about hero section.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* ========= LOGIN CONTAINER ========== */
.login-border-wrapper {
  background: linear-gradient(90deg, #FF511A 0%, #FFC517 100%);
  border-radius: 20px;
  padding-top: 4px;
  width: 100%;
  max-width: 510px;
  margin: auto;
}

/* ========= LOGIN BOX INNER ========== */
.login-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 50px;
  width: 100%;
  box-sizing: border-box;
}

/* ========= TEXT + TYPOGRAPHY ========== */
.login-box h2 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.login-box p {
  font-size: 14px;
  margin-bottom: 1rem;
  color: #6c757d;
}

/* ========= INPUT GROUP ========== */
.input-group {
  background-color: #F8FAFC;
  border-radius: 4px;
  /* padding: 14px 16px; */
  padding: 8px 10px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
}

.input-group-text {
  border: none;
  color: #667085;
  background: transparent;
  display: flex;
  align-items: center;
}

.input-group .form-control {
  border: none;
  background-color: #F8FAFC;
  border-radius: 8px;
  flex: 1;
  outline: none;
  box-shadow: none;
}



/* ========= TEXT LINKS ========== */
a {
  text-decoration: none;
}

a.text-muted:hover,
a.text-muted:focus {
  color: #000;
}

a[style*="color: #FF511A;"]:hover {
  text-decoration: underline;
}

.signupdiv{
  padding: 25px;
  border-radius: 10px;
}

/* ========= RESPONSIVE STYLES ========== */

/* XXL Screens (1600px+) */
@media (min-width: 1600px) {
  .login-border-wrapper{
    max-width: 550px;
    margin-top: 50px;
  }
  .formbg {
  min-height: 100vh;
}
  .login-box {
    padding: 50px;
  }

  .login-box h2 {
    font-size: 24px;
  }

  .login-box p {
    font-size: 16px;
  }

}

/* Large laptops (1200px–1599px) */
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .login-border-wrapper{
    margin-top: 80px;
  }
  .formbg {
  min-height: 100vh;
}
  .login-box {
    padding: 50px;
  }

  .login-box h2 {
    font-size: 22px;
  }

  .login-box p {
    font-size: 14px;
    line-height: 20px;
  }

}

/* Medium laptops & tablets landscape (992px–1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .login-box {
    padding: 40px;
  }

  .login-box h2 {
    font-size: 1.6rem;
  }

  .login-box p {
    font-size: 0.95rem;
  }

}

/* Tablets portrait and large phones (768px–991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .login-box {
    padding: 30px;
  }

  .login-box h2 {
    font-size: 1.5rem;
  }

  .login-box p {
    font-size: 0.95rem;
  }
}

/* Mobile Devices (up to 767px) */
@media (max-width: 767.98px) {
  .login-border-wrapper {
    border-radius: 16px;
  }

  .login-box {
    padding: 25px;
  }

  .login-box h2 {
    font-size: 1.4rem;
  }

  .login-box p {
    font-size: 0.85rem;
  }

  .input-group {
    padding: 10px 12px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575.98px) {
      .formbg {
        min-height: 100vh;
        padding-top: 80px;
    }
  .login-box {
    padding: 20px;
  }

  .login-box h2 {
    font-size: 1.3rem;
  }

  .login-box p {
    font-size: 0.8rem;
    line-height: 20px;
  }
  .signupdiv {
    padding: 15px;
  }

}


