@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", serif;
    font-variation-settings:
        "wdth" 100;
    font-size: 18px;
}

:root {
    --primary-color: #A8D8B9;
    --secondary-color: #F2E79A;
    --dark-text: #29362E;
    --light-text: #C2BDBD;
    --title-text: #fff;
    --secondary-bg: #FF6F61;
}

ul,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

a {
    text-decoration: none;

}

html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: clip;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }

p {
    color: #29362E;
    opacity: 90%;
    font-family: "Lato", serif;
}

ul {
    list-style: none;
    padding: 0;
}

h1 {
    font-size: 120px;
    font-weight: 700;
}

h2 {
    font-size: 42px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

img {
    width: 100%;
}

/* Lenis Css */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* =====Utilities===== */

.section-gap {
    padding: 150px 0;
}


/* ==Navbar */

/*Header Sticky*/
.theader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: ease 0.4s;
  z-index:5;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.header--sticky {
	  background-color: rgba(255, 255, 255, 0.4);
	 -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}


@media (min-width:1100px){
.nav_wrapper {
    display: flex;
    gap: 50px;
}
.scroll-indicator{display: none;}
.h-s-content{
    display: none;
}
}


@media (max-width:1099px){
    .nav_wrapper {
        display: flex;
        gap: 70px;
    }
    }

    @media (max-width:990px){
        .nav_wrapper {
            display: block
                }
        .nav_wrapper{
            background-color: #a7d8ba;
            padding: 20px;
        }
        .head_btn {
            padding: 0!important;
            color: #0000008f !important;
            background: #a8d8b900!important;
            border-radius: 0 !important;
            font-size: 18px;
        }
        }
     
.nav ul {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.nav ul .link {
    color: var(--dark-text);
    position: relative;
    font-size: 18px;
}

.head_btn {
	padding: 8px 20px;
	color: var(--dark-text);
	background: var(--primary-color);
	border-radius: 100px;
}

.dropdown-menu{
    background: linear-gradient(135deg, #A8D8B9, #F2E79A);
    border-color: transparent;
}

.dropdown-menu :hover{
    background-color: var(--dark-text);
    color: var(--title-text);
}

.dropdown-item li:hover{
    background-color: var(--dark-text);
    color: var(--title-text);
}

.buttons a{
    color: var(--dark-text);
}

/* ==hero section */

.h-banner{
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    height: 940px;
}



.h-title{
    text-align: center;
    margin: 170px auto 0;
    width: fit-content;
    color: var(--dark-text);
}
.h-title h1{
	font-size:60px;
}

.highlight1{
    font-size: 46px;
    font-weight: 300;
}

.highlight2{
    font-size: 50px;
    font-weight: 600;
}

.highlight3{
    font-size: 24px;
    font-weight: 200;
}

.small-cont{
    display: none;
}
@media (min-width:1000px){
.h-title h1{font-size:120px;}
.highlight2{font-size: 92px;}
.high-card-look{display: block;}
.high-card-look2{display: none;}

}

.h-s-title{
    font-size: 26px;
    font-weight: 400;
    position: relative;
    bottom: 12px;
}


.h-lift{
    position: relative;
    bottom: 36px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.h-banner .text-icon{
    position: relative;
    width: 52px;
    right: -40px;
    bottom: 143px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0% {
      transform: translateX(0) rotate(0deg); /* Start at the original position with no rotation */
    }
    50% {
      transform: translateX(10px) rotate(20deg); /* Move 10px to the right and rotate 10 degrees */
    }
    100% {
      transform: translateX(0) rotate(0deg); /* Return to the original position and reset rotation */
    }
  }
  

.p-title{
    text-align: center;
    font-size: 22px;
    font-family: "lato";
}

.h-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #ffffff00;
    position: absolute;
    backdrop-filter: blur(160px);
    -webkit-backdrop-filter: blur(160px);
    z-index: -1;
}

.circle1{
    width: 400px;
    height: 400px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 250px;
    right: 0;
    z-index: -2;
    
}

.circle2{
    width: 400px;
    height: 400px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 250px;
    z-index: -2;
}

.card-wrapper{
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 120px;
    margin-bottom: -560px;
    height: 500px;
}

.card{
    width: 355px;
    height: 360px;
    position: absolute;
    border: transparent;
    border-radius: 20px;
    bottom: -380px;
    transition: .3s;
}

.card img{
    width: 80px;
}

.card-wrapper .card-2 img{
    width: 70px;
}
.card-content{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    border-bottom: 1px solid #DCDACB;
    color: var(--title-text);
    padding: 10px 15px;
}

.card-3 img{
    width: 70px !important;
}

.card-1{
    background: var(--primary-color);
    left: 23%;
    /* transform: rotate(-15deg); */
    
}

.card-2{
    background: var(--secondary-color);
}

.card-3{
    background: var(--secondary-bg);
    right: 23%;
    /* transform: rotate(15deg); */
}

/* ==home-About */

.about{
    background: var(--dark-text);
    margin: 0 30px;
    border-radius: 40px;
    color: var(--light-text);
    margin-top: -290px;
    position: relative;
}
.a-header{
    padding-left: 20px;
    font-family: "Lato";
}
.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
  }
  .check-icon {
    color:var(--primary-color);
    margin-right: 0.75rem;
  }

  .s-icon{
    position: relative;
    margin-bottom: 19px;
  }


  .checklist-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #FFFFFF;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .checklist-btn .check-icon {
    color: #6FCF97; /* Light green check */
    font-size: 1.5rem;
    margin-right: 0.75rem;
  }
  
.arr-btn{
    display: inline-flex;
    align-items: center;
    gap: 1px;
    margin-top: 100px;
}

.Learn_btn {
    color: var(--title-text);
    border: 1px solid var(--title-text);
    padding: 12px 42px;
    border-radius: 50px;
    background-color: transparent;
}

.arr-btn i{
    width: 50px;
    height: 49px;
    background-color: var(--title-text);
    color: var(--dark-text);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arr-btn i::before{
    font-size: 40px;
    transform: rotate(45deg);
}
/* services */

.service .arr-btn{
    margin-top: 30px;
    margin-bottom: 80px;
}

.service .Learn_btn {
    color: var(--title-text);
    border: 1px solid var(--dark-text);
    padding: 12px 42px;
    border-radius: 50px;
    background-color: var(--dark-text);
}

.service .arr-btn i{
    width: 50px;
    height: 49px;
    background-color: var(--dark-text);
    color: var(--title-text);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service .arr-btn i::before{
    font-size: 40px;
    transform: rotate(45deg);
}

.s-card{
    display: flex;

}
.s-content{
    height: 450px;
    width: 300px;
}

.s-card i{
    width: 50px;
    height: 49px;
    background-color:  rgba(0, 0, 0, 0.5);
    color: var(--title-text);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transform: rotate(45deg);
}

.s-card{
    height: 450px;
   margin-bottom: 20px;
   border-radius: 30px;
    color: var(--title-text);
    font-weight: 900;
    display: flex;
    align-items: end;
    padding: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease;
}

.s-card img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
}

.s-card-content {
    z-index: 3;
}


.s-card-content i{
    position: absolute;
    top: 25px;
    right: 40px;
}

.s-card::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0;
    right: 0;
    height: 50%; 
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); 
    z-index: 1; 
    transition: transform 0.3s ease; 
}


