@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #FFE082;
    --primary-dark: #A46880;
    --color: #00567F;
    --bg-dark: #FFFFEC;
    --text-light: #58545F;
    --text-muted: #D7D6D6;
    --border-color: rgba(0, 0, 0, 0.2);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: hidden;

    font-weight: 400;
    cursor: url('../images/cursor.png'), auto;

}


section {

    position: relative;
    z-index: 2;
    background: var(--bg-dark);

}
/* fixed contact start */
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.support-popup a{
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  pointer-events: none;
}
.fixed-contact .support-icon {
    width: 70px;
    height: 70px;
}
.fixed-contact .support-popup img {
    width: 40px;
    height: 40px;
}
.text {
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0;
    color: #60606057;
    background: linear-gradient(to right, var(--color)) no-repeat;
    -webkit-background-clip: text;
    transition: background-size .5s cubic-bezier(.1, .5, .5, 1);
    will-change: background-size;
}


/* Different delay for each letter */
.load-text span:nth-child(1) {
    animation-delay: 0.1s;
}

.load-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.load-text span:nth-child(3) {
    animation-delay: 0.3s;
}

.load-text span:nth-child(4) {
    animation-delay: 0.4s;
}

.load-text span:nth-child(5) {
    animation-delay: 0.5s;
}

.load-text span:nth-child(6) {
    animation-delay: 0.6s;
}

.load-text span:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes letterAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* loader end */

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    transition: .3s;
    border-bottom: 1px solid #9baed342;
    /* background: linear-gradient(180deg, rgba(5, 89, 180, 0.4), transparent); */
}

.scrolled.navbar {
    padding: 20px 0;
    background: #0315218c;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
}

