body {
  /* font-family: "Unbounded", sans-serif; */
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #1759A5;
  border-radius: 10px;
}

a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.list-global {
  li {
    margin-bottom: 10px;
  }
}

.container {
  max-width: 1440px;
}

.main-title-h1 {
  font-family: "Poppins", sans-serif;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  /* letter-spacing: -2px; */
  margin-bottom: 20px;
  text-transform: capitalize;
}


@keyframes fadeInUpBlur {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}


@keyframes fireGlow {
  0% {
    text-shadow:
      0 0 2px #f47a14,
      0 0 4px #f47a14,
      0 0 6px #f47a14;
  }

  50% {
    text-shadow:
      0 0 4px #f47a14,
      0 0 8px #f47a14,
      0 0 12px #f47a14;
  }

  100% {
    text-shadow:
      0 0 2px #f47a14,
      0 0 4px #f47a14,
      0 0 6px #f47a14;
  }
}

.main-title-h2 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.main-title-h3 {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: capitalize;
}


.main-title-h4 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: capitalize;
}

.main-title-h5 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

.main-title-h6 {
 font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: capitalize;
}

.short-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1875rem, 0.9875rem + 1vw, 2.1875rem);
  line-height: 1.2;
  font-weight: 600;
  color: #f47a14;
  display: block;
  margin-bottom: 20px;
}

.text-pink {
  color: #F2436E;
}

.text-p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #101828;
}
.text-top{
  padding: 10px 30px;
  display: block;
  background: #fff;
  color: #101828;
  font-family: "Poppins", sans-serif;
   font-size: clamp(0.8125rem, 0.4784rem + 0.5388vw, 1.125rem);
   font-weight: 400px;
   border: 1px solid #F2436E;
   border-radius: 100px;
   margin: 0 auto 20px;
   width: max-content;
}

.text-top svg{
  margin-right: 5px;
} 

.p-100 {
  padding: 100px 0;
}

.p-50 {
  padding: 50px 0;
}

.title-white {
  color: #fff;
}

.title-black {
  color: #000;
}

.primary-btn {
  position: relative;
 font-size: clamp(0.875rem, 0.6078rem + 0.431vw, 1.125rem);
  color: #fff;
  background: #1759A5;
  border-radius: 10px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  transition: 0.3s ease-in-out;
  border: 1px solid #1759A5;
}

.primary-btn:hover::before {
  width: 160%;
}

.primary-btn:hover {
  color: #1759A5;
  background-color: #fff;
}


.secondary-btn {
  position: relative;
 font-size: clamp(0.875rem, 0.6078rem + 0.431vw, 1.125rem);
  border: 2px solid #F2436E;
  color: #fff;
  background: #F2436E;
  border-radius: 10px;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  padding: 0px 20px;
  transition: 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
  min-width: 200px;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #fff;
  z-index: -1;
  transition: all 1s;
}

.secondary-btn:hover::before {
  width: 160%;
}

.secondary-btn:hover {
  color: #F2436E;
}


.listing li{
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
  color: #101828;
  margin-bottom: 10px;
}

.listing li svg{
  margin-right: 5px;
}

/* header css start */


header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: all 0.3s ease;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideSticky 0.3s ease forwards;
}

.sticky-header .get-quote-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

