/* service : Hero */
.hero-section {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-inner{
  padding:0 50px;
  text-align: center;
  position: relative;
  z-index: 99;
}

.hero-text {
 
}

.hero-desc{
  color: #17538a;
    position: relative;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-bg {
  background: url('../images/ServicePage-hero.webp') 50% 50% no-repeat;
    background-size: 100% 100%;
    background-position: bottom center;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 1;
}


.hero-image-inner {
  position: relative;
}

.hero-image {
  background: url('../images/service-Hero.png') 50% 50% no-repeat;
    background-size: contain;
    background-position: bottom center;
    position: relative;
    width: 100%;
    height: 500px;
    bottom: 0;
    z-index: 2;
}

.hero-button-area{
  position: absolute;
  bottom: 10%;
  z-index: 99;
  display: flex;
	gap: 10px;
	justify-content: center;
  width: 100%;
}

.hero-button-area-m{
  display: none;
}


/* Responsive */
@media (max-width: 1600px) {
  .hero-image {
      /* height: 500px; */
  }
  }

@media (max-width: 1200px) {
  .hero-image {
    height: 400px;
}
  }



@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
  }

  .hero-image {
    height: 200px;
}

.hero-inner {
  padding: 0 5px;
}

.hero-text {
  padding: 0 30px;
}

.hero-button-area {
  display:none;
}

.hero-button-area-m{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
  gap: 10px;
}


  }

@media (max-width: 450px) {
  .hero-title{
font-size:32px;
  }

  .hero-desc{
    font-size: 18px;
}
}



