/* common css */
body, ul, ol, h1, h2, h3, h4, h5, h6, p, a {
   text-decoration: none;
   margin: 0px;
   padding: 0px;
   font-family: "Poppins", sans-serif;
}
.container{
    max-width: 1280px;
    margin: 0 auto;
}
.container-fluid{
    padding: 0px 50px;
    max-width: 1920px;
    margin: 0 auto;
}
/* header */
.logo {
    width: 160px;
}
.logo a {
    display:block;
}
.logo img {
    width: 100%;
    height: 100%;
}
.upper-header {
    background: #419dd0;
    padding: 10px 0px;
    color: #ffffff;
}
.upper-header a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 16px;
}
.upper-header i {
    margin-right: 5px;
    font-size: 16px;
}
.upper-header .fa.fa-phone {
    font-size: 14px;
}
.upper-header .container-fluid {
    display: flex;
    justify-content: space-between;
}
section.banner {
    height: 650px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.banner:before {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* background-color: rgba(65,157,208, 0.3); */
    background-color: rgba(9, 30, 62, .7);
    content: "";
}
.header-inner {
    padding: 10px 0px 5px;
}
section.banner h1 {
    font-size: 70px;
    color: #fff;
    text-transform: uppercase;
}
section.banner p {
    font-size: 24px;
    color: #fff;
}
.class-inner {
    position: relative;
    text-align: center;
}
.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center center;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
}
.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Optional: respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .zoom-in { transition: none; opacity: 1; transform: none; }
}
/*about*/
.left-about {
    width: 60%;
}
.right-about {
    width: 40%;
}
.about-us-inner {
    display: flex;
}
.right-about img {
    width: 100%;
}
.left-about p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
}
.left-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #419dd0;
}
section.about-us {
    padding: 70px 0px;
    overflow-x: hidden;
}
.left-about {
    padding-right: 10%;
}
.prot-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.25s ease-out, transform 1.25s ease-out;
}
.prot-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.prot-right{
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.25s ease-out, transform 1.25s ease-out;
}
.prot-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* footer */
.lower-footer {
    background: #419dd0;
    padding: 12px 0px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}