@keyframes slideSticky {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.get-quote-btn:hover {
  color: #fff;
}

header .navbar .collapse .navbar-nav .nav-item a {
  font-weight: 500;
  font-size: 16px;
  color: #1E2939;
  transition: 0.3s ease-in-out;
  padding-right: 1rem;
  padding-left: 1rem;
  position: relative;
}


.white-header .navbar .collapse .navbar-nav .nav-item a {
  color: #fff;
}

.white-header .get-quote-btn {
  color: #fff;
}

.white-header.sticky-header .navbar .collapse .navbar-nav .nav-item a {
  color: #000;
}

header .navbar .collapse .navbar-nav .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1759A5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

/* Show underline on hover */
header .navbar .collapse .navbar-nav .nav-item a:hover::after {
  transform: scaleX(1);
}

header .navbar .collapse .navbar-nav .nav-item a:hover {
  color: #1759A5;
}

/* header .navbar .collapse .navbar-nav .nav-item .nav-link.active {
    color: #f47a14;
} */


.custom-dropdown {
  position: relative;
}

.custom-dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFF;
  border-radius: 8px;
  min-width: 180px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.white-header .custom-dropdown .dropdown-list li .dropdown-item {
  color: #000 !important;
}

.custom-dropdown .dropdown-item.active,
.custom-dropdown .dropdown-item:active {
  background-color: transparent !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent !important;
  color: inherit !important;
  /* Keeps the original text color */
  outline: none !important;
  /* Optional: removes focus outline if unwanted */
  box-shadow: none !important;
  /* Optional: removes Bootstrap’s shadow focus */
}

.dropdown-item:focus {
  background-color: transparent !important;
}

.custom-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown .dropdown-list li {
  list-style: none;
}

.custom-dropdown .dropdown-list li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.custom-dropdown .dropdown-list li a:hover {

  color: #000 !important;
}


/* header css end */



/* main banner css */

.main-banner{
  padding:70px 0 50px 0;
}

.main-banner h1{
  position: relative;
} 

.main-banner h1:after{
  position: absolute;
  content: "";
  right: 50px;
  bottom: 5px;
  background-image: url("../images/wave.webp");
  background-repeat: no-repeat;
  width: 106px;
  height: 43px;
} 
.blue-banner{
  background:#1759A5 ;
  border-radius: 20px;
  padding: 40px 30px;
}

.blue-banner span{
  display: block;
  margin-bottom: 10px;
  font-size: clamp(0.9375rem, 0.403rem + 0.8621vw, 1.4375rem);
  color: #fff;
  font-weight: 400;
  
}

.btn-box{
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  border: 1px solid #fff;
  font-size: clamp(0.8125rem, 0.4784rem + 0.5388vw, 1.125rem);
  border-radius: 50px;
}

.btn-box:hover{
  color: #fff;
}

.blue-banner.back-img-banner{
    min-height: 270px;
    padding: 20px;
    
}

.blue-banner.back-img-banner .btn-box{
  margin-top: 50px;
  display: inline-block;
}



/* stats numbers */
.stats-numbers .main-boxes{
  display: flex;
  column-gap: 20px;
}


.stats-numbers{
background: linear-gradient(328.99deg, rgba(23, 89, 165, 0.05) -6.21%, rgba(246, 247, 248, 0.5) 96.61%);
}

.main-boxes .box-item{
  height: 100%;
  border-radius: 20px;
  padding: 40px 30px;
  background: #FFFFFF;
border: 1px solid #F0F0F0;
box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
border-radius: 20px;
position: relative;
 transition: all 0.3s ease; /* Smooth animation */
}

.main-boxes .box-item:hover {
  transform: translateY(-10px); /* Smooth lift */
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15); /* Deeper shadow */
  border-color: #e5e5e5;
}

.main-boxes .box-item .icon{
  position: absolute;
  right: 20px;
  content: "";
  top: 15px;
}

.main-boxes .box-item .content span{
  display: block;
  color: #1C1C1C;
  font-size: clamp(0.8125rem, 0.4784rem + 0.5388vw, 1.125rem);
  margin-bottom: 20px;
  font-weight: 400;
} 

.main-boxes .box-item .content p{
  margin-bottom: 0;
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
}


/* Tailored Slider */

.swiper.servicesSwiper{
  height: 100%;
  overflow: visible;
}

.tailored-software .service-card{
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  height: 340px;
  padding-top: 40px;
  padding-left: 50px;
}

.tailored-software .service-card .service-content{
  max-width: 65%;
}

.tailored-software .service-card .service-content p{
  margin-bottom: 0;
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
}

.tailored-software .service-card .btn{
  position: absolute;
  bottom: 20px;
  padding: 0;
}

.tailored-software .service-card .btn .learn-btn{
  color:#fff;
 font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
}