.logo img {
    width: 160px;
    transition: .5s;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn {

    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.5s;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    position: relative;
    padding-right: 50px;
    text-decoration: none;

}

.btn.center{
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: fit-content;
}
.btn:hover {
    padding-right: 0px;
    padding-left: 50px;
}

.btn>span:nth-child(1) {
    background: linear-gradient(90deg, #A46880, #F9F462, #F9F462, #A46880);
    background-size: 200%;
    padding: 10px 30px;
    color: #000;
    border-radius: 30px;
    height: 50px;
    transition: .5s;
    min-width: 180px;
    text-align: center;
    z-index: 9;
    transition: .5s;

}
.btn.whatsapp>span:nth-child(1){
    background: #25d366;
    color: white;
    
}
.btn.whatsapp img{
    width: 35px;
    padding-left: 5px;
}
.btn>span:nth-child(2) {
    width: 15px;
    height: 25px;
    background-color: #F9F462;
    margin-left: -4px;
    position: absolute;
    right: 43px;
    transition: .5s;


}
.btn.whatsapp>span:nth-child(2) {

    background-color: #25d366;
 


}
.btn>span:nth-child(3) {

    background-color: #F9F462;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    transition: .5s;
    position: absolute;
    right: 0;

}
.btn.whatsapp>span:nth-child(3) {

    background-color: #25d366;
}

.btn:hover>span:nth-child(1) {
    background-position: 100%;
}

.btn:hover>span:nth-child(3) {
    right: calc(100% - 50px);

}

.btn:hover>span:nth-child(2) {
    right: calc(100% - 55px);
}

.btn:hover span:nth-child(3) {
    transform: rotate(20deg);
}
.section-shape-img{
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;

    display: flex;
}



/* Hero Section */

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.community-page .hero {
    min-height: 100vh;
}

.hero::before {
    content: "";
    position: fixed;
    /* fixed to viewport */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.radial-shape {
    position: relative;
    margin-top: -5%;
    width: 100%;
    z-index: 1;

}

.radial-shape img.hero-shape {
    width: 100%;
    display: flex;
}

.radial-shape svg {
    position: absolute;
    left: 0;
    top: -70%;
    z-index: 9999;
}
.radial-shape img.hero-shape {
    width: 100%;
    display: flex;
}
img.banner-shape {
    width: 40%;
   position: absolute;
   left: 53%;
   transform: translateX(-50%);
   bottom: 0;
   
}
.radial-shape svg:nth-child(2) {

    left: auto;
    right: 0;

}

.hero .container {
    z-index: 9;
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0 150px 0;
}

.center.hero-text>* {
    margin: auto;
}

.hero-text {
    flex: 1;
    max-width: 700px;
    width: 100%;
    top: 20px;
}

.center.hero-text {
    text-align: center;
    margin: 0 auto;
}

.center.hero-text>* {
    margin: auto;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    padding-bottom: 10px;
    width: fit-content;

}

.gradient-text {
    color: #A46880;
    /* Fallback color - important for animation visibility */
    background: linear-gradient(90deg, #A46880, #F9F462);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}







.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    padding-bottom: 30px;
    line-height: 1.4;
    max-width: 550px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
}



/* chooose Section */
.choose-section {
    padding: 50px 0;
    text-align: center;
}

.section-header {
    max-width: 800px;
    text-align: left;
    width: fit-content;
}

.center.section-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.title-with-arrow img {
    margin-top: -60px;
    padding-bottom: 20px;
    width: 50px;
}

.center .section-title {
    margin: 0 auto 10px auto;
}

.section-label {
    display: inline-block;
    color: var(--text-light);
    font-weight: 200;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;

}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    line-height: 42px;

}



.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
    max-width: 500px;
}

.section-shape {
    position: relative;

}

.margin-20 {
    margin: 0 20px;
}

.bg-div {
    background: #f6f6eb;
    border-radius: 0 0 20px 20px;
    padding-top: 80px;
    padding-bottom: 80px;

}

.section-shape img.heros-bg {
    width: 100%;
    display: flex;
}

.section-shape img.arrow-shape {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    width: 50px;
}
.section-shape img.contact-shape {
 position: absolute;
    left: calc(50% - 25px);
    top: -120px;
    width: 400px;
}
.footer .section-description {
    font-size: 16px;
    color: var(--text-muted);


}

.section-description span {
    font-weight: 700;
}


/* choose section start */
.choose-section-container {
    max-width: 900px;
    position: relative;
    margin: auto;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.choose-row {
    display: flex;
}

.choose-row:nth-child(even) {
    flex-direction: row-reverse;
}

.choose-row:nth-child(1)>div:nth-child(2) {
    padding-left: 50px;
}

.choose-row:nth-child(2)>div:nth-child(1) {
    padding-left: 50px;
}

.choose-row:nth-child(3)>div:nth-child(2) {
    padding-left: 50px;
}

.choose-row:nth-child(4)>div:nth-child(1) {
    padding-left: 50px;
}

.choose-row>div {
    padding: 30px;
}

.choose-row-col {
    width: calc(50% - 15px);
    display: flex;
    position: relative;

}

.choose-row-col span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F5F5F5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -20px;

    transform: translateY(-50%);
}

.choose-row-col-content {
    padding: 30px;
    border-radius: 14px;
    text-align: left;
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: center;



}

.choose-row-col-content:hover {
    background-color: #ffffff91;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.11));

}

.choose-row-img {
    width: calc(50% - 15px);
    display: flex
}

.choose-row-img img {
    width: 180px;
    height: 180px;

    padding: 15px;
}

.choose-row:nth-child(even) img {
    margin: 0 auto;
}

.choose-row-col h5 {
    color: var(--color);
    font-size: 20px;
}


/* journey section start */
.steps-slider {
    max-width: 100%;
   width: 100%;
}

/* Swiper main container */
.myStepsSwiper {
    width: 100%;
    margin-top: 60px;
}

/* Slides */
.myStepsSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

/* Card look */
.step-card {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 100px;
}
.flex-card{
    display: flex;
    align-items: center;
}
/* Background colours like screenshot */
.step-1 {
    background: #f6e7dc;
    /* warm beige */
}

.step-2 {
    background: #ddefff;
    /* light blue */
}

/* Number circle */
.step-number {
  
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #000;
    font-size: 30px;
}

/* Icon bottom-left */
.step-icon {
   width: 120px;
}

/* Text bottom-right */
.step-title {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}

.step-text {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
    max-width: 300px;
}


.journey-section {
    padding: 50px 0 100px 0;
}


/* contact section start */

.contact-section {
    padding: 50px 0px;
    position: relative;
}


.contact-section .container {
    max-width: 1000px;
}

.contact-section .section-header {
    max-width: 600px;
}

.contact-section .section-description {
    font-size: 16px;
}

.contact-section form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    margin-top: 50px;
}

.contact-section {

    input,
    textarea {
        width: 100%;
        border: none;
        border-bottom: 1px solid #00000066;
        background: transparent;
        outline: none;
        color: rgb(0, 0, 0);
        font-size: 14px;
        padding: 15px 0;
    }
}

.contact-section textarea {
    min-height: 140px;
    grid-column: 1 / -1;
}

.contact-section .form-btn {
    margin-top: 20px;
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
}








.btn2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
}