.service a{
    color: var(--title-text);
}

.s-card:hover::after{
   transform: scale(1.2);
}

.s-row-1{
    margin-top: 100px;
}

.s-row-3{
    margin-top: -100px;
}

/* ==industries */

.industries{
    background: var(--dark-text);
    color: var(--title-text);
    margin: 0px 30px;
    border-radius: 40px;
}

.i-text{
    font-style: italic;
}


.accordion-container{
    margin-top: 100px;
    padding-right: 50px;
}

.accordion-item {
    position: relative;
    overflow: hidden;
    transition:  0.5s ease;
    padding: 0px 20px;
    margin: 30px 0;
    transition: .5s;
    border: none;
    border-radius: 0 !important;
    color: white;
    background-color: var(--dark-text);
    /* max-height: 40px; */
    /* Default height when closed */
  }

  .accordion-item h3{
	  cursor:pointer;
}
  .accordion-item p{
    display: none;
    opacity: 0;
    transition: .5s;
  }

  /* .accordion-item.open {
    /* max-height: 400px; */
    /* Adjust to the expected content height */


 .accordion-item.open p{
    display: block;
    opacity: 1;
    transition: .5s;
    margin-top: 25px;
    color: var(--title-text);
  }

  .progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--light-text);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
  }

  .accordion-item.open .progress-bar-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--light-text);
  }

  .accordion-item.open .progress-bar {
    background-color: #FF5722;
    /* Active color */
  }

  .accordion-item.open .progress-bar::before{
    content: '';
    position: absolute;
    top: 0;
    left:0;
    background-color: var(--title-text);
    width: 100%;
    height: 100%;
  }



  .industries .image-container img{
    aspect-ratio: 10/11;
    transition: opacity 0.3s ease;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
  }
  
  .industries .image-container{
    position: relative;
  }

  .industries .arr-btn{
    position: absolute;
    bottom: 0px;
    left: 0px;
	width: 100%;
    padding: 15px;
  }

  .industries .Learn_btn{
    width: 95%;
    color: var(--dark-text);
    background: var(--title-text);
  }

  .industries .arr-btn i{
    color: var(--dark-text);
    background-color: var(--title-text);
  }

