@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');



body {
    margin: 0;
    padding: 0;
}

.features  {
  padding: 5rem 0rem 2rem 0rem;
}

  .items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
  }
  
  .items .item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 392px;
    height: 299px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    z-index: -1;
    opacity: 0;
  }
  
  .item img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
    filter: blur(8px);
    -webkit-filter: blur(2px);
  
  }
  
  .item.active {
    opacity: 1;
    z-index: 99;
    box-shadow: 0px 0px 105px -35px rgba(0, 0, 0, 0.75);
  }
  
  .item.prev {
    z-index: 2;
    height: 247px;
    width: 338px;
    font-size: smaller;
    opacity: 0.25;
    transform: translate(-125%, -50%);
  }
  
  .item.next {
    z-index: 2;
    height: 247px;
    width: 338px;
    font-size: smaller;
    opacity: 0.25;
    transform: translate(25%, -50%);
  }
  
  .items .button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 929px;
    z-index: 100;
  }
  
  .button-container .button {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    position: relative;
    opacity: 0.75;
    transition: all 300ms ease-in-out;
  }
  
  .button-container .button:hover {
    opacity: 1;
  }
  
  .button-container .button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    z-index: -99;
  }
  
  .button-container .button:nth-child(1) {
    float: left;
  }
  
  .button-container .button:nth-child(2) {
    float: right;
  }

  /* Responsive styling */
  @media (max-width: 1440px) {
    .features  {
      padding: 3rem 0rem 2rem 0rem;
    }
  }
  @media (max-width: 990px) {

    .features  {
      padding: 3rem 0rem 2rem 0rem;
    }
    
  }
@media (max-width: 767px) {
    .vision-content {
        width: 80%;
    }
    .vision-content h5 {
        font-size: 1.2rem;
    }
    .features  {
      padding: 2rem 0rem 2rem 0rem;
    }
    
}


/* .item {
    position: relative;
    overflow: hidden;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */



  /* ------- nav bar ----------  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ffffff;

  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: rgb(123, 171, 243);
   font-family: "Poppins", sans-serif; 
   font-weight: 500;
   border-bottom: 1px solid rgb(123, 171, 243);
  }
  
  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: #0d6efd;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    font-weight: 400;
    color: #fff;
  }
  
  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #4495e1;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(85, 104, 149, 0.25);
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #0d6efd;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(63, 73, 83, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #556270;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #0d6efd;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #0d6efd;
  }
  
  .bgnavfoot{
    background:linear-gradient(
      335deg,
  
      hsl(231deg 39% 48%) 31%,

      hsl(219deg 100% 70%) 99%
    );
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
/*navbar remove*/

.vision-content {
    top: 10%;
    /* transform: translate(-50%, -50%); */
}

.vision-content h5 {
    font-size: 1.5rem;
}

.vision-content .mb-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-content .icon {
    margin-right: 8px;
}

/* You can customize the styling further based on your design preferences */
.pg-title h1, .pg-title h2 {
  color: #212760;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  /* font-size: 48px; */
}


.contect-details .card{
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.contect-details .card .card-body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
}
.contect-details .card .card-body .card-text{
  text-align: center;
  margin: auto 0px;
  font-size: 0.8rem;
  color: #585555;
  line-height: 30px;
}
.contect-details .card .card-footer .btn-box{
  border:  1px solid #212760;
  border-radius: 50px;
  
}
.contect-details .card .card-footer .btn-box:hover{
  background-color: #212760;
  color: #ffffff;
  border: 0px;
  
}


/* form -mage box  */

.form-image-box .slider {
	width: 100%;
	position: relative;
}

.form-image-box .slider ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.form-image-box .slider li {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.form-image-box img {
	height: 400px;
	width: 400px;
}

.form-image-box .slider li.active {
	opacity: 1;
}

.form-image-box .slider .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 18px;
	padding: 10px;
	text-align: center;
}

.form-box input,
.form-box select,
.form-box textarea{
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 14px;
  border: 0px;
}
.form-control:focus,
.form-select:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #000000;
  outline: 0;
  box-shadow: 0 0 0 0.05rem #212760;
}
.form-box .form-submit{
  border: 1px solid #212760;
  color: #212760;
  border-radius: 30px;
  padding: 10px 40px;
  font-weight: 600;
}
.form-box .form-submit:hover{
  background-color: #212760;
  color: #ffffff;
  border-radius: 30px;
  padding: 10px 40px;
  transition-delay: 0.2s;
  font-weight: 600;
}