.btn2 span {
    background-color: #0876BD;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-section {
    padding-top: 40px;
    padding-bottom: 60px;

}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.team-member-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}



.team-member-card img {
    width: 100%;
    display: flex;
    transition: .5s;
}

.team-member-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.member-details {

    width: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    transition: .5s;
    text-align: center;

}

.team-member-card:hover .member-details {
    bottom: 0;
}

.member-details h4 {
    color: var(--color);
    font-size: 24px;
    line-height: 24px;
}

.member-details p {
    color: #58545F;
    font-size: 18px;
    font-weight: 300;
}


/* testimonial secttion */

/* Swiper container */
.testimonial-section{
padding-top: 40px;
    padding-bottom: 60px;
}
.testimonialSwiper {
  width: 100%;
  margin-bottom: 16px;
  max-width: 700px;
  text-align: center;
}

/* Card */
.testimonial-card {
  background: transparent;
}

.stars {
  margin-bottom: 10px;
}

.quote {
  font-size: 24px;
  line-height: 1.5;
  color: #023F5C;
  margin: 0 0 10px;
  font-weight: 500;
}

.name {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Avatars row (custom dots) */
.avatars {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

/* Default avatar style */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  filter: grayscale(2);
}

/* Active avatar (current slide) */
.avatar.active {
  transform: scale(1.2);
  filter:none;

}

.avatar img{
    width: 100%;
    height: 100%;
}

 /* story section start */
 .story-section {
    padding: 30px 0;
 }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  margin-top: 50px;
}

.video-card {
  text-align: center;
}

.video-thumb {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Play button */
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn  img{
    width: 80px;
}

.name {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 500;
  color: #00567F;
}


 /* proof section start */
 .proof-section {
    padding: 50px 0 150px 0;
 }


.stats-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, auto);
  border: 1px solid #9BAED3;
  margin-top: 50px;
}

.stat-box,
.illustration-box {
  padding: 40px;
  border-right: 1px solid #9BAED3;
  border-bottom: 1px solid #9BAED3;
}

.stats-grid > *:nth-child(3n) {
  border-right: none;
}

.stats-grid > *:nth-last-child(-n + 3) {
  border-bottom: none;
}

/* Numbers */
.stat-number {
  font-size: 70px;
  line-height: 70px;
  font-weight: 200;
  color: #9BAED3;
  display: block;
  margin-bottom: 20px;
}

/* Text */
.stat-text {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  max-width: 200px;
}

/* Illustration */
.illustration-box {
  display: flex;
  justify-content: center;
  padding: 0;
   transform-origin: bottom left;
   transform: scale(1.1);
}

.illustration-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}










.swiper-wrapper {
    align-items: stretch;
    cursor: grab;
    position: relative;

}