/* Help Whenever You Need section  */
.big-picture-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px;
    overflow: hidden;
  }

  .about-video {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-align: center;
  }

  .about-video video {
   height: 100%;
  }

  .about-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #17538a;
    padding: 20px;
    width: 65%;
    display: grid;
      gap: 20px;
  }

  .about-container-text title{
    align-items: center;
  }

  .about-container-text.title {
    font-size: 50px;
}

  .about-text {
    font-size: 20px;
    line-height: 1.6;
  }

  .about-text-bold{
     font-size: 20px;
    font-weight: 600;
  }

  @media (max-width: 1024px) {
    .about-container {
      padding: 0px;
      width: 80%;
  }

  .big-picture-section {
    padding: 50px;
  }

  }

  @media (max-width: 768px) {
      .big-picture-section {
        padding: 30px;
    }

    .about-container {
      padding: 0px;
      width: 100%;
  }

    .about-text {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .about-video video {
    height: 100%;
    width: 100%;
}

.about-container-text.title {
    font-size: 35px;
}
}


/* Services  */

.service-section{
   position: relative;
   overflow: hidden;
}

.service-bg{
        background: url('../images/Services Page Inner Sections.webp') 50% 50% no-repeat;
        background-size: 100%;
    background-position: top;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.subtitle {
   font-size: 25px;
    margin-bottom: 20px;
    color: #17538a;
}

.section-list{
        color: #17538a;
    position: relative;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.tool-list{
          font-weight: 400;
}

li.tool-item {
    padding: 5px 0;
}

    .service-container {
       display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 9;
   padding: 0;
        padding-left: 200px;
        }

        .service-left {
       display: grid;
    height: 100%;
    place-content:center;
    gap:50px;
    position: relative;
        }

        .service-right {
        text-align: right;
        height: 100%;
        }

        .service-img img{
        width: 400px;
        height:100%;
        }
        
        .tool-section{
          padding-right:50px;
        }

        .tool-section img{
          width: 270px;
        }

     .service-nav {
position: relative;
    z-index: 99;
    /* margin-bottom: 30px; */
    display: flex
;
}

.service-nav .nav-links {
 list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.service-nav .nav-links li {
  position: relative;
    padding: 0px 20px;
    border-right: 2px solid #17538a;
    margin: 5px 0;
}

.service-nav .nav-links li:last-child {
  border-right: none;
}


.service-nav .nav-links a {
  text-decoration: none;
  color: #18548a;
  font-weight: 400;
    font-size: 18px;
    display: block;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-nav .nav-links a:hover {
  color: #fe3c66;
}


.service-nav .nav-links a.active {
  color: #fe3c66;
}

.service-arrow{
  /* position: absolute;
  bottom:0%;
  left: 0;
   padding-left: 20px; */
   margin-top: 20px;
}

.service-arrow img{
width:30px;
height:30px;
}

.service-title {
    font-size: 40px;
    position: relative;
    font-weight: 400;
    margin-bottom: 5px;
    color: #17538a;
}

.service-inner-left {
    padding-left: 20px;
}

.service-img.service-right-img {
    height: 100%;
}

.logo-area{
  display:flex;
  justify-content: left;
  margin: 20px 0;
  gap: 20px;
}

.logo-area img{
width: 100%;
height: 70px;
}

   .logo-slider {
        margin: 30px 0;
        position: relative;
        z-index: 9;
        width: 600px;
        }

 .logo-card a{
        text-decoration: none;
        }
        
        .logo-card img {
        width: 100%;
        max-width: 100%;
        height: 100px;
        object-fit: contain;
        }

        .logo-slider .partner-item {
        padding: 10px;
        }


     

 @media screen and (max-width: 1400px) {
        .service-container {
        padding: 0;
        padding-left: 100px;
        }
	 
	  .logo-slider {
        margin: 10px 0;
        width: 400px;
        }
        }

         @media screen and (max-width: 1100px) {
      .service-container {
        padding: 0;
        padding-left: 50px;
        }

.service-arrow {
    padding-left: 5px;
}

        .service-left {
    place-content: center;
        }

        .service-nav {
    margin-bottom: 30px;
        }

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

        .service-nav .nav-links li {
    padding: 0px 5px;
        }

        .service-inner-left {
    padding-left: 5px;
}

.service-img img {
    width: 350px;
    height: 100%;
}

.tool-section img {
    width: 270px;
}
			 
			  .logo-slider {
        margin: 0px 0;
        width: 300px;
        }
        }

  @media screen and (max-width: 990px) {
        .service-nav .nav-links {
    display: flex;
    flex-direction: row;
        }

           .service-section .service-nav.nav-links {
        flex-direction: row;
            }

           .service-nav .nav-links a {
        padding: 0 5px;
        font-size: 16px;
        text-align: center;
    }

   .service-nav .nav-links li {
        width: auto;
        text-align: left;
        padding: 0;
    }

        .service-title {
        font-size: 25px;
    }

    .subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-arrow {
    padding-left: 0px;
}
}

        @media screen and (max-width: 767px) {
        .service-container{
                padding: 0px 30px;
                grid-template-columns: 1fr;
                }

                .service-left{
                        text-align:center;
                        gap: 20px;
                }

                .logo-area {
                  justify-content: center;
              }

              .logo-area img {
/*                   height: 50px; */
              }

                .service-right {
                   display:none;
                }

                nav.service-nav {
                width: 100%;
                margin: 20px auto;
                }

                .tool-list {
                text-align: left;
                }

                    .service-nav .nav-links {
        justify-content: center;
    }
			
			 .logo-slider {
        width: 280px;
				 margin:0 auto;
        }

        }

        @media screen and (max-width: 550px) {
           .service-nav .nav-links a {
        font-size: 14px;
           }

            nav.service-nav {
                width: 100%;
                }

                .service-img img {
                width: 250px;
                }

                .service-nav .nav-links li{
                        border-right: 1px solid #17538a;

                }

                .section-list {
                font-size: 16px;
                }

                .subtitle {
    font-size: 20px;
        }
			
			 .logo-slider {
        width: 250px;
        }
}













/* popup */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
    top: 5px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #aaa;
}

.close-btn:hover {
 color: #fe3c66;
}

.location-buttons {
  margin-top: 20px;
  display:flex;
  gap:10px;
  justify-content: center;
}

.btn-locaton{
border-radius:5px;
}

.book-title{
font-size: 25px;
    position: relative;
    font-weight: 800;
    color: #18548a;
    margin-bottom: 20px;
}

.book-text{
        color:rgb(103, 105, 107);
    position: relative;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
}