/* ==home-blogs */

.blg{
    margin-top: 50px;
}

.image-container{
    position: relative;
}

.image-container img{
   aspect-ratio: 4/3.7;
   object-fit: cover;
   object-position: center;
   border-radius: 30px;
}

.image-container .tag{
    position: absolute;
    color: var(--dark-text);
    bottom: 10px;
    left: 10px;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.image-container span{
    padding: 6px 15px;
    background: var(--title-text);
    border-radius: 50px;
}

.insights p{
    padding: 15px 0;
    text-decoration: underline;
}

/* ==home-cta */
.cta{
    position: relative;
    margin: 0 30px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 120px;
}

.cta p{
    margin-top: 50px;
}
.cta::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #ffffff00;
    position: absolute;
    backdrop-filter: blur(140px);
    -webkit-backdrop-filter: blur(140px);
    z-index: -1;
}

.circle3{
    width: 500px;
    height: 450px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 150px;
    right: 0;
    z-index: -2;
}


.circle4{
    width: 500px;
    height: 450px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 150px;
    left: 0;
    z-index: -2;
}

.cta .arr-btn{
    margin-top: 50px;
}
.cta .Learn_btn{
    background: var(--dark-text);
}

.cta .arr-btn i{
    background: var(--dark-text);
    color: var(--title-text);
}

.cta a{
    color: var(--title-text);
}

.chat-icon{
    display:flex;
    justify-content:end;
}
.chat-icon img{
    width: 60%;
}

/* footer */

.footer{
    background-color: var(--dark-text);
    color: var(--title-text);
    padding-top: 120px;
    padding-bottom: 50px;
}

.connect{
    margin-top: 50px;
}

.footer a{
    color: var(--light-text);
}

.connect ul{
    padding-top: 20px;
    color: var(--light-text);
}

.f-connect{
    margin-top: 50px;
}
.f-connect img{
    width: 45%;
}

.f-connect p{
    color: var(--light-text);
}

.f-connect i{
   font-size: 24px;
}
.contact a{font-size:20px;}


/* =====About Us page */
.about-us{
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    /* height: 100vh;  */
    overflow: hidden;
}

.about-us::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #ffffff00;
    position: absolute;
    backdrop-filter: blur(160px);
    -webkit-backdrop-filter: blur(160px);
    z-index: -1;
}

.about-us .circle1{
    animation: flow 5s ease-in-out infinite;
}

