
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');

/* Default Css */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Assistant", sans-serif;
  font-weight: 400;
}
ul,ol{
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,h2,h3,h4,h5,h6,p{
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
  color: inherit;
}
a:hover{
  color: inherit;
}
button{
  border: 0;
  outline: 0;
}
img{
  max-width: 100%;
}

/* .heading1 {
    font-weight: 800;
    font-size: 85px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #FFF;
    text-shadow: 0px 1px 0 #1b56fd,  
      1px -1px 0 #1b56fd,
      -1px -1px 0 #1b56fd,
      0px -1px 0 #1b56fd;
    filter:drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    
}
 */

.heading-wrapper {
   position: relative;
   display: inline-block;
   margin-top: 100px;
}

.heading1 {
   font-weight: 800;
   font-size: 85px;
   letter-spacing: 5%;
   text-align: center;
   font-family: "Assistant", sans-serif;
   margin: 0;
   line-height: 1.2;
   white-space: nowrap;
}
.heading1 span{
    color: #1b56fd !important;
    -webkit-text-fill-color: #1b56fd;
}
.stroke {
   position: absolute;
   top: -95px;
   left: 50%;
   -webkit-transform: translateX(-50%);
           transform: translateX(-50%);
   color: #1B56FD;
   -webkit-text-stroke: 2px #1B56FD;
   color: transparent; /* Prevent fill color from appearing */
   z-index: 1;
   pointer-events: none;
}

.fill {
   position: absolute;
   top: -95px;
   left: 50%;
   -webkit-transform: translateX(-50%);
           transform: translateX(-50%);
   color: #FFFFFF;
   text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
   z-index: 2;
}



.heading2{
  font-weight: 800;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #1b56fd;
  direction: rtl;
}
.heading3{
  font-weight: 800;
  font-size: 43px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1b56fd;
  direction: rtl;
}
.heading4{
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #fff;
}
.heading5{
  font-weight: 800;
  font-size: 29px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1b56fd;
}
.font25px{
  font-weight: 400;
  font-size: 25px;
  text-align: justify;
  color: #000;
}
.font23px{
  font-weight: 700;
  font-size: 23px;
  text-align: center;
  color: #1b56fd;
}
.font16px{
  font-weight: 400;
  font-size: 16px;
  line-height: 133%;
  text-align: right;
  color: #1e1e1e;
}
.font11px{
  font-weight: 400;
  font-size: 11px;
  color: #000;
}
.container{
  max-width: 1386px;
  width: 100%;
  margin: auto;
  padding: 0px 20px;
}
.btn-success{
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  color: #fff;
  border-radius: 7px;
  padding: 7px 5px;
  white-space: nowrap;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 4px 4px 0 rgba(0, 0, 0, 0.09), 0 9px 5px 0 rgba(0, 0, 0, 0.05), 0 16px 7px 0 rgba(0, 0, 0, 0.01), 0 25px 7px 0 rgba(0, 0, 0, 0);
  background: #25d366;
  border: none;
}
.btn-success img{
  height: auto;
}
.btn-success:hover{
   box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1), 0 4px 4px 0 rgba(0, 0, 0, 0.09), 0 9px 5px 0 rgba(0, 0, 0, 0.05), 0 16px 7px 0 rgba(0, 0, 0, 0.01), 0 25px 7px 0 rgba(0, 0, 0, 0);
  background: #25d366;
}

/* Header Area Start
---------------------------------- */
.header-area {
  background: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 999;
}
.header-item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-nav nav ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-nav nav ul li a{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  text-align: right;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-nav nav ul li a:hover{
  color: #000;
  font-weight: 700;
}
.mobile-header-btn{
  display: none;
}
.logo{
  font-weight: 600;
  font-size: 24px;
  color: #1b56fd;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #000;
    background: none;
}
.header-nav nav ul li {
    padding: 0 34px;
    position: relative;
}
.header-nav nav ul li:after{
  position: absolute;
  content: "";
  height: 43px;
  width: 2px;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
}
.header-nav nav ul li:last-child{
  position: inherit;
}
.nav-link {
    padding: 10px;
}
/* For Mobile Menu Css */
.mobile-menu {
	position: absolute;
	top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
	left: 20px;
  display: none;
}
#nav-icon4 {
  width: 28px;
  height: 23px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 0px;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
#nav-icon4 span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
#nav-icon4 span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -2px;
  left: 2px;
}
#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
  left: 2px;
}
/* Header Area End
---------------------------------- */