.swiper {
    position: relative;
        border-radius: 20px;
    overflow: hidden;
}


.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.reel-card {
    background: #fff;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 6px 36px 0 rgba(30, 30, 48, 0.10);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}


/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 20px 0 30px;
    position: relative;
    z-index: 9;

}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: black;
  gap: 30px;
  padding-bottom: 100px;

}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    padding: 40px 0 10px 0;
    border-top: 1px solid var(--border-color);

    font-size: 14px;
    color: black;

}



/* Responsive Design */
@media (min-width: 1200px) {
    footer {
        position: sticky;
        bottom: 0;
    }

}

@media (max-width: 1300px) {
    .illustration-box {
   transform: scale(1);
}


    .header-right {
        gap: 30px;
    }

    .section-shape img.arrow-shape,
    .title-with-arrow img {
        width: 36px;
        max-height: 70%;
        object-fit: contain;
        
    }

}
@media (max-width: 1100px) {
   .myStepsSwiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
}
@media (max-width: 1024px) {
    

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 20px;
        padding: 40px 0 100px 0;
    }



    .hero-text>* {
        margin: auto;
    }

    .hero-text {
        max-width: 100%;
        margin-top: -60px;
        z-index: 9;
    }

    .hero-buttons {
        justify-content: center;
    }



    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {

        /* padding-top: 150px; */
        background-position: 30% center;

    }




}

@media (max-width: 990px) {
    .section-shape img.contact-shape {
    left: calc(50% - 15px);
    top: -80px;
    width: 300px;
}
    .stat-box {
    padding: 20px;

}
    .team-grid {

        grid-template-columns: 1fr 1fr;

    }

    .logo img {
        width: 130px;
    }

    .btn>span:nth-child(1) {
        padding: 8px 20px;
        min-width: 125px;
        height: 40px;
        line-height: 1.3;
    }

    .btn {

        padding-right: 35px;
    }

    .btn>span:nth-child(2) {
        right: 30px;

    }

    .btn>span:nth-child(3) {
        width: 40px;
        height: 40px;
    }




}

@media (max-width: 768px) {
        .section-shape img.contact-shape {
    left: calc(50% - 5px);
    top: -80px;
    width: 240px;
}
.proof-section {
    padding-bottom:80px;
}
    .stats-grid {

    grid-template-columns: repeat(2, 1fr);
}
.stats-grid > *:nth-last-child(-n + 3){
    border-bottom: 1px solid #9BAED3;
    border-left: 1px solid #9BAED3;

}
  .video-grid {
  display: flex;
  overflow: auto;
  padding-left: 20px;
  padding-right: 20px;
  }
.video-thumb{
    width: 260px;
}

    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 16px;
    }

    .choose-row>div {
        padding: 10px !important;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.2;
        margin: 0 auto 10px auto;
    }
.flex-card {
    flex-direction: column;
    align-items: flex-start;
}
.step-card{
    padding: 25px;
    gap: 30px;
}
.step-number {
    width: 50px;
    height: 50px;
    font-size:22px;
}
.myStepsSwiper {
    margin-top: 30px;
}
.journey-section{
    padding: 20px 0 60px 0;
}
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .footer-top-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 0 0px 0;
    }





    .navbar {

        padding: 30px 0;

    }

    .scrolled .logo img {
        width: 120px;
    }

    .container {

        padding: 0 20px;

    }