/* marquee sec */
.marquee-section .col-12.col-md-12.col-lg-12.m-auto {
  overflow: hidden;
  position: relative;
}

  .marquee-track {
    display: flex;
    animation: scrollMarquee 10s linear infinite;
    justify-content: center;
  }

  .marquee-item {
    flex: 0 0 auto;
    margin: 0 40px;
  }
    /* img {
      height: 40px;
      object-fit: contain;
    } */

@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* podcast sec */
.health-podcast .box{
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
}

.health-podcast .box .content .info-main{
  display: flex;
  align-items: center;
  column-gap: 40px;
  margin-bottom: 20px;
}

.info-both {
    display: flex;
    justify-content: space-between;
}

.health-podcast .box .content .info-main span{
  font-size: 14px;
}

.health-podcast .box .content .info-main .date{
  color: #1759A5;
  padding: 5px 15px;
  background:#E7EDF5 ;
  border-radius: 50px;
  display: block;
}

.health-podcast .box .content .info-main .date svg{
  margin-right: 5px;
}


.health-podcast .box .content .info-bottom{
  margin-top: 20px;
}

.health-podcast .box .content .info-bottom .info-item .info-flex{
  display: flex;
}

.health-podcast .box .content .info-bottom .info-item .content .name{
  font-size: 14px;
  color: #101828;
  display: block;
}

.health-podcast .box .content .info-bottom .info-item .content .jd{
  font-size: 12px;
  color: #6A7282;
}

.health-podcast .box .content .info-bottom .info-item .play-btn{
  background: #1759A5;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content ;
  font-size: 14px;
  border-radius: 100px;
  padding: 0 25px;
  color: #fff;
}

.health-podcast .box .content .info-bottom .info-item .play-btn svg{
  margin-right: 8px;
}

/* how work */

.how-work .work-box{
  height: 165px;
  padding: 30px;
  background: #FBFBFB;
  border: 1px solid #10182845;
  border-radius: 20px;
  transition: 0.3s ease-in-out;
  margin-bottom: 20px;
}
.how-work .work-box:last-child{
  margin-bottom: 0;
}

.how-work .work-box:hover{
  border: 1px solid #F2436E;
}

.how-work .work-box .work-item{
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
}

.how-work .work-box .work-item .work-num{
  font-size: clamp(1rem, 0.3319rem + 1.0776vw, 1.625rem);
  font-weight: 600;
  color: #000;
}

/* Case Health */
/* .swiper.caseSwiper {
    overflow: visible;
    
} */

.case-health{
  position: relative;
}

/* .case-health:after{
  position: absolute;
  content: "";
  top: 215px;
  left: 0;
  background: #fff;
  height: 555px;
  width: 250px;
  z-index: 111;
  border-radius: 20px;
} */

.case-health .case-box{
  background: #E7F4FB;
  border-radius: 20px;
  padding: 60px 0 60px 60px;
  display: flex;
  align-items: center;
  flex-flow: column;
}

.case-health .case-box span{
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.case-health .case-box .detail{
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 20px;
}

.case-health .case-box .detail span{
  font-size: 14px;
  padding: 5px 20px;
  display: block;
  border-radius: 50px;
}

.case-health .case-box .case-btn{
  background: transparent;
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 10px;
  width: max-content;
}

/* why choose */
.why-choose-leaders .choose-box{
  background: #FFFFFF;
border: 1px solid #F0F0F0;
box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1);
border-radius: 20px;
padding: 30px 20px;
height: 100%;
}
.why-choose-leaders .choose-box p{
  max-width: 80%;
} 