.upper-footer{
    background: #419dd0;
    color: #ffffff;
}
.footer-box1 {
    width: 40%;
    padding-right: 10%;
}
.footer-box2 {
    width: 30%;
}
.footer-box3 {
    width: 30%;
}
.upper-footer-inner {
    display: flex;
}
.footer-box1 img {
    width: 200px;
}
.footer-box1 p {
    font-size: 16px;
    line-height: 24px;
}
.upper-footer {
    padding: 50px 0px;
}
.lower-footer {
    border-top: 1px solid #f2f2f2;
}
.upper-footer-inner h5 {
    font-size: 24px;
    font-weight: 500;
    padding-top: 15px;
    text-transform: capitalize;
}
.footer-box2 ul li, .footer-box3 ul li {
    list-style: none;
    margin-bottom: 5px;
}
.footer-box2 ul li a, .footer-box3 ul li a {
    color: #fff;
    transition: 0.5s all ease;
}
.footer-box2 ul li a i, .footer-box3 ul li a i {
    margin-right: 10px;
}
.footer-box2 ul, .footer-box3 ul {
    padding-top: 15px;
}
.scoial-links a {color: #fff;font-size: 20px;margin-right: 10px;transition: 0.5s all ease;position: relative;top: 0px;}
.scoial-links {
    padding-top: 5px;
}
.step{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.25s ease-out, transform 1.25s ease-out;
}
.step.visible {
    opacity: 1;
    transform: translateY(0);
}
.footer-box2 ul li a:hover, .footer-box3 ul li a:hover {
   padding-left: 5px;
}
.scoial-links a:hover {
    position: relative;
    top: -5px;
}
/* testimonial */
.testimonial {
    padding: 70px 0;
    text-align: center;
}
.testimonial h2 {
    font-size: 36px;
    color: #419dd0;
    margin-bottom: 10px;
    font-weight:500;
}
.testimonial p {
    margin-bottom: 30px;
}
.testimonial .owl-carousel .owl-stage-outer {
    padding: 60px 0px 20px;
}
.testimonial-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.testimonial-item img {
    width: 100px!important;
    height: 100px!important;
    border-radius: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    margin: -70px auto 20px;
}
.testimonial-item p {
    font-style: italic;
    margin-bottom: 15px;
    min-height: 96px;
}
.testimonial-item h4 {
    color: #419dd0;
    margin: 0;
    font-weight:500;
}
.testimonial-item span {
    display: block;
    color: #999;
    font-size: 14px;
}
/* quotes */
section.quotes {
    background: linear-gradient(rgba(65,157,208, .9), rgba(65,157,208, .9)), url(images/carousel-1.webp) center center no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    overflow-x: hidden;
}
section.quotes {
    padding: 70px 0px;
}
.quotes-left h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.quotes-left h4 {
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
}
.quotes-left p {
    color: #fff;
    line-height: 26px;
    padding-top: 20px;
}
.quotes-inner {
    display: flex;
}
.quotes-left {
    width: 50%;
}
.quotes-right {
    width: 50%;
}
.slap {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    margin-top: 39px;
}
.slap-inner {
    background-color: #c1e0f973 !important;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
}
.slap-inner img {
    width: 45px;
    height: 44px;
    border-radius: 100px;
    margin-right: 20px;
}
.slap-inner p {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    padding: 0;
}
.quotes-my {
    color: #fff;
}
.quotes-my i {
    margin-right: 10px;
}
.quotes-my {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-right: 20%;
}
.form-inner {
    background: #fff;
    border-radius: 10px !important;
    padding: 3rem !important;
}
.form-field input, .form-field textarea {
    height: 35px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #696E77;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da!important;
    appearance: none;
    border-radius: 10px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    display: block;
    padding: 10px 15px;
    outline: 0;
    width: 50%;
    font-family: "Poppins", sans-serif;
    margin: 0px 10px;
}
.form-field{
    display: flex;
    margin: 0px -10px 20px;
}
.wdyj{
    width:100%!important;
    height: 90px!important;
    resize: none;
}
.form-field.btnflex {
    margin: 0px !important;
    justify-content: center;
}
.form-field button {
    background: #419dd0;
    padding: 12px 35px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #419dd0;
    border-radius: 10px;
}
.form-field button:hover {
    background: #fff;
    color: #419dd0;
}
.leftpad{
    padding-right: 15%;
}
.serive-inn-box {
    width: 30.3%;
    margin: 0px 20px 30px;
}
.serive-inn {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -20px;
    padding-top: 30px;
}
.serive-inn-box img {
    width: 100%;
    height: 275px;
    transition: 0.5s all ease;
}
a.sering{
    margin-bottom: 10px;
    overflow: hidden;
    display: inline-flex!important;
}
.serive-inn-box img:hover{
    transform: scale(1.1);
}
section.our-servive {
    padding: 0px 0px 70px;
    overflow-x: hidden;
}
section.our-servive h2 {
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #419dd0;
    text-align: center;
}
section.choose h2{
    font-size: 36px;
    font-weight: 500;
    color: #419dd0;
    text-align: center;
}
.serive-inn h3 {
    font-size: 18px;
    font-weight: 500;
    color: #419dd0;
}
.serhead {
  margin-bottom: 10px;
  display: inline-flex!important;
}
.serhead:hover{
    text-decoration: underline;
}
.serive-inn-box p {
    margin-bottom: 10px;
}
.serive-inn-box a {
    display: inline-block;
    color: #419dd0;
}
.explaore {
    display: inline-flex!important;
    align-items: center;
}
.explaore i{
    padding-left: 5px;
    transition: 0.5s all ease;
}
.explaore:hover i{
    padding-left: 10px;
}
.servicetext {
    text-align: center;
    margin-bottom: 15px;
}
/* why choose */
section.choose {
    padding: 70px 0px 0px;
    overflow-x: hidden;
}
.choose-inner {
    padding-top: 50px;
}
.choose-inner {
    display: flex;
    flex-wrap: wrap;
}
.choose-inner-left {
    width: 50%;
}
.choose-inner-right {
    width: 50%;
}
.choose-inner-right img {
    width: 100%;
}
.left-box {
    display: flex;
}
.left-box-left img {
    width: 50px;
    height: 50px;
}
.left-box {
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.left-box-right h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}
.left-box-right p {
    font-size: 14px;
}
.left-box-left {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(65,157,208, 0.1);
    padding: 15px 20px 15px 15px;
    width: 15%;
}
.left-box-right {
    width: 85%;
    padding-left: 20px;
}
.choose-inner-left-iiner {
    padding-right: 10%;
}
.choose-inner-right-inner2 img {
    width: 100%;
    height: 500px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
.choose-inner-right-inner2 {
    background: #419dd0;
    display: flex;
    padding-right: 10px;
    padding-top: 10px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
.choose-inner-right-inner1 {
    background: rgba(65,157,208, 0.3);
    display: flex;
    padding-right: 10px;
    padding-top: 10px;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
}
/* backtotop */
#backToTop {
    position: fixed;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease;
    z-index: 9999;
    right: 20px;
    bottom: 30px;
    cursor: pointer;
    outline: 0;
    background-color: #091e3e!important;
    color: #fff;
    border: 1px solid #091e3e!important;
    padding: 10px 10px 5px;
    transition: 0.5s all ease;
    border-radius: 5px;
}
#backToTop:hover{
    box-shadow: 0 0 0 .25rem rgba(9, 30, 62, 0.3);
}
#backToTop svg { width: 22px; height: 22px; }
#backToTop:hover { background: var(--btn-bg-hover); }
#backToTop:focus-visible { outline: 3px solid #60a5fa; outline-offset: 2px; }
#backToTop.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
    #backToTop { transition: none; }
    html { scroll-behavior: auto !important; }
}
/* menu */
.menu ul li {
    list-style: none;
    display: inline-block;
    margin-left: 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}