.story-section-container{
    padding: 0;
}


    .hero {

        min-height: auto;

    }

    .contact-section form {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .contact-section textarea {
        min-height: 100px;
    }







    .btn2 {

        font-size: 16px;

    }




    .member-details h4 {
        font-size: 16px;
        line-height: 18px;
    }

    .member-details p {
        font-size: 14px;
    }

    .team-grid {
        gap: 15px;
    }

    .member-details {
        padding: 5px;
        min-height: 70px;
    }

    .bg-div {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 560px) {

    .choose-row:nth-child(1)>div:nth-child(1) {
        border-left: 2px dashed #720032;
        border-bottom: 2px dashed #720032;
        border-radius: 0;
        border-bottom-left-radius: 20px;
        margin-left: 10px;

    }

    .choose-row:nth-child(2)>div:nth-child(2) {
        border-right: 2px dashed #720032;
        border-bottom: 2px dashed #720032;
        border-radius: 0;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 20px;


    }

    .choose-row:nth-child(3)>div:nth-child(1) {
        border-left: 2px dashed #720032;
        border-bottom: 2px dashed #720032;
        border-radius: 0;
        border-bottom-left-radius: 20px;
        border-top-left-radius: 20px;

        margin-left: 10px;


    }

    .choose-row:nth-child(4)>div:nth-child(2) {
        border-right: 2px dashed #720032;
        border-radius: 0;
        border-top-right-radius: 20px;


    }

    .choose-row-col .first-span {
        top: 30%;
    }

    .choose-row-col .first-span:before {
        content: '';
        position: absolute;
        bottom: 40px;
        left: 0;
        background: var(--bg-dark);
        width: 40px;
        height: 100px;
        z-index: -1;
    }

    .choose-row-col .last-span {
        top: 50%;
    }

    .choose-row-col .last-span:before {
        content: '';
        position: absolute;
        top: 40px;
        left: 0;
        background: var(--bg-dark);
        width: 40px;
        height: 100px;
        z-index: -1;
    }

    .choose-row:nth-child(odd) img {
        margin-left: 30px;
    }
}

@media (max-width: 560px) {
            .section-shape img.contact-shape {
    left: calc(50% - 5px);
    top: -50px;
    width: 150px;
}
.proof-section {
    padding-bottom:30px;
}
    .choose-row:nth-child(even) {
        flex-direction: row;
    }
img.banner-shape {
    width: 70%;
}
    .choose-section-container {
        padding-left: 10px;
    }

    .choose-row {
        border-left: 2px dashed #720032;
        padding-top: 20px;
        flex-direction: column-reverse !important;
        position: relative;

    }

    .choose-row-col span {
        top: 0;
        transform: none;
    }

    .choose-row-col {
        width: 100%;

    }

    .choose-row .choose-row-img {
        width: 80px;
        padding: 0 !important;
        padding-left: 40px !important;

    }

    .choose-row-img img {
        width: 80px;
        height: 80px;
        padding: 0px;
    }

    .choose-row>div {
        position: initial;
    }

    .choose-row-col-content {
        padding: 0;
        padding-left: 30px;
    }

    .choose-row-col-content p {
        font-size: 14px;
    }
    .section-shape-img{
    width: 240px;

    margin-bottom: 50px;
}

}

@media (max-width: 480px) {

.stat-text {
    font-size: 16px;
}
.stat-number {
    font-size: 50px;
    line-height: 50px;

}
.stats-grid {
    grid-auto-rows: minmax(100px, auto);
}
    .section-description {
        font-size: 16px;
        line-height: 1.4;
    }
.stat-box {
        padding: 15px;
    }


    .contact-section {
        padding: 70px 0 30px 0;
    }


    .choose-section {
        padding-bottom: 20px;
    }





    .section-header {
        text-align: center;
        margin: auto;
    }



    .footer {
        padding: 0px 0 30px;
    }


    .radial-shape {
        margin-top: 0;
    }





    .team-member-card {
        width: 100%;
    }

    .team-member-card .member-details {
        bottom: 0;
    }




    .swiper:before {

        width: 120px;


    }

    .swiper:after {

        width: 120px;


    }
    .quote {
  font-size: 18px;
  line-height: 1.4;
}
    .section-shape img.arrow-shape,
    .title-with-arrow img {
        width: 50px;
        max-height: 100%;
        top: -15%;
    }
}




.steps-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.myStepsSwiper {
    width: 100%;
}

.swiper-wrapper {
    will-change: transform;
}

.swiper-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