.awards .awards-main{
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* cta */

.cta .cta-box{
  padding: 0px 30px 0px 60px;
  aspect-ratio: 1272 / 338;
}



/* services page css */

.main-banner.services-banner{
  padding: 100px 0;
}

.main-banner.services-banner h1:after{
 display: none;
}


.complex-solutions .solutions-box{
  background: #F8FAFC;
  border-radius: 20px;
  height: 100%;
}

.complex-solutions .solutions-box .img{
  position: relative;
} 

.complex-solutions .solutions-box .img img{
  min-width: 455px;
}

.complex-solutions .solutions-box .img .head {
    position: absolute;
    bottom: 25px;
    left: 30px;
}

.complex-solutions .solutions-box .img .head h3{
  font-size: clamp(0.9375rem, 0.2694rem + 1.0776vw, 1.5625rem);
  max-width: 90%;
}

.complex-solutions .solutions-box .content{
  padding: 20px 30px;
}

.complex-solutions .solutions-box .content .solution-btn a{
  margin-top: 30px;
}

.complex-solutions .solutions-box .content .solution-btn a{
  height: 35px;
  display: inline-block;
  min-width: 120px;
  line-height: 35px;
  padding: 0 15px;
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
  color: #101828;
  border: 1px solid #F2436E;
  border-radius: 5px;
}

.complex-solutions .solutions-box .content .solution-btn a svg{
  margin-left: 5px;
}


.how-work.how-work-service .work-box{
  height: 120px;
}

.how-work .work-box .work-item{
  column-gap: 20px;
}


/* About Page css */

.main-banner.about-banner{
  padding: 150px 0;
}

.main-banner.about-banner h1:after{
 display: none;
}

.who-we-are a{
  width: max-content;
}

.who-we-are a svg{
  margin-left: 10px;
}

.who-we-are .numbers-flex {
    margin-top: 50px;
    display: flex;
    column-gap: 100px;
}


.drives-forward .box{
  height: 100%;
  border-radius: 18px;
  border: 1px solid #F3F4F6;
  max-width: 296px;
}

.drives-forward .box h3{
  font-size: clamp(1rem, 0.5991rem + 0.6466vw, 1.375rem);
}

.drives-forward .box img{
  border-radius: 18px;
}

.drives-forward .box .content{
  padding: 35px 20px;
  background: #fff;
}

.how-work.how-work-service.how-work-about .work-sroll {
    height: 380px;
    overflow: auto;
     /* Hide scrollbar – Chrome, Safari, Edge */
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE & old Edge */
}

.how-work.how-work-service.how-work-about .work-sroll::-webkit-scrollbar {
    display: none;              /* Chrome, Safari */
}

.how-work.how-work-service.how-work-about .work-box {
    height: 95px;
    padding: 20px;
}


/* Insights Page Css*/
.health-podcast .podcast-list{
  margin-top: 25px;
   margin-bottom: 10px;
}

.health-podcast .podcast-list ul li{
 font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
 color: #364153;
 margin-bottom: 10px;
}

.health-podcast .podcast-list ul li svg{
  margin-right: 10px;
}
 
.complex-solutions.on-demand-webinars .on-demand-grid{
  margin-top: 30px;
}
.complex-solutions.on-demand-webinars .on-demand-grid ul{
  display: grid;
    grid-template-columns: 1fr 1fr;
}

.complex-solutions.on-demand-webinars .on-demand-grid ul li{
  border-radius: 10px;
  padding: 20px 15px;
  background: linear-gradient(90deg, #F9FAFB 0%, #FFFFFF 100%);
  border: 1px solid #E5E7EB;
  font-size: clamp(0.8125rem, 0.6789rem + 0.2155vw, 0.9375rem);
   color: #364153;
   text-align: left;
   margin-bottom: 15px;
   margin-right: 10px;
}
.complex-solutions.on-demand-webinars .on-demand-grid ul li svg{
  margin-right: 5px;
}

.complex-solutions.on-demand-webinars .info-list ul{
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.complex-solutions.on-demand-webinars .info-list ul li{
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
 color: #364153;
}

.complex-solutions.on-demand-webinars .solutions-box .content .solution-btn a{
  text-align: center;
  height: 40px;
  min-width: 100%;
  padding: 0 15px;
  color: #fff;
  border-radius: 10px;
  background: #1759A5;
  border: 1px solid #1759A5;
}

.cta.cta-insights .cta-box{
  aspect-ratio: 1289 / 365;
}

.cta-newsletter .cta-box{
  aspect-ratio: 1192 / 421;
}

.newsletter-form{
  margin-top: 30px;
  margin-bottom: 30px;
}

.newsletter__control{
  display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}
.newsletter-form input{
  height: 58px;
  background: #fff;
  border-radius: 10px;
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
}
.newsletter-form input:focus{
  outline: none;
}

.article-research .articles-case{
  margin-top: 30px;
}

.article-research .articles-case ul{
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.article-research .articles-case ul li{
  border-radius: 10px;
  padding: 15px 15px;
  background: linear-gradient(90deg, #F9FAFB 0%, #FFFFFF 100%);
  border: 1px solid #E5E7EB;
  font-size: clamp(0.75rem, 0.6164rem + 0.2155vw, 0.875rem);
   color: #364153;
   text-align: left;
   display: flex;
   align-items: center;
   column-gap: 10px;
}

.article-research .articles-case ul li svg{
  flex: 0 0 20px;
}


.article-research .box{
  border-radius: 16px;
  height: auto;
  border: 1px solid #F3F4F6;
  max-width: 616px;
}

.article-research .box .img img{
  border-radius: 16px;
}

.article-research .box .content{
  padding: 30px 20px;
}

.article-research .box .content h3{
  font-size: clamp(0.9375rem, 0.6034rem + 0.5388vw, 1.25rem);
}

.article-research .box .content p{
 font-size: clamp(0.8125rem, 0.6789rem + 0.2155vw, 0.9375rem);
}

.article-research .box .content a{
  color: #1759A5;
  font-size: clamp(0.8125rem, 0.6789rem + 0.2155vw, 0.9375rem);
}

.article-research .box .content a svg{
  margin-left: 10px;
}


/* Contact Page Css */

.main-banner.services-banner .on-demand-grid{
  margin-top: 20px;
}

.main-banner.services-banner .on-demand-grid ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.main-banner.services-banner .on-demand-grid ul li{
  border-radius: 10px;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
   color: #fff;
   text-align: left;
   margin-bottom: 15px;
   margin-right: 10px;
}

.drives-forward.connect-team .box{
  max-width: 400px;
}
.drives-forward.connect-team .box .loca-btn svg{
  margin-right: 5px;
}
.drives-forward.connect-team .box .loca-btn{
  font-size: clamp(0.8125rem, 0.6121rem + 0.3233vw, 1rem);
  color: #1759A5;
  margin-bottom: 10px;
  display: block;
}


/* WRAPPER */
.form-wrapper {
  width: 100%;
  max-width: 576px;
  padding: 20px;
  margin: 0 auto;
}

/* CARD */
.contact-card {
  background: #1e3552;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* GRID ROW */
.form-wrapper .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

/* FIELD */
.form-wrapper .field {
  display: flex;
  flex-direction: column;
}

.field.full {
  margin-bottom: 20px;
}

/* LABEL */
.form-wrapper label {
  font-size: 13px;
  margin-bottom: 6px;
  color: #cfe0f1;
}

.form-wrapper label span {
  color: #ff4d7e;
}

/* INPUTS */
.form-wrapper input,
.form-wrapper textarea {
  background: #263f5f;
  border: 1px solid #355b82;
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.form-wrapper input::placeholder,
.form-wrapper textarea::placeholder {
  color: #9fb4ca;
}

.form-wrapper input:focus,
.form-wrapper textarea:focus {
  border-color: #ff4d7e;
  box-shadow: 0 0 0 2px rgba(255,77,126,0.25);
}

/* BUTTON */
.form-wrapper button {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #ff4d7e, #ff6a8f);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.form-wrapper s button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,77,126,0.35);
}

/* FOOT NOTE */
.form-wrapper .note {
  text-align: center;
  font-size: 12px;
  color: #a9bfd6;
  margin-top: 14px;
}

/* footer start */
.footer {
  background-image: url("../images/footer-back.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 0 !important;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

/* .footer-section{
  flex: 0 0 33.33%;
}  */

.footer-section .footer-item {
  margin-top: 30px;
}


.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
}

.footer a:hover,
.footer .highlight {
  color: #F2436E;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 20px;
}

.footer-section .footer-item p{
  max-width: 70%;
}


.footer-section ul li a {
  color: white;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a svg{
  margin-right: 5px;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #F2436E;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-section ul li a:hover {
  color: #F2436E;
}

.footer-bottom{
  padding: 20px 0;
}

.footer hr{
  border: 1px solid #E5E7EB;
}


/* footer end */