.menu ul li a {
    color: #419dd0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dropdown {
    position: absolute;
    background: #fff;
    z-index: 9;
    width: 300px;
    top: 45px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.dropdown ul li {
    display: block;
    margin: 0;
}
.menu ul li a {
    padding: 25px 0px;
}
.dropdown ul li a {display: block;padding: 7px 15px;border-top: 1px solid #eee;font-size: 14px;}
.dropdown ul li:first-child a {
    border: 0px solid red;
}
.menu ul li a i {
    position: relative;
    top: 1px;
}
.menu li:hover .dropdown {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}
.dropdown ul li a:hover {
    color: #fff;
    background: #419dd0;
}
.lower-header {
  transition: all 0.3s ease;
  background: #fff;
}
.lower-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.slap-inner a {
    color: #000;
}
.slap-inner a:hover {
    color: #419dd0;
}
section.choose{
    padding-bottom: 10px;
}

@media screen and (max-width:1366px) {
.container{
    max-width: 1180px;
}
.serive-inn-box{
    margin: 0px 18px 30px;
}
.serive-inn{
    margin: 0px -18px;
}
.quotes-my {
    padding-right: 20px;
}
.slap{
    margin-top: 13px;
}
.choose-inner-right-inner2 img {
    height: 540px;
}
.testimonial-item p {
    font-size: 14px;
}
section.banner h1 {
    font-size: 62px;
}
}
@media screen and (max-width:1280px) {
.container{
    max-width: 1100px;
}
section.banner h1 {
    font-size: 53px;
}
.serive-inn-box {
    margin: 0px 17px 30px;
}
.serive-inn{
    margin: 0px -17px;
}
.serive-inn-box img {
    height: 235px;
}
.left-box-right h3 {
    font-size: 17px;
}
.choose-inner-right-inner2 img{
    height: 532px;
}
}
@media screen and (max-width:1199px) {
.container{
    max-width: 985px;
}
.container-fluid {
    padding: 0px 20px;
}
.menu ul li {
    font-size: 15px;
    margin-left: 10px;
}
.dropdown {
    width: 260px;
}
section.banner {
    height: auto;
}
.class-inner {
    padding: 18% 0px;
}
section.banner h1 {
    font-size: 46px;
}
section.banner p {
    font-size: 20px;
}
.left-about {
    width: 50%;
    padding-right: 0px;
}
.right-about {
    width: 50%;
}
.serive-inn-box {
    margin: 0px 15px 30px;
}
.serive-inn  {
    margin: 0px -15px;
}
.quotes-left h2 {
    font-size: 30px;
    margin-bottom: 0px;
}
.leftpad {
    padding-right: 35px;
}
.quotes-left h4{
    font-size: 18px;
}
.quotes-my {
    padding-right: 10px;
    margin-top: 10px;
}
.quotes-left p{
    padding-top: 17px;
}
.choose-inner-right-inner2 img {
    height: 565px;
}
.testimonial-item p {
    min-height: 104px;
}
.footer-box1 {
    padding-right: 5%;
}
}
@media screen and (max-width:1024px) {
.logo {
    width: 140px;
}
.menu ul li a {
    padding: 19px 0px;
}
.dropdown ul li a {
    padding: 7px 15px;
}
.dropdown {
    top: 40px;
}
.container{
    max-width: 950px;
}
.serive-inn-box {
    margin: 0px 14px 30px;
}
.serive-inn {
    margin: 0px -14px;
}
.serive-inn-box img {
    height: 210px;
}
.serive-inn h3 {
    font-size: 16px;
}
}
@media screen and (max-width:991px) {
    section.banner h1 {
        font-size: 36px;
    }
    section.banner p {
        font-size: 18px;
    }
    .container {
        max-width: 100%;
        padding: 0px 20px;
    }
    .about-us-inner {
        display: block;
    }
    .left-about {
        width: 100%;
        padding-right: 0px;
        text-align: center;
    }
    section.about-us {
        padding: 40px 0px;
        overflow-x: hidden;
    }
    .right-about {
        width: 100%;
        max-width: 500px;
        margin: 20px auto 0;
    }
    .left-about h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    section.our-servive h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .serive-inn {
        margin: 0px -11px;
        padding-top: 20px;
    }
    .serive-inn-box {
        margin: 0px 11px 30px;
    }
    .serive-inn-box img {
        height: 165px;
    }
    section.our-servive {
        padding: 0px 0px 40px;
    }
    .quotes-inner {
        display: block;
    }
    .quotes-left {
        width: 100%;
    }
    .leftpad {
        padding-right: 0;
        margin-bottom: 30px;
    }
    section.quotes {
        padding: 50px 0px;
    }
    .slap-inner p {
        padding: 0;
    }
    .quotes-my {
        justify-content: unset;
    }
    .quotes-my-right {
        margin-left: 30px;
    }
    section.choose h2 {
        font-size: 32px;
    }
    section.choose {
        padding: 40px 0px 0px;
    }
    .choose-inner {
        padding-top: 30px;
        display: block;
    }
    .choose-inner-left {
        width: 100%;
    }
    .choose-inner-left-iiner {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .choose-inner-right {
        width: 100%;
    }
    .choose-inner-right-inner2 img {
        height: auto;
    }
    .testimonial {
        padding: 40px 0;
    }
    .testimonial h2 {
        font-size: 32px;
        margin-bottom: 5px;
    }
    .upper-footer {
        padding: 40px 0px;
    }
    .footer-box1 p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-box1 img {
        width: 165px;
    }
    .footer-box2 ul li, .footer-box3 ul li {
        font-size: 14px;
    }
    .footer-box1 {
        width: 100%;
        padding-right: 0px;
    }
    .upper-footer-inner {
        flex-wrap: wrap;
    }
    .upper-footer-inner h5 {
        font-size: 20px;
    }
    .footer-box2 ul, .footer-box3 ul {
        padding-top: 10px;
    }
    .footer-box3, .footer-box2 {
        width: 50%;
    }
    .menu {
        position: fixed;
        top: 0;
        background: rgba(0, 0, 0, 0.4);
        height: 100vh;
        z-index: 999;
        width: 100%;
        display: none;
        right: -300px; 
        transition: right 0.5s ease;
    }
    .menu.open {
        right: 0;
        display: block!important;
    }
    .menu ul li{
        display: block;
    }
    .menu ul {
        background: #fff;
        width: 320px;
        height: 100vh;
        float: right;
    }
    .menu ul li a {
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .menu ul li {
        display: block;
        margin: 0;
    }
    .dropdown ul {
        height: auto;
    }
    .dropdown ul li:first-child a {
        border-bottom:  1px solid #eee;
    }
    .dropdown {
      position: relative;
      width: 100%;
      top: 0;
      box-shadow: none;
      display: none;
      opacity: 1;
      transform: none;
      transition: max-height 0.4s ease;
      max-height: 0;
      overflow: hidden;
    }
    .menu li:hover .dropdown {
        max-height: 500px;
    }
    .dropdown ul li a {
        border-top: 0px solid #eee;
    }
    div#close-item {
        display: block !important;
        color: #419dd0;
        font-size: 36px;
        padding: 0px 20px;
        border-bottom: 1px solid #eee;
    }
    #hamburger{
        display: block !important;
    }
    .hamburger {
        width: 25px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }
    .hamburger span {
        margin-bottom: 5px;
        display: block;
        height: 3px;
        width: 100%;
        background: #419dd0; /* color */
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    body.menu-open {
        overflow-y: hidden;
    }
}
@media screen and (max-width:767px) {
    section.banner h1 {
        font-size: 32px;
    }
    .serive-inn-box {
        width: 46%;
    }
    .serive-inn-box img {
        height: 190px;
    }

}
@media screen and (max-width:580px) {
    .upper-header-left a {
        font-size: 13px;
    }
    .upper-header-left a{
        margin: 0;
    }
    .upper-header-left {
        display: flex;
        justify-content: space-between;
    }
    .upper-header .container-fluid {
        display: block;
    }
    .class-inner {
        padding: 15% 20px;
    }
    .upper-header .fa.fa-phone {
        font-size: 11px;
    }
    .upper-header-left i {
        font-size: 13px;
    }
    .upper-header-right {
        display: none;
    }
    .menu ul {
        width: 100%;
    }
    section.banner h1 {
        font-size: 28px;
    }
    section.banner p {
        font-size: 16px;
    }
    section.banner {
        background-size: 100% 100%;
    }
    .left-about p {
        font-size: 14px;
        line-height: 24px;
    }
    .servicetext {
        font-size: 14px;
    }
    .serive-inn {
        margin: 0px;
    }
    .serive-inn-box {
        width: 100%;
        margin: 0px 0px 20px;
    }
    .serive-inn-box p {
        font-size: 14px;
    }
    .serive-inn-box a {
        font-size: 14px;
    }
    .quotes-left h4 {
        font-size: 14px;
    }
    .quotes-my-right {
        margin-left: 0;
        margin-top: 10px;
    }
    .quotes-my {
        display: block;
    }
    .quotes-left p {
        padding-top: 15px;
        font-size: 14px;
    }
    .slap {
        padding: 10px;
    }
    .slap-inner {
        padding: 10px;
    }
    .form-inner {
        padding: 30px 20px!important;
    }
    .form-field {
        display: block;
        margin: 0px 0px 0px;
    }
    .form-field input {
        width: -webkit-fill-available;
        margin: 0px 0px 15px;
        height: 25px;
    }
    .wdyj {
        width: -webkit-fill-available!important;
        margin: 0px 0px 15px!important;
    }
    .left-box-right {
        width: 100%;
        padding-left: 0;
    }
    .left-box {
        display: block;
        text-align: center;
    }
    .left-box-left {
        width: 20%;
        margin: 0 auto 10px;
    }
    .left-box-right h3 {
        font-size: 16px;
    }
    section.testimonial p {
        font-size: 14px;
    }
    .footer-box3, .footer-box2 {
        width: 100%;
    }


}