/* Banner Area Start
---------------------------------- */
.banner-area{
  background: url("../images/banner.png")no-repeat scroll center center / cover;
  padding-top: 187px;
  padding-bottom: 79px;
  height: 100%;
  width: 100%;
}
.banner-top-content{
  position: relative;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 14px 0px;
  padding-bottom: 49px;
  max-width: 1222px;
  width: 100%;
  margin: auto;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.03), 0 32px 32px 0 rgba(0, 0, 0, 0.03), 0 72px 43px 0 rgba(0, 0, 0, 0.02), 0 128px 51px 0 rgba(0, 0, 0, 0), 0 200px 56px 0 rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0.4);
}
.banner-top-content:after{
  position: absolute;
  content: "";
  background: url("../images/left-after.png")no-repeat scroll center center / cover;
  left: -22px;
  top: 26px;
  width: 150px;
  height: 64px;
}
.banner-top-content:before{
  position: absolute;
  content: "";
  background: url("../images/right-before.png")no-repeat scroll center center / cover;
  right: -22px;
  top: 26px;
  width: 150px;
  height: 64px;
}
.banner-top-content .heading4{
  font-weight: 600;
  padding-top: 15px;
  color: #1b56fd;
  direction: rtl;
}
.banner-top-content ul{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  direction: rtl;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 40px;
}
.banner-top-content ul li a{
  font-weight: 700;
  font-size: 32px;
  text-align: right;
  color: #1b56fd;
}
.banner-top-content ul li a span{
  margin-left: 10px;
}
.banner-top-content .btn-success{
  font-weight: 600;
  font-size: 31px;
  padding: 8px 23px;
}
.banner-top-content .btn-success img{
  height: 29px;
  width: 29px;
  margin-right: 10px;
}

.banner-bottom-content{
  border: 2px solid #fff;
  padding: 20px 22px;
  border-radius: 20px;
  max-width: 1084px;
  width: 100%;
  margin: 143px auto;
  margin-bottom: 0px;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  box-shadow: 0 9px 20px 0 rgba(0, 0, 0, 0.1), 0 36px 36px 0 rgba(0, 0, 0, 0.09), 0 80px 48px 0 rgba(0, 0, 0, 0.05), 0 143px 57px 0 rgba(0, 0, 0, 0.01), 0 223px 62px 0 rgba(0, 0, 0, 0);
  background: #1239a9;
}
.banner-bottom-content .heading3{
  color: #FFF;
}
.banner-form{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  direction: rtl;
}
.banner-form .input-item{
  max-width: 400px;
  width: 100%;
}
.form-label{
  font-weight: 700;
  font-size: 31px;
  text-align: right;
  color: #fff;
}
.btn-primary{
  border: 1px solid #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 23px;
  text-align: center;
  padding: 15px 54px;
  white-space: nowrap;
  direction: ltr;
  color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 14px 14px 0 rgba(0, 0, 0, 0.04), 0 32px 19px 0 rgba(0, 0, 0, 0.03), 0 57px 23px 0 rgba(0, 0, 0, 0.01), 0 89px 25px 0 rgba(0, 0, 0, 0);
  background: #1b56fd;
  height: 54px;
}
.btn-primary img{
  margin-right: 8px;
  height: 21px;
  width: 21px;
}
.input-item .form-control{
  border: 1px solid #fff;
  border-radius: 10px;
  background: #fff;
  padding: 9px 25px;
  font-size: 23px;
  color: #000;
  box-shadow: none;
  font-weight: 600;
}
/* Chrome, Safari, Edge, Opera */
.form-control::-webkit-outer-spin-button,
.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.form-control[type=number] {
  -moz-appearance: textfield;
}
.banner-form-title .heading4{
  padding-bottom: 30px;
  direction: rtl;
}

