@font-face {
  font-family: popins;
  src: url(../fonts/Poppins-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-popins: popins;
}
:root {
  --primary-color: #242424;
  --border-color: #ffcc00;
  --hover-color: #2662fd;
  --secondary-color: #ffffff;
  --header-color: #80a3ff;
  --card-background-color: #c6c6c6;
  --text-color: #262626;
  --email-background-color: #c8c8c8;
  --social-color: #999999;
  --btn-color: #0072ff;
  --slider-color: #ffbf00;
  --offcanvsbckground-color: #c3d4ff;
  --choose-background:#C6D6FF;
}
main{
  position: relative;
  z-index: -1;
}
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--font-popins);
}
a {
  text-decoration: none !important;
}
ul {
  list-style-type: none;
}
body {
  color: #0f172a;
  line-height: 1.6;
  background: #fff;
  position: relative;
  z-index: -1;
 overflow: hidden !important;
}
.slider-container{
  max-width: 1950px;
  margin: 0 -15px;
  padding: 0 15px;
  width: 100%;
}
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.modal-row{
  flex-direction: row;
  justify-content: center;
}
.row {
  display: flex;
  align-items: center;
}
.footer-row {
  border-top: 1px solid var(--social-color);
  margin-top: 70px;
}
.col-6 {
  width: 50%;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.service-title {
  text-align: center;
}
a {
  text-decoration: none;
  color: #2563eb;
}


/* Banner Section  */
.banner-sec {
  min-height: 760px;
  background: linear-gradient(180deg, #8ec0f7 0%, #f5f9ff 85%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
 .banner-container{
  margin-top: 200px !important;
}
.banner-sec::after {
  /* content: ""; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(245, 249, 255, 0) 0%, #f5f9ff 100%);
}

.banner-hdr {
  max-width: 560px;
}

.title1 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 22px;
}

.title1 span {
  display: block;
  margin-top: 8px;
  color: #2f6bff;
  font-weight: 800;
}

.banner-desc {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.75;
  color: #6b6b6b;
  margin-bottom: 36px;
}

.primary-btn {
  display: inline-block;
  background: #0b63ff;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.primary-btn::before,
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #ffffff;
  z-index: -1;
  transition: 0.4s ease;
}
.primary-btn::before {
  left: -50%;
}
.primary-btn::after {
  right: -50%;
}
.primary-btn:hover::before {
  left: 0;
}
.primary-btn:hover::after {
  right: 0;
}
.primary-btn:hover {
  color: #0b63ff;
  outline: 1px solid #0b63ff;
}
.banner-img-wrap {
  position: relative;
}
.banner-img-wrap {
  max-width: 480px;
  z-index: 1;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.16))
    drop-shadow(0 0 40px rgba(47, 107, 255, 0.15));
}
.banner-img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.banner-badge {
  position: absolute;
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  margin: 0 auto 40px;
  transition: 0.3s ease;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2), 0px 15px 40px rgba(0, 0, 0, 0.12);
}
.banner-badge-img {
  max-width: 47px;
}
.banner-badge-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
}
.banner-badges-icon {
  width: 36px;
  bottom: 75%;
  left: 70%;
  position: absolute;
  cursor: pointer;
}
.banner-badges-icon > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.badge-text span {
  font-size: 15px;
  font-weight: 500;
  color: #0b63ff;
}

.badge-left-top {
  top: 150px;
  left: -80px;
}

.badge-right-top {
  top: 150px;
  right: -90px;
}

.badge-left-bottom {
  bottom: 40px;
  left: -60px;
}
.banner-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.28),
    0px 20px 50px rgba(0, 0, 0, 0.18);
}
/* About */
.about {
  padding: 120px 0;
  background: #eef2ff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-col {
  flex: 1;
}
.about-image {
  padding-right: 40px;
}
.about-image img {
  max-width: 420px;
  width: 100%;
}

.about-content {
  padding-left: 40px;
  max-width: 609px;
}
.about-image img {
  width: 100%;
  max-width: 460px;
  display: block;
}
.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #2563eb;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  max-width: 520px;
  margin-bottom: 32px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 16px;
}
.about-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.arrow-icon {
  width: 18px;
  height: auto;
  margin-right: 12px;
}
.arrow-icon-24 {
  width: 18px;
  height: auto;
  margin-right: 12px;
  margin-bottom: 35px;
}

.about-content li::before {
  content: "";
  font-size: 18px;
}

/* Services */
.services {
  background: #ffc34d;
  padding: 90px 0 110px;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
}

/* Title */
.services-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
}

/* Subtitle */
.services-subtitle {
  max-width: 520px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  color: #3f3f3f;
}

.service-card {
  max-width: 419px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  z-index: -1;
  position: relative;
   box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 65px rgba(0, 0, 0, 0.15);
}
.swiper {
  max-width: 100%;
  height: 705px;
}
.swiper-slide {
  max-width: 419px;
  height: 705px;
  cursor: pointer;
}

.card-img {
  position: relative;
  max-width: 419px;
  height: 442px;
  /* overflow: hidden; */
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .card-img img {
  transform: scale(1.08);
}
.card-icon {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-icon img {
  width: 30px;
  height: 30px;
}

.service-card:hover .card-icon {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.card-content {
  padding: 25px;
  height: 263px;
  max-width: 419px;
  text-align: center;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e1e1e;
}

.card-content p {
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
  margin-bottom: 18px;
  max-width: 321px;
}
.card-content a {
  position: relative;
}

.card-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: width 0.3s ease;
}

.service-card:hover .card-content a::after {
  width: 100%;
}

.card-content a {
  font-size: 14px;
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

.cta {
  background: linear-gradient(90deg, #7bb6ff 0%, #2563eb 100%);
  padding: 80px 0;
}
.cta-row {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-col {
  flex: 1;
}

.cta-image {
  width: 100%;
  max-width: 520px;
  display: block;
}
.cta-content {
  color: #000000;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--secondary-color);
  max-width: 474px;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 28px;
 color: var(--secondary-color);
}
.cta-phone>p{
  color: var(--secondary-color);
}
.phone-circle{
  width: 57px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--hover-color);
  color: var(--secondary-color);
  border-radius: 50%;
}

.cta-phone span {
  opacity: 0.9;
}
.cta-btn {
  padding: 12px 28px;
  border-radius: 12px;
  border: 1.5px solid var(--primary-color);
  background: transparent;
  color: #000;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden !important;
  z-index: 1;
  display: inline-block;
}
.cta-btn::before,
.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
.cta-btn::before {
  left: -50%;
}
.cta-btn::after {
  right: -50%;
}
.cta-btn:hover::before {
  left: 0;
}
.cta-btn:hover::after {
  right: 0;
}
.cta-btn:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
/* .cta-btn:hover {
  background: #ffffff;
  color: #2563eb;
} */
.trending {
  padding: 80px 0;
  background: #ffffff;
}

/* choose-sec */
.choose-sec{
  padding: 100px 0;
  background: var(--choose-background);
  position: relative;
  z-index: -2;
}
.choose-sec::after{
 content: '';
 width: 100%;
 height: 40%;
 position: absolute;
 bottom: 0;
 background: var(--secondary-color);
 z-index: -1;
}
.choose-header>.title1{
  margin-bottom: 111px;
  color: var(--primary-color);
  margin-left: auto;
  max-width: 657px;
}
.choose-header>.title1>span{
  color: var(--hover-color);
}
.choose-header{
  max-width: 700px;
}
.choose-card{
  max-width: 530px;
  height: 730px;
  border-radius: 20px;
  border: none;
  position: relative;
  transition: 0.5s all ease;
   box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.2), 0px 15px 40px rgba(0, 0, 0, 0.12);
   margin: 0 auto ;
}
.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.28),
    0px 20px 50px rgba(0, 0, 0, 0.18);
}
.card-top{
  max-width: 572px;
  width: 100%;
  height: 75px;
  font-size: 20px;
  text-align: center;
  position: absolute;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  top: -8%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--border-color);
}
.choose-card-body{
  padding: 60px 17px;
  height: 100%;
}
.choose-card-header{
  text-align: center;
  margin-bottom: 72px;
}
.choose-card-header>.title1>p{
  display: inline;
  margin-left: 10px;
}
.choose-card-header>.title1{
  color: var(--hover-color);
  font-weight: 600;
}
.choose-card-header>.title1>span{
  font-size: 20px;
  display: inline;
}
.choose-card-list{
  margin: 0 auto;
}
.choose-card-list>li{
  font-size: 20px;
  font-weight: 500;
  display: flex;
}
.list-icon{
  width: 24px;
  margin: 0 31px 0 0;
}
.list-icon>img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.choose-card-btn{
  text-align: center;
}
.choose-btn{
  padding: 25px 45px;
  border-radius: 8px;
  background: var(--hover-color);
  margin-top: 60px;
  color: var(--secondary-color);
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.choose-btn::after,
.choose-btn::before{
  content: '';
  width: 51%;
  height: 100%;
  background: var(--secondary-color);
  position: absolute;
  top: 0;
  z-index: -1;
  transition: 0.4s all ease
}
.choose-btn::after{
  right: -51%;
}
.choose-btn::before{
  left: -51%;
}
.choose-btn:hover::after{
  right: 0;
}
.choose-btn:hover::before{
  left: 0;
}
.choose-btn:hover{
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 48px;
  text-align: center;
}

.section-title span {
  color: #2563eb;
}
.trending{
  background: var(--choose-background);
}
.trend-row {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.trend-card {
  max-width: 630px;
  height: 780px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid #2563eb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  margin: 0 0 20px;
}

.trend-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.22);
}

.trend-img {
  max-width: 100%;
  height: 560px;
  border-radius: 14.99px;
  /* overflow: hidden; */
}

.trend-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  border-top-left-radius: 14.99px;
  border-top-right-radius: 14.99px;
}

.trend-card:hover .trend-img img {
  transform: scale(1.05);
}

.trend-content {
  padding: 26px 40.55px 89px;
  max-width: 630px;
 height: 100%;
}

.trend-content h3 {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.trend-content p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin: 10px 0;
  max-width: 540px;
}

.trend-content strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  
}