/*radio button design*/

.plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;


  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.plans .plan input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plans .plan {
  cursor: pointer;
  width: 100%;
}

.plans .plan .plan-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 100px 30px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  position: relative;
}

.plans .plan .plan-content img {
  margin-right: 30px;
  height: 32px;
}

.plans .plan .plan-details span {
  margin-bottom: 0px;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #212760;
}


.plans .plan .plan-details p {
  color: #646a79;
  font-size: 14px;
  line-height: 18px;
}

.plans .plan .plan-content:hover {
  -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
  box-shadow: 0px 3px 5px 0px #e8e8e8;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 8px;
  width: 8px;
  background: #216fe0;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
  box-shadow: 0px 0px 0px 2px #e3981e;
}

.plans .plan input[type="radio"]:checked + .plan-content {
  border: 2px solid #212760;
  background: #eaf1fe;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}

@media screen and (max-width: 991px) {
  .plans {
    margin: 0 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Added this line */
  }

  .plans .plan {
    width: 100%;
  }

  .plan.complete-plan {
    margin-top: 0px;
  }

  .plans .plan .plan-content .plan-details {
    width: 70%;
    display: inline-block;
  }
  .plans .plan .plan-details span {
    margin-bottom: 0px;
    display: block;
    font-size: 15px;
  
    line-height: 24px;

}

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 45%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@media screen and (max-width: 767px) {
  .plans .plan .plan-content .plan-details {
    width: 100%;
    display: inline-block;
  }
}


@media screen and (max-width: 540px) {
  .plans .plan .plan-content img {
    margin-bottom: 0px;
    margin-right: 30px;
    height: 20px;
    -webkit-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
  }
  .plans {
  
    margin: 0 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Added this line */
  
}
  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 20px;
    right: 10px;
  }

  .plans .plan .plan-content .plan-details {
    width: 100%;
  }

  .plans .plan .plan-content {
    padding: 10px 10px 10px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .plans .plan input[type="radio"]:checked + .plan-content {
    padding: 10px 10px 10px 10px;
}
}

/* inspiration */
.inspiration {
  font-size: 12px;
  margin-top: 50px;
  position: absolute;
  bottom: 10px;
  font-weight: 300;
}

.inspiration a {
  color: #666;
}
@media screen and (max-width: 767px) {
  /* inspiration */
  .inspiration {
    display: none;
  }
}

.form-image{
    display: flex;
    justify-content: center;
    align-items: center;
  }


.form-image img{
width: 90%
}



/*Localtion slider start*/


.swiper-container .carousel-item .card {
  border: 0px ;
  display: flex;
  justify-content: center;
  align-items : center;
  width: 60%;
  height: 45%;
  margin: 50px 0px;
}
.swiper-container .carousel-item .card .card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
  background-color: #fff;
  border-radius: 50%;
}
.swiper-container .carousel-item .card .card-body {
  border: 0px ;
  padding : 20px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(101, 101, 146, 0.05) 0px 8px 32px;
}
.swiper-container .carousel-item img {

  border-radius : 10px;

}
.swiper-container .carousel-control-next-icon {
  background-image: url(../images/right-arrow.svg);
}
.swiper-container .carousel-control-prev-icon {
  background-image: url(../images/left-arow.svg);
}
.swiper-container .branch {
  color: #212760;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 2rem;
  /* font-size: 48px; */  
    
}
.swiper-container .card-title {
  color: #000000a1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.5rem;
  font-size: 15px;  
    
}
.swiper-container .card-text {
  color: #000000a1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 2rem;
  font-size: 15px;  
    
}

@media (max-width: 767px) {

  .swiper-container .carousel-item .card {

    width: 100%;
    height: 45%;
    margin: 50px 0px;
  }
  .swiper-container .carousel-item img {
    width: 50%;
    height: 100%;
  
  }
  .swiper-container .branch {
    text-align: center;
     font-size: 16px;   
      
  }
  .swiper-container .card-title {
    text-align: center;
    line-height: 1.5rem;
    font-size: 12px;  
      
  }
  .swiper-container .card-text {
   text-align: center;
    line-height: 1.5rem;
    font-size: 12px;  
      
  }
  
}
@media (max-width: 500px) {
  .carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 50% 50%;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
}