/* Banner Area End
---------------------------------- */

/* Tailored Area Start */
.Tailored-content{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -ms-grid-row-align: center;
      align-items: center;
}
.Tailored-right-content{
  padding-right: 20px;
}
.Tailored-image {
  height: 100%;
}
.Tailored-image .Tailored-img-mobile{
  display: none;
}
.Tailored-image img{
  width: 100%;
  height: 100%;
}
.Tailored-right-content{
  direction: rtl;
}
.Tailored-right-content .heading2 {
    max-width: 555px;
    width: 100%;
    padding-bottom: 20px;
}
.Tailored-right-content .font25px{
  padding-top: 30px;
}
.Tailored-right-content .btn-success{
  margin-top: 70px;
  font-size: 42px;
  direction: ltr;
  padding: 11px 31px;
}
.Tailored-right-content .btn-success img{
  height: 39px;
  width: 39px;
  margin-right: 3px;
}

/* Services-area start */
.Services-area{
  padding: 141px 0px;
  background: url("../images/services/service-banner-shape.png")no-repeat scroll center center / cover;
  height: 100%;
  width: 100%;
}
.Services-area .container{
  max-width: 1262px;
}
.Services-title{
  padding-bottom: 60px;
}
.Services-title .heading3{
  padding-bottom: 40px;
  text-decoration: underline;
  text-underline-offset: 10px;
}
.Services-title .font25px{
  text-align: right;
  direction: rtl;
}
.Services-content{
  border-radius: 19px;
  padding: 29px 19px;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.05), 0 32px 32px 0 rgba(0, 0, 0, 0.04), 0 71px 43px 0 rgba(0, 0, 0, 0.03), 0 127px 51px 0 rgba(0, 0, 0, 0.01), 0 198px 55px 0 rgba(0, 0, 0, 0);
  background: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 110px 1fr 110px 1fr 110px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 110px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 120px;
}
.single-services{
  text-align: center;
}
.single-services .font23px{
  direction: rtl;
  padding: 10px 0px;
}
.single-services .font11px{
  text-align: center;
  direction: rtl;
}
.single-services img{
  max-width: 87px;
  width: 100%;
  height: auto;
}


.Services-card-content{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 72px 1fr 72px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 72px;
  direction: rtl;
}
.single-service-card{
  border-radius: 18px;
  padding: 27px 14px;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.05), 0 33px 33px 0 rgba(0, 0, 0, 0.04), 0 74px 45px 0 rgba(0, 0, 0, 0.03), 0 131px 53px 0 rgba(0, 0, 0, 0.01), 0 205px 57px 0 rgba(0, 0, 0, 0);
  background: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service-card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.single-service-card >img{
  border-radius: 9px;
  margin-bottom: 21px;
}
.single-service-card .heading5{
  direction: rtl;
  padding-top: 18px;
}
.single-service-card .heading5:hover{
  color: #1b56fd;
}
.single-service-card .font11px{
  direction: rtl;
  padding-top: 9px;
  padding-bottom: 27px;
  font-size: 12px;
}
.single-service-card .btn-success {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: auto;
}