.trend-content a {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.trend-content a:hover {
  text-decoration: underline;
}

.view-more {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.trend-content>h3{
  font-size: 45px ;
  font-weight: 600;
  margin-bottom: 3.7px;
  display: block;
}
.view-btn {
  width: 150px;
  height: 48px;
  background: transparent;
  border: 1.5px solid #2563eb;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.view-btn::before,
.view-btn::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--hover-color);
  z-index: -1;
  transition: 0.4s ease;
}
.view-btn::before {
  left: -50%;
}
.view-btn::after {
  right: -50%;
}
.view-btn:hover::before {
  left: 0;
}
.view-btn:hover::after {
  right: 0;
}
.view-btn:hover {
  color: var(--secondary-color);
  outline: 1px solid var(--hover-color);
}
/* .view-btn:hover {
  background: #2563eb;
  color: #ffffff;
} */
/* footer-sec */
.footer-sec {
  background: var(--primary-color);
  padding: 70px 0 30px;
}
.footer-header {
  text-align: center;
  color: var(--header-color);
  font-size: 36px;
  font-weight: 500;
}
.footer-form {
  text-align: center;
  margin: 32px 0 70px;
}
.footer-form-cont {
  max-width: 774px;
  height: 80px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--secondary-color);
}
#email {
  border: none;
  outline: none;
  width: 570px;
  height: 76px;
  background: var(--secondary-color);
  border-radius: 20px;
  padding-left: 20px;
}
#submit {
  background: var(--hover-color);
  border: none;
  width: 184px;
  height: 70px;
  /* padding: 26px 64.5px; */
  border-radius: 19px;
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin: 5px 5px 5px 0;
}
#submit::before,
#submit::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: 0.4s ease;
}
#submit::before {
  left: -50%;
}
#submit::after {
  right: -50%;
}
#submit:hover::before {
  left: 0;
}
#submit:hover::after {
  right: 0;
}
#submit:hover {
  color: var(--hover-color);
  outline: 1px solid var(--hover-color);
}
.footer-social,
.footer-social > ul {
  display: flex;
  align-items: center;
  padding: 0;
}
.footer-social > ul > li {
  margin-right: 21px;
}
.footer-social-link {
  font-size: 24px;
  color: var(--social-color);
  transition: 0.6s all linear;
}
.footer-social-link:hover {
  transform: translateY(-30%);
}
.footer-main-cont > p {
  color: var(--social-color);
  font-size: 12px;
   margin-bottom: 40px;
}
.footer-link {
  color: var(--social-color);
  font-size: 16px;
}
.footer-link:hover {
  color: var(--header-color);
}
.footer-cont-header {
  color: var(--hover-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-cont > ul {
  padding: 0 !important;
}
.footer-cont > ul > li {
  margin-bottom: 8px;
}
.side-box {
  display: flex;
  align-items: center;
  color: var(--social-color);
}
.left-side>a {
  border-right: 1px solid var(--social-color);
  padding-right: 5px;
  font-size: 14px;
  color: var(--social-color);
}
.right-side>a {
  margin-left: 5px;
  font-size: 14px;
  color: var(--social-color);
}
.footer-low-img-cont {
  display: flex;
  align-items: center;
  max-width: 179px;
  margin-left: auto;
  margin-right: 30px;
}
.footer-lower-img {
  max-width: 35px;
  margin-right: 12px;
}
.footer-lower-img>a{
  width: 100%;
}
.footer-lower-img>a> img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-logo {
  max-width: 52px;
  margin-bottom: 40px;
}
.footer-logo > a {
  width: 100%;
}
.footer-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mail-list{
  width: 350px;
}

/* media-quaary */
@media screen and (max-width:1330px){
  .nav-form{
    margin-right: auto;
  }
  .nav-item{
    margin: 0 10px;
  }
  .nav-top-link{
    font-size: 14px;
  }
  .social-link{
    font-size: 14px;
  }
}
/* Responsive */
@media screen and (max-width: 1200px) {
  .banner-row {
    padding: 80px 40px;
  }
  .nav-location{
    margin-right: 10px;
    padding: 8px;
  }
  .nav-link{
    font-size: 14px;
  }
  .nav-top-link > span {
    display: none;
  }
  .nav-link{
    font-size: 14px;
  }
  .drop-link{
    font-size: 14px;
  }
  .nav-top-list>li{
    padding-right: 5px;
    margin-left: 5px;
  }
  .nav-logo{
    margin: 0;
  }
  .offcanvas>ul{
    margin: 0 0 0 10px;
  }
  .primary-btn{
    padding: 14px 24px;
  }
  #search{
    max-width: 196px;
  }
  .title1 {
    font-size: 48px;
    line-height: 1.3;
  }

  .title1 span {
    font-size: 50px;
  }
  #modal-email,
   #modal-password,
   #confirm-password,
   #address{
    width: 406px;
   }
   .input-cont{
    max-width: 406px;
    margin: 0 auto;
   }
   .btn-cont{
    margin-top: 32px;
   }
   .apple-btn,
   .google-btn{
    width: 170px;
   }
  .card-text {
    margin: 10px 0 20px;
  }
  .banner-img img {
    max-width: 420px;
  }
  .badge-left-top {
    top: 80px;
    left: -60px;
    transform: scale(0.9);
  }

  .badge-right {
    right: -40px;
    transform: scale(0.9);
  }

  .badge-bottom {
    bottom: -10px;
    left: -20px;
    transform: scale(0.9);
  }
  .services-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-card {
    margin: 0 15px 30px;
  }
  .banner-img-wrap {
    max-width: 350px;
  }
  .badge-right-top {
    right: -130px;
    max-width: 200px;
    padding: 10px;
  }
  .badge-left-bottom {
    left: -100px;
  }
  .trend-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .trend-card {
    /* width: 520px; */
    height: auto;
  }
  .col-20{
    width: 50%;
  }
  .trend-img {
    height: auto;
  }
  .footer-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .footer-main-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .trend-content {
    padding: 24px;
  }
}