@keyframes flow {
    0% {
      transform: translateX(0); 
    }
    50% {
      transform: translateX(-400px) ; 
    }
    100% {
      transform: translateX(0) ; 
    }
  }

  .about-us .circle2{
    animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
    0% {
      transform: translateX(0); 
    }
    50% {
      transform: translateX(400px) ; 
    }
    100% {
      transform: translateX(0) ; 
    }
  }

  .head{
    font-size: 70px;
    padding-bottom: 206px;
  }
.about-us img{
    aspect-ratio: 8/6;
    /* margin-top: 130px; */
    object-fit: cover;
    object-position: center;
}
.abt-d{
    background-color: #fff;
    color: #000;
}

.abt-d.active{
    background-color: var(--dark-text);
    color: var(--title-text);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    color:var(--dark-text)
  }
  
.scroll-indicator span {
    writing-mode: vertical-rl; /* Makes the text vertical */
    transform: rotate(180deg); /* Rotates the text upright */
   margin-top: -120px;
    font-size: 20px;
  }

.about-us a:hover{
   color: var(--dark-text);
}

  .scroll-indicator .arrow svg{
    height:80px;
    width: 30px;
  }

.abt-content{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.abt-title{
    color: var(--title-text);
}

.abt-para{
    color: white;
    margin: auto;
    text-align: start;
    padding: 0px 50px;
    margin-left: 43px;
}
  

#main{
    width: 100%;
    width: 100%;
    background: var(--dark-text);
}

#cursor{
    height: 20px;
    width: 20px;
    background-color: var(--title-text);
    border-radius: 50%;
    position: absolute;
    z-index: 3;
    opacity: 0;
    font-size: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper {
    width: 100%;
    height: 100%;
    background: #000;
    padding: 122px 0;
    margin-top: -90px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* padding: 0 30px; */
  }

/* why choose us */
.brxe-section {
    padding-top: 120px;
    padding-right: 20px;
    padding-bottom: 120px;
    padding-left: 20px;
}
.brxe-container {
    align-items: flex-start;
    row-gap: 16px;
    flex-direction: row;
    width: 100%;
}
.brxe-container{
display: flex;
}
.brxe-block {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 100%;
	position: sticky;
}
.card-title {
    width: 50%;
    position: sticky;
    top: 7rem;
    color: var(--dark-text);
}

.card-title p{
    width: 80%;
    position: sticky;
   font-size: 18px;
}

.work-cards  {
    row-gap: 50px;
    display: flex;
   
    grid-gap: 24px;
   
    width: 50%;
    column-gap: 24px;
    flex-wrap: wrap;
}

.cardbox{
row-gap: 12px;
    padding-top: 32px;
    padding-right: 24px;
    padding-bottom: 32px;
    padding-left: 24px;
    border-radius: 16px;
    margin-bottom: 0;
}

.immerse_box {   
    background-color: #d4ecdc;
    top: 4rem;
}


.plan_box {    
    background-color: #dcefe3;
    top: 10.5rem;
}

.create_box {   
    background-color: #e5f3ea;
    top: 17rem;
}

.launch_box {    
    background-color: #eef7f1;   
    top: 23.5rem;
}

.iterate_box {    
    background-color: #f6fbf8;
    top: 24rem;
}


.brxe-div {
    display: flex;
    align-self: flex-start !important;
    row-gap: 16px;
    column-gap: 16px;
    align-items: center;
}
/* Mission */
.mission h2{
    border: 1px solid var(--dark-text);
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border-radius: 30px;
    position: relative;
    padding-left: 52px;
}

.mission h2::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    border-radius: 20px;
}

.mission .Learn_btn{
    color: var(--title-text);
    background: var(--dark-text);
}

.mission .arr-btn i{
    color: var(--title-text);
    background: var(--dark-text);
}

.mission .m-img{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mission .img-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 80px;
}

.mission .mission-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mission .img-wrapper:nth-child(1){
    border: 10px solid var(--title-text);
    width: 300px;
    height: 450px;
} 