/* About Area Start */
.About-area{
  background: url("../images/about-shape.png")no-repeat scroll center center / cover;
  padding: 139px 0px;
}
.About-area .container{
 max-width: 1262px;
}
.about-title .heading3{
  padding-bottom: 45px;
  text-decoration: underline;
  text-underline-offset: 10px;
}
.about-content{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 43px 1fr 43px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px 43px;
}
.single-about{
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 2px 11px 0 rgba(31, 45, 61, 0.25);
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-star{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;

}
.user-review{
  padding: 30px 30px 48px 30px;
  position: relative;
  z-index: 9;
}
.about-star span i{
  color: #1b56fd;
}
.about-star{
  padding-bottom: 15px;
}
.user-review .font16px{
  direction: rtl;
}
.user-profile-part .font23px{
  direction: rtl;
  text-align: right;
  color: #FFF;
}
.user-profile-details{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: #1b56fd;
  padding: 48px 30px 48px 30px;
  border-radius: 50px 0px 19px 19px;
  position: relative;
}
.user-profile-details:after{
  position: absolute;
  content: "";
  background: url("../images/about/shape.png")no-repeat scroll center center / cover;
  height: 60px;
  width: 80px;
  right: -5px;
  top: -60px;
  z-index: 1;
}
.user-profile-part{
  padding-right: 13px;
}
.user-profile-part .font23px.user-title{
 color: rgba(255, 255, 255, 0.6);
 font-weight: 400;
}
.user-profile-img img{
  height: 62px;
  width: 62px;
  border-radius: 50%;
}

/* Contact Area Start */
.Contact-area{
  padding: 204px 0px;
  background: #1b56fd;
}
.Contact-area .container{
  max-width: 1124px;
} 
.contact-content{
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.contact-form{
  text-align: right;
  direction: rtl;
  border-radius: 14px;
  padding: 27px 15px;
  max-width: 445px;
  width: 100%;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.07), 0 32px 32px 0 rgba(0, 0, 0, 0.06), 0 73px 44px 0 rgba(0, 0, 0, 0.04), 0 130px 52px 0 rgba(0, 0, 0, 0.01), 0 203px 57px 0 rgba(0, 0, 0, 0);
  background: #fff;
}
.contact-form .from-title{
  text-align: center;
  font-weight: 700;
  font-size: 21px;
  color: #000;
  padding: 0px 30px 27px 30px;
}
.contact-form .input-item .form-label {
  font-size: 21px;
  color: #000;
}
.contact-form .input-item{
  margin-bottom: 13px;
}
.contact-form .input-item .form-control{
  border: 0.69px solid #000;
  background: rgba(217, 217, 217, 0.2);
  border-radius: 7px;
}
.contact-form .btn-primary{
  width: 100%;
  font-size: 16px;
  height: auto;
  border: none;
  padding: 8px 15px;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.05), 0 10px 10px 0 rgba(0, 0, 0, 0.04), 0 22px 13px 0 rgba(0, 0, 0, 0.03), 0 40px 16px 0 rgba(0, 0, 0, 0.01), 0 62px 17px 0 rgba(0, 0, 0, 0);
}
.contact-info{
  text-align: right;
  direction: rtl;
}
.contact-info .heading2{
  font-weight: 800;
  font-size: 62px;
  text-align: right;
  color: #fff;
}
.contact-info .font31px{
  font-weight: 400;
  font-size: 31px;
  text-align: right;
  color: #fff;
  padding-bottom: 13px;
}
.contact-info .font31px:last-child{
  padding-bottom: 0px;
}
.contact-info .font31px.fw-bold{
  padding-top: 27px;
  padding-bottom: 60px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 22px;
}
.contact-info .font31px i{
  margin-left: 7px;
}


/* Footer area start */
.footer-area{
  padding-top: 106px;
  padding-bottom: 131px;
}
.footer-content-main{
  max-width: 734px;
  width: 100%;
  margin: auto;
}
.footer-content{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px 90px;
  direction: rtl;
}
.footer-menu-title{
  font-weight: 700;
  font-size: 19px;
  line-height: 157%;
  text-align: right;
  color: #1b56fd;
}
.menu-list ul li{
  padding-top: 14px;
}
.footer-icon{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
.footer-icon a{
  color: #1b56fd;
  font-size: 25px;
}

/* whatsapp css  */
.whatapp-btn{
  position: fixed;
  bottom: 50px;
  right: 24px;
  z-index: 9999;
}
.whatapp-btn a{
  display: inline-block;
}
.whatapp-btn a img{
  width: 128px;
  height: 128px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* modal css  */
.modal-content .btn-close {
    z-index: 9999999;
}