@media screen and (max-width: 991px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .offcanvas {
    flex-direction: column;
    text-align: center;
    position: fixed;
    z-index: 99;
    background: var(--offcanvsbckground-color);
  }
  .offcanvas-backdrop {
    z-index: 9;
  }
  .offcanvas .dropdown-menu {
    position: absolute;
    z-index: 999;
  }
  .offcanvas-header {
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--hover-color);
  }
  .offcanvas > ul {
    background: var(--offcanvsbckground-color);
    margin: 0 !important;
    height: auto;
    border-radius: 0;
  }
  .nav-link {
    margin: 0 0 10px;
  }
  .drop-link {
    margin: 0 0 10px;
  }
  .nav-item {
    margin: 0;
  }
  .nav-btn {
    text-align: center;
  }
  .navbar-toggler {
    padding: 0;
    border: 0;
  }
   .nav-link {
    margin: 0 0 10px;
  }
  .drop-link {
    margin: 0 0 10px;
  }
  .nav-item {
    margin: 0;
  }
  .nav-btn {
    text-align: center;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%232662fd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .nav-top-list>li{
    border: none;
  }
  .nav-form{
    margin: 10px auto 0;
  }
  .modal-dialog{
    flex-direction: column-reverse;
  }
  .modal-content{
    max-width: 600px;
    margin: 0 auto;
  }
  .right-modal{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
  }
  .left-modal{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
  }
  .log-left-cont{
   border-top-left-radius: 20px !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
}
.log-right-modal{
  border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px !important;
    border-top-left-radius: 0;
}
  .primary-btn {
    margin: 0;
  }
  .about-image {
    padding-right: 0;
    margin-bottom: 48px;
  }
  
  .choose-card{
    margin: 50px auto 25px ;
    height: auto;
  }
  .about-content {
    padding-left: 0;
  }
 .about-content>h2{
  text-align: center;
 }
 .about-content>p{
  text-align: center;
 }
  .about-image img {
    margin: auto;
  }

  .about-content p {
    margin: auto;
  }

  .about-content li {
    justify-content: center;
  }
  .about-list li {
    justify-content: center;
    text-align: left;
  }

  .cta-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .cta-image img {
    max-width: 420px;
    margin: auto;
  }

  .cta-phone {
    justify-content: center;
  }
  .choose-header{
    max-width: 657px;
    margin: 0 auto;
  }
  .choose-header>.title1{
 margin: 0 auto;
}
  .trend-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  /* .trend-card {
    width: 460px;
    height: auto;
  } */

  /* .trend-img {
    height: 300px;
  } */
  .banner-img-wrap {
    margin: 0 auto;
  }
  .badge-left-top {
    top: 110px;
    left: -75px;
  }
  .banner-hdr {
    margin: 15px auto;
    text-align: center;
  }
  .banner-desc {
    margin: 20px auto;
  }
  .primary-btn {
    margin: 10px 0;
  }
  .swiper {
    height: auto;
  }
  .swiper-slide {
    height: auto;
  }
  .card-img {
    height: auto;
  }
  .choose-header{
    text-align: center;
  }
  .card-content {
    height: auto;
  }
  .section-title {
    font-size: 26px;
    text-align: center;
  }
  .trend-img{
    height: auto;
  }
  .trend-card {
    margin: 20px auto;
  }
  .trend-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
  }
  .footer-form-cont {
    max-width: 710px;
  }
  #submit {
    margin-left: auto;
  }
  #email {
    width: 500px;
    margin-right: auto;
  }
  .col-20 {
    width: 50%;
  }
  .footer-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .footer-main-cont {
    max-width: 248px;
    margin: 0 auto;
  }
  .view-btn {
    position: relative;
    z-index: 1;
  }
  #submit {
    z-index: 1;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%232662fd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  .footer-form-cont {
    max-width: 560px;
  }
  #submit {
    margin-left: auto;
    width: 150px;
  }
  #email {
    width: 400px;
    margin-right: auto;
    height: 70px;
  }
  .col-20 {
    width: 100%;
  }
  .footer-cont {
    text-align: center;
  }
  .footer-main-cont {
    text-align: center;
  }
  .footer-social > ul {
    max-width: 248px;
    margin: 0 auto;
  }
  .footer-low-img-cont {
    margin: 0 auto;
  }
  .footer-cont > ul > li > a {
    text-align: center;
  }
  .footer-header {
    font-size: 28px;
  }
  .side-box {
    max-width: 344px;
    margin: 0 auto;
  }
  .footer-logo {
    margin: 0 auto 19px;
  }
}
@media (max-width: 768px) {
  .banner-row {
    flex-direction: column;
    padding: 70px 20px 90px;
    text-align: center;
  }
  .services {
    padding: 70px 0;
  }

  .services-title {
    font-size: 30px;
  }

  .service-card {
    width: 100%;
    max-width: 340px;
  }
  .badge-left-bottom {
    padding: 10px;
    left: -70px;
  }
  .trend-row {
    flex-direction: column;
    gap: 24px;
  }
   .nav-top-list > li {
    margin-right: 22px;
  }
  .trend-card {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .trend-img {
    height: auto;
  }

  .trend-content {
    padding: 20px;
  }

  .trend-content h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .trend-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .view-more {
    margin-top: 32px;
  }

  .view-btn {
    width: 140px;
    height: 44px;
    font-size: 13px;
  }
  .footer-cont {
    text-align: center;
    max-width: 500px;
  }
  .footer-main-cont {
    text-align: center;
  }
  .footer-social > ul {
    max-width: 248px;
    margin: 0 auto;
  }
  .slider-card-img {
    max-width: 150px;
  }
  .side-box {
    max-width: 344px;
    margin: 0 auto;
  }
  .footer-low-img-cont {
    margin: 0 auto;
  }
  .mail-list{
  width: 350px;
  margin: 0 auto;
}
.contact-list{
  max-width: 500px;
}
}
@media (max-width: 600px) {
  nav {
    display: none;
  }
  .hero-text h1 {
    font-size: 30px;
  }
  .service-grid,
  .trend-grid {
    grid-template-columns: 1fr;
  }
  .banner-img-wrap {
    max-width: 250px;
  }
  .badge-text {
    font-size: 12px;
  }
  .badge-right-top {
    padding: 5px;
    right: -120px;
    top: 80px;
  }
  .badge-left-bottom {
    padding: 5px;
    left: -85px;
  }
  .badge-left-top {
    padding: 5px;
    left: -85px;
    top: 80px;
  }
  .title1 {
    font-size: 36px;
  }
  .title1 > span {
    font-size: 38px;
  }
  .trend-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .trend-card {
    width: 100%;
    max-width: 520px;
  }
}
@media screen and (max-width: 576px) {
  .cta {
    padding: 60px 0;
  }
    .nav-logo{
    max-width: 30px;
  }
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-btn {
    width: 100%;
  }
  .section-title {
    font-size: 26px;
    text-align: center;
  }
  .title1 {
    font-size: 28px;
  }
  .title1 > span {
    font-size: 32px;
  }
   .modal-content {
    max-width: 400px;
    height: 580px;
    margin: 0 auto;
  }
  #modal-email {
    max-width: 250px;
    margin-bottom: 10px;
  }
  #modal-password {
    max-width: 250px;
    margin-bottom: 10px;
  }
   #confirm-password {
    max-width: 250px;
    margin-bottom: 10px;
  }
   #address {
    max-width: 250px;
    margin-bottom: 10px;
  }
  .modal-btn {
    padding: 16px 26px;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .input-cont {
    max-width: 260px;
  }
  .input-cont-para > p {
    font-size: 14px;
    margin: 0 auto;
  }
  .log-btn {
    font-size: 14px;
  }
  .apple-btn {
    width: 120px;
    height: 45px;
  }
  .google-btn {
    width: 120px;
    height: 45px;
  }
  .apple-img {
    margin: 0 10px 0 0;
  }
  /* .btn-cont {
    max-width: 255px !important;
  } */
  .input-cont-para {
    margin-top: 10px;
  }
  .trend-content {
    padding: 20px;
  }
  .primary-btn {
    padding: 14px 22px;
    font-size: 12px;
  }
  .trend-card {
    max-width: 100%;
  }

  /* .trend-img {
    height: 260px;
  } */
  .choose-card{
    height: auto;
  }
  .choose-card-list>li{
   font-size: 14px;
  }
  .list-icon{
    width: 17px;
  }
  .choose-card-list{
    max-width: 360px;
  }
  .choose-btn{
    padding: 14px 22px;
    font-size: 12px;
  }
  .trend-content {
    padding: 20px;
  }
  #submit {
    margin-left: auto;
    width: 100px;
    font-size: 12px;
  }
  .estimate-sec {
    height: 170vh;
  }
  #email {
    width: 250px;
    margin-right: auto;
    height: 70px;
  }
  .footer-form-cont {
    max-width: 360px;
  }
   .footer-link{
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .banner-img-wrap {
    max-width: 150px;
  }
  .badge-text {
    font-size: 12px;
  }
  .badge-right-top {
    padding: 5px;
    right: -150px;
    top: 40px;
  }
  .badge-left-bottom {
    padding: 5px;
    left: -110px;
  }
  .badge-left-top {
    padding: 5px;
    left: -120px;
    top: 30px;
  }
  .banner-badge-img {
    max-width: 40px;
  }
  .trend-content h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .modal-content {
    max-width: 350px;
    margin: 0 auto;
  }
  #modal-email {
    max-width: 250px;
    margin-bottom: 10px;
  }
  #modal-password {
    max-width: 250px;
    margin-bottom: 10px;
  }
  .modal-btn {
    padding: 16px 80px;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .input-cont {
    max-width: 260px;
  }
  .apple-btn {
    max-width: 120px;
  }
  .google-btn {
    max-width: 120px;
  }
  .trend-content p {
    font-size: 14px;
  }

  .trend-content strong {
    font-size: 13px;
  }
  .follow-link{
    font-size: 14px;
  }
  .nav-top-list{
    padding: 0;
  }
  .nav-top-list>li{
    margin-right: 8px;
  }
}
@media (max-width: 480px) {
  .service-card {
    width: 100%;
    max-width: 360px;
  }
  .banner-badge-img {
    max-width: 30px;
  }
  .badge-text > span {
    font-size: 10px;
  }
  .badge-text > strong {
    font-size: 10px;
  }
  .badge-right-top {
    padding: 5px;
    right: -95px;
    top: 40px;
  }
  .badge-left-bottom {
    padding: 5px;
    left: -70px;
    margin: 0;
  }
  .badge-left-top {
    padding: 5px;
    left: -80px;
    top: 30px;
  }
  /* .trend-img {
    height: 230px;
  } */

  .trend-content {
    padding: 18px;
  }

  .view-btn {
    width: 140px;
    height: 44px;
    font-size: 13px;
  }
}
@media screen and (max-width: 400px) {
  #submit {
    width: 90px;
  }
  #email {
    width: 230px;
  }
  .apple-btn{
    max-width: 100px;
  }
  .google-btn{
    max-width: 100px;
  }
}
@media screen and (max-width: 380px) {
  .banner-img-wrap {
    max-width: 130px;
  }
  .badge-left-bottom {
    padding: 5px;
    left: -80px;
    margin: 0;
  }
  .badge-left-top {
    padding: 5px;
    left: -80px;
    top: 30px;
  }
  .choose-card-list{
    padding: 0;
  }
  .choose-btn{
    padding: 12px 18px;
  }
  .choose-card-list>li{
   font-size: 12px;
  }
  .list-icon{
    width: 14px;
  }
  /* .trend-img {
    height: 210px;
  } */

  .trend-content h3 {
    font-size: 18px;
  }

  .trend-content p {
    font-size: 13px;
  }

  .view-btn {
    width: 130px;
    height: 42px;
    font-size: 12px;
  }
}
@media screen and (max-width: 360px) {
  #submit {
    margin-left: auto;
    width: 90px;
  }
  #email {
    width: 190px;
    margin-right: auto;
    height: 70px;
  }
  .footer-form-cont {
    max-width: 310px;
  }
  .left-side {
    font-size: 12px;
  }
  .right-side {
    font-size: 12px;
  }
  .side-box {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .banner-sec {
    padding: 40px 0 60px;
    min-height: auto;
    text-align: center;
  }

  .banner-hdr {
    max-width: 100%;
  }

  .title1 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .title1 span {
    font-size: 24px;
  }

  .banner-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .banner-btn {
    margin-bottom: 28px;
  }

  .primary-btn {
    width: 100%;
    max-width: 260px;
    padding: 14px 0;
    font-size: 14px;
    margin: 0 auto;
  }
  .banner-img-wrap {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner-img {
    display: none;
  }
  .banner-badge {
    position: static;
    max-width: 260px;
    margin-bottom: 12px;
    padding: 12px 14px;
    justify-content: flex-start;
  }

  .banner-badge:last-child {
    margin-bottom: 0;
  }

  .banner-badge img {
    width: 28px;
    height: 28px;
  }

  .badge-text strong {
    font-size: 13px;
  }

  .badge-text span {
    font-size: 13px;
  }
  .badge-left-top,
  .badge-right-top,
  .badge-left-bottom {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .about-container {
    flex-direction: column;
    gap: 28px;
  }

  .about-image img {
    max-width: 200px;
    margin: 0 auto;
  }

  .about-content h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .about-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-list li {
    font-size: 13px;
    gap: 8px;
  }

  .arrow-icon {
    width: 14px;
  }
  .trend-row {
    flex-direction: column;
    gap: 20px;
  }

  .trend-card {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .trend-img {
    height: 200px;
  }

  .trend-card img {
    height: 200px;
  }

  .trend-content {
    padding: 16px;
  }

  .trend-content h3 {
    font-size: 18px;
  }

  .trend-content p {
    font-size: 13px;
  }

  .trend-content strong {
    font-size: 13px;
  }

  .view-more {
    margin-top: 32px;
  }

  .view-btn {
    width: 120px;
    height: 40px;
    font-size: 12px;
  }
}