.mission .img-wrapper:nth-child(2){
    width: 230px;
    height: 390px;
    transform: translateX(-50px);
    z-index: -1;
}

.mission .checklist{
    margin-top: 50px;
}

.mission .check{
    padding-top: 100px;
}
.srvc-para h4{
    color: var(--light-text);
    padding-bottom: 20px;
}
  /* ===services page */

.srvc-details-title{
    font-size: 70px;
}

.srvc-short {
    border: 1px solid var(--light-text);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    position: relative;
    color: #8C8C8C;
    margin-bottom: 10px;
    font-size: 22px;
}

.srvc-wrapper img{
    border-radius: 0px;
    width: 100%;
    height: 930px;
    background-position: center;
    clip-path: polygon(0 15%, 100% 0, 100% 75%, 0 98%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.high-card-2{
    background: transparent !important;
}

.high-card{
    padding: 30px;
    background: #DCEFE3;
    margin: 20px;
    width: 400px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 30px;
}

.high-card i{
    font-size: 39px;
    color: var(--primary-color);
}



.highlights-content h3{
    font-size: 28px;
    padding-bottom: 10px;
}


.high-card-look{
    display: none;
}
/* ======industry section */
.industry{
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    /* height: 100vh;  */
    overflow: hidden;
}

.industry::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-color: #ffffff00;
    position: absolute;
    backdrop-filter: blur(160px);
    -webkit-backdrop-filter: blur(160px);
    z-index: -1;
}

.industry.circle1{
    animation: flow 5s ease-in-out infinite;
}

@keyframes flow {
    0% {
      transform: translateX(0); 
    }
    50% {
      transform: translateX(-400px) ; 
    }
    100% {
      transform: translateX(0) ; 
    }
  }

  .industry .circle2{
    animation: flow 3s ease-in-out infinite;
}

@keyframes flow {
    0% {
      transform: translateX(0); 
    }
    50% {
      transform: translateX(400px) ; 
    }
    100% {
      transform: translateX(0) ; 
    }
  }
.industry{
    font-family: "lato";
}
.industry h1{
    font-size: 72px;
}

.image-wrapper-1 img {
    border-radius: 0 80px 0 0
}

.image-wrapper-2 img {
    border-radius: 80px 0px 0 0
}

.text-wrapper h3, .text-wrapper-2 h3{
    font-size: 28px;
    margin-bottom: 25px;
    font-family: "lato";
}

.text-wrapper{
    padding-left: 30px;
    font-family: "Lato";
}

.text-wrapper h4{
    margin-bottom: 15px;
    font-size: 22px;
    font-family: "Lato";
}
.text-wrapper-2{
    padding-right: 40px;
    font-family: "Lato";
}
.indus-item {
    display: flex;
    align-items: flex-start;
    font-family: "Lato";
}

.indus-item i {
    color: var(--primary-color); /* Green check-circle */
    font-size: 20px;
    margin-right: 10px;
}

.indus-item span {
    font-size: 16px;
    line-height: 1.5;
}

.img-fluid {
    width: 100%;
}

.row + .row {
    margin-top: 100px; /* Space between rows */
}

.industry-title{
    text-align: center;
    padding: 100px 0;
}

.industry-title h4{
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid var(--light-text);
    border-radius: 30px;
    margin-bottom: 50px;
    color: var(--light-text);
}

.indus-item .strong{
    font-weight: 500;
}
/* contact us */
.form-input-field {
    border-style: none none solid;
    border-width: 1px 1px 1px;
    border-color: var(--border);
    color: var(--light-text);
    background-color: #0000;
    border-radius: 0;
    height: 44px;
    margin-bottom: 5px;
    padding-left: 0;
    font-size: 14px;
    line-height: 32px;
    padding: 8px 0px;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-message-input-field {
    min-height: 80px;
    margin-bottom: 30px;
    padding-top: 0;
}

.contact-form-label {
    color: var(--dark-text);
}

.sbmt-btn {
    display: block;
    overflow: hidden;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    border: none;
    background: var(--primary-color);
}

.form-input-field:focus {
    border-color: var(--dark-text);
    outline: 0;
}

.error-message {
    color: red;
    font-size: 12px;
}

.form-section h2 {
    margin-bottom: 70px;
}

.fp-btn_cta-title{
    font-size: 21px;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    /* border-radius: 30px; */
    padding-right: 30px;
  }

/* ===Blogs Page */
.blog-details-title {
    font-size: 46px;
    width: 80%;
}

.blog-content-wrapper h2 {
    font-size: 38px;
    padding-bottom: 7px;
}


.blog-content-wrapper ul {
    list-style-type: disc;
}

.blog-content .last-p{
    margin-bottom: 60px;
}

.second-p{
    margin-bottom: 20px;
}
.blog-content .content-title{
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.blog-content p{
    margin-bottom: 1rem;
}



.blog-content .subheading{
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
  }
/* ====responsive=== */

@media (min-width: 1024px){
	.connect{
		margin-top: 80px;
	}
	.contact {display: flex; justify-content: space-between;}
	.contact a{font-size:32px;}
	
	.f-connect {margin-top: 80px; display: flex; justify-content: space-between; align-items: end;} 
    .h-s-content{
        display: none;
    }
 
}

@media (max-width: 1024px){
    .high-card-look{display: block; display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 30px}
.high-card-look2{display: none;}
}

@media (max-width:992px){
    .navbar-nav{gap: 0px;}
h2 {font-size: 28px;}
.section-gap {padding: 100px 0;}
.card{width: 290px;}
.card-wrapper {display: block; margin-bottom: -460px;}
.card-1{left: 12%;}
.card-2{left: 240px;}
.card-3{right: 12%;}

/*Banner Section*/
.h-title{padding-bottom:30px;}
.h-lift {bottom: 22px;}
.highlight1 {font-size: 30px;}
.h-s-title {font-size: 18px;}
.h-banner .text-icon {right: 9px;
    bottom: 86px;}

.circle1, .circle2 {width: 200px;}
.h-banner {height: 100%; padding-bottom: 360px; overflow: hidden;}
.h-s-content{display: none;}

/*About Section*/
.about{padding-top:60px; margin-left:13px; margin-right:13px;}
.about .arr-btn{position: absolute; bottom: 30px; margin: 0;}
.checklist{margin-top:30px; padding:10px;}
.checklist-item {align-items: start;}
.arr-btn i {width: 45px; height: 46px;}
.Learn_btn{padding:10px 42px}
.abt-para{padding: 0;}

/*services Section*/
.service{position: relative;}
.s-row-1 {margin-top:60px;}
.s-row-2 {margin-top:30px;}
.s-card {height: 380px; padding: 30px;}
.s-row-3 {margin-top: 0px;}
.service .arr-btn{display: none;}

/*industries Section*/
.industries {padding:80px 20px; margin:50px 13px 0px;}
.industries h2 {font-size: 26px;}
.industries h3 {font-size: 20px;}
.accordion-container {margin-top: 50px; padding-right: 0px;}
.industries .image-container {margin-top: 30px;}
.industries .image-container img{aspect-ratio: 4/3;}

/* blog */
.image-container span{padding: 5px 10px;}
.text-wrapper h3{margin-top: 10px;}

/*CTA Section*/
.cta {margin: 0 20px; padding-top: 60px; padding-bottom: 60px;margin-bottom: 70px;}
.cta p{margin-top: 25px;}
.chat-icon img {width: 20%; margin-left: 40px; margin-bottom: 30px;}
.form-section h2{margin-top: 40px;}
.chat-icon {display: flex; justify-content: start;}

/*Footer Section*/
.connect {
    margin-top: 50px;
    gap: 50px;
	}
.footer{position:relative;}	
.back-to-top{
	position:absolute;
	right:20px;
	bottom:140px;
}	

/* service */
.srvc-wrapper img{height: 500px;}
.srvc-short{font-size: 12px;}
.srvc-details-title{font-size: 48px;}
.srvc-para h3{font-size: 24px;}
.high-card-look{display: block;  display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 30px}
.high-card-look2{display: none;}
.highlights-content h2{font-size: 40px; text-align: start;}

/* ====about us page */
.about-us img {width: 100%;}
.head{font-size: 46px;}
.abt-para{font-size: 22px;}
.a-header h3{font-size: 22px;}
.mission .checklist{margin-top: 20px;}
.arr-btn{margin-top: 20px;}
.mission .img-wrapper:nth-child(2){display: none;}
.mission .check {padding-top: 35px;}
.mission .checklist{padding: 0;}
}

@media (max-width:767px){
    /*==banner  */
    .navbar-nav{gap: 0px;}
    .h-s-title {font-size: 18px; right: 5px; bottom: -2px;}
    .p-title{font-size: 20px;}
    .s-icon{margin-bottom: 0;}
    .h-s-content{display: none;}
    .scroll-indicator{display: none;}
    .head{padding: 20px 0px;}
    .card{width: 274px;}
    .card-1{left: 0%;}
    .card-2{left: 139px;}
    .card-3{right: -9%;}
    /* ==service */
    .service .arr-btn {
        position: absolute;
        bottom: 0px;
        right: unset;
        margin-bottom: 0;
        top: unset;
        left:unset;
    }

    .mission .img-wrapper:nth-child(1){ width: 100%;}
    /* about */
    .swiper-slide img{
        padding: 0;
    }
}

@media (max-width:676px){
    /* ==banner */
    .navbar-nav{gap: 0px;}
    .h-title h1{font-size: 49px;}
    .highlight1 {font-size: 35px;}
    .highlight2{font-size: 40px;}
    .h-lift{bottom: 34px;}
    .h-s-title{font-size: 9px; font-weight: 500;}
    .p-title{font-size: 16px;}
    .a-header h2{font-size: 19px;}
    h2{font-size: 24px;}
    .Learn_btn{padding: 9px 26px;}
    .arr-btn i{width: 31px; height: 32px;}
    .service .Learn_btn{padding: 8px 32px;}
    .service .arr-btn i{width: 44px; height: 46px;}
    .h-s-content{display: block; font-size: 16px; font-weight: 400; position: relative;right: -106px; bottom: 35px;}
    .h-s-title{display: none;}
    .card{width: 193px;}
    .card-3{right: 8%;}
    .card-1{left: 11%;}
    .card-2{left: 164px;}
    .card-content h4{font-size: 18px;}
    .card-content{gap: 0px;}
    .card-wrapper{margin-bottom: -454px;}
    .s-title{width: 100% !important}

    /* about */
    .abt-para{margin-left: 0px; padding: 0px; font-size: 16px;}
    .card-title p{font-size: 18px; padding-bottom: 27px;}
    .scroll-indicator{display: none;}
    .brxe-container{display: block;}
    .card-title{width: 100%;}
    .card-title h2{margin-bottom: 1rem !important;}
    .work-cards{width: 100%; grid-gap: 14px;}
    .a-header h3{font-size: 20px;}
    .head{font-size: 35px;}
    .main{width: 100%; height: 200px;}
    .swiper{padding: 30px 0;}
    .swiper-slide img{padding: 3px;}
    .scroll-indicator span{display: none;}
    .mission .img-wrapper{border-radius: 50px;}
    .flex-row-reverse {flex-direction: column;}
    .industry h1{font-size: 45px;}
    .industry-title h4{padding:10px 30px ;}
    .arr-btn i{width: 40px; height: 41px;}
    .high-card{width: 380px; height: 340px;}
    .work-cards h4{font-size: 22px;}
    /* industry */
    .industries .Learn_btn{text-align: center;}
    .text-wrapper h4{font-size: 18px; padding-left: 0;}
    .text-wrapper h3{margin-top: 10px;}
    /* blogs */
    .blog-details-title{font-size: 35px;}
}

@media (max-width:430px){
    .card-2{left: 110px;}
    .navbar-nav{gap: 0;}
    .industries .image-container img{
        aspect-ratio: 6/6;
    }
}