@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --gradient1:linear-gradient(to right ,#024569 0% , #157A9D 50%, #157A9D 75%,#024569 100%); 
  --textcolor:#4A5565;
  --font1:"Inter", sans-serif;
  --darkblue:#024569;
  --royalblue:#1896C7;
  --yellowcolor:#FFB900;
  --textblue:#001C50;
  --lightgray: #D1D5DC;
  --darktextcolor:#001A27;
  --bluetextcolor:#008EC4;
  --blackcolor:#101828;
  --white:#fff;
  --green: #00C950;
  --orange: #FE9A00;
  --gradient2:linear-gradient(90deg,#024569 0%,#157A9D 100%);
  --lightbluecolor:rgba(24,150,199,.10);
}

.gradient-bg{
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
}
.gradient-bg2{
    background: linear-gradient(90deg, #F9FAFB 0%, #EFF6FF 100%);
}
.lightbg{
    background: #F0F6FE;
}
.darkbg{
    background: var(--gradient2);
}


.btn-holder{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cmnbtn{
    background: var(--gradient1);
    background-size: 200% 100%;
    background-position: left center;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    color: #fff;
    border-radius: 10px;
    line-height: 1;
    font-size: 16px;
    font-weight: 500;
    gap: 10px;
}
.cmnbtn:hover{
    background-position: right center;
    color: #fff;
}

.wp_button{ 
    background: #00A63E; 
    text-transform: uppercase;
}

section{
    padding: 100px 0;
    overflow: hidden;
}

.cmnbtn.yellow{
    background: var(--orange);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
}
.cmnbtn.yellow:hover{
    background: var(--blackcolor);
}
.cmnbtn.white{
    border: 1px solid var(--white);
    background: transparent;
}
.cmnbtn.white:hover{
    background: var(--yellowcolor);
    border: 1px solid var(--orange);
    color: var(--textblue);
}
.cmnbtn.white svg path, .cmnbtn.wp_button svg path{
    transition: 0.5s;
}
.cmnbtn.white:hover svg path{
    fill: var(--textblue);
}
.cmnbtn.wp_button:hover{
    background: var(--yellowcolor);
    color: var(--textblue);
}
.cmnbtn.wp_button:hover svg path{
    fill: var(--textblue);
}

html {
  scroll-behavior: smooth;
}

html,body{
    font-size: 18px;
    font-family: var(--font1);
    color: var(--textcolor);
    line-height: 1.4;
}
 
.main-container { 
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width:1549px){
    .main-container{
        transform: scale(.9);
    }
}
@media (max-width:1199px){
    .main-container{
        transform: scale(1);
    }
}

ul{
    padding: 0;
}

/* Common */


.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title.left{
  text-align: left;
  margin-bottom: 20px;
}

.section-title p {
  color: var(--textcolor);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  line-height: 26px;
}

.section-title h2 {
  font-size: 45px;
  margin: 0 0 15px;
  line-height: 55px;
  color: var(--blackcolor);
  font-weight: 700;
}

.section-title span{
    background: rgba(24, 150, 199, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 500;
    color: var(--bluetextcolor);
    margin-bottom: 20px;
    display: inline-block;
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: .5s;
  text-decoration: none;
}

ul {
  list-style: none;
}

.secbtn{
    margin-top: 40px;
}

.secbtn.center{
    text-align: center;
}
.darkbg .section-title span, .darkbg .section-title p{
    color: var(--lightgray)
}
.darkbg .section-title h2{
    color: var(--white);
}
.cmnbtn.white img{
    transition: 0.5s;
}
.cmnbtn.white:hover img{
    filter: invert(1);
}

/* HEADER */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.headerTop{
    background: var(--darktextcolor);
    padding: 8px 0;
    font-size: 14px;
    letter-spacing: 1px;
}
.headerTopHolder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerTopHolder ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}
.headerTopHolder ul li a{
    display: flex;
    gap: .5rem;
    color: var(--white);
}
.headerTopHolder ul li a:hover{
    color: var(--yellowcolor);
}

.headerTopHolder .social-list{
    gap: 1rem;
}
.social-list a:hover svg path{ 
    stroke:var(--yellowcolor);
}


.headerBottomHolder{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:  0;
}

.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  gap: 1.5rem;
  flex: 1;
  margin-right: 50px;
}

.logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--textblue);
  font-weight: 500;
  font-size: 18px;
  padding: 35px 0;
  display: block;
}
.nav-links a:hover{
    color: var(--bluetextcolor);
}
.nav-links li{
    position: relative;
}
.nav-links li.hashmenu >a{
    position: relative;
}
.nav-links li.hashmenu >a:after{
    background: url(../images/bottomarrow.svg) no-repeat  center;
    content: "";
    position: absolute;
    left: calc(100% + 2px);
    top: 50%;
    transform: translate(0,-50%);
    width: 15px;
    height: 15px;
    background-size: 12px;
}

.sub-nav-links{
    position: absolute;
    width: 200px;
    background: var(--white);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
    top: 100%;
    transform: rotateX(90deg);
    transform-origin: center 0;
    transition: .5s;
    border-radius: 15px;
    padding: 10px;
}
.nav-links li.hashmenu:hover .sub-nav-links{
    transform: rotateX(0deg);
}
.sub-nav-links li{
    border-bottom: 1px dashed #ccc;
}
.sub-nav-links li a{
    padding: 10px 15px;
    display: block;
    border-radius: 20px;
}
.sub-nav-links li a:hover{
    background: var(--darkblue);
    color: var(--white);
}

.menu-toggle {
  display: none;
}

.header .cmnbtn{
    padding: 12px 24px;
}



/***menu**/
 .menu .menubtn{ 
    width: 32px; height: 32px; display: inline-block;
     
} 
.menuholder{ position: fixed; 
    right: 0; top: 0; z-index: 1234; width:250px;
    height: 100%;  transition: 0.5s;
} 
.menuholder:after{
    position: fixed; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7);
    z-index: 1; content: ""; opacity: 0; pointer-events: none; transition: 0.5s;
}
.menuholder >div{position: relative; z-index: 2; height: 100%;
overflow: auto; 
 background:var(--gradient1);}
.menuholder{ right: -250px; }
.menuholder.menuholderadd{ right: 0; }
.menuholder.menuholderadd:after{
    opacity: 1; pointer-events: initial;
}
.menuholder.menuholderadd .cross{ display: inline-block; }
.menuholder .cross{width: 20px;
    height: 20px;
    display: inline-block; 
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
}

.menuholder ul ul{
    position: relative;
    background: var(--royalblue); 
  height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    width: 100%; 
    font-size: 14px;
}
.menuholder ul li.hashmenu {
    position: relative;
}
.menuholder ul li.hashmenu >span:after{
    background: url(../images/bottomarrow1.svg) no-repeat  center;
    content: "";
    position: absolute;
    right:10px;
    top: 50%;
    transform: translate(0,-50%);
    width: 15px;
    height: 15px;
    background-size: 12px;
}
.menuholder h3{ margin: 0; padding: 12px 10px; 
    text-align: center;  
     background: #fff; color: #fff;
}
.menuholder h3 img{max-width: 70px;}
.menuholder ul{list-style: none; margin: 0; padding: 0;}
.menuholder ul li{border-bottom: 1px dashed rgba(255,255,255,0.5); position: relative;}
.menuholder ul li a,
.menuholder ul li span{ 
    display: block; padding: 8px 12px; color: var(--white); 
    text-transform: capitalize;
    font-weight: 500; position: relative; 
}
.menuholder ul li a:hover{
        background: #ffffff;
    color: #f0310b;
}
 


@media (max-width:1349px){
    .nav-links{
        gap: 1.5rem;
    }
    .logo img{
        height: 60px;
    }
    .nav-links a{
        font-size: 16px;
    }
    .cmnbtn{
        font-size: 15px;
        padding: 12px 20px;
    } 
}
@media (max-width:1199px){
    .nav-links{
        display: none;
    }
    .menu-toggle{
        display: inline-block;
    }
    .logo img{
        height: 65px;
    }
}

@media (max-width:1023px){
    .headerinfolist span{
        display: none;
    }
}
@media (max-width:767px){
    .headerBottomHolder{
        flex-wrap: wrap;
        position: relative;
        padding: 10px 0;
    }
    .menu-toggle{
        position: absolute;
        right: 0;
        top: 10px;
    }
    .headerBottomHolder .btn-holder{
        margin-top: 10px;
        width: 100%;
    }
    .headerBottomHolder .btn-holder .cmnbtn{
        flex: 1;

    }
}
@media (max-width:479px){
    .headerBottomHolder .btn-holder{
        flex-wrap: wrap;
    }
}

/* HERO */

.hero{
    margin-top: 127px;
    position: relative;
    padding: 0;
}
.hero-image{
    width: 100%;
    height: 750px;
    position: relative;
}
@media (max-width:1549px){
    .hero-image{
        height: 700px;
    }
}
.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(0, 41, 63, 1) 0%, rgba(0, 41, 63, 0.9) 50%, rgba(24, 150, 199, 0.78) 100%);
}
.hero-content-holder{
    position: absolute;
    left: 0;top: 50%;
    transform: translate(0,-50%);
    width: 100%;
}
.hero-content{
    position: relative;
}
.hero-content .hero-left{
    width: 60%;
}
.hero .tagline{
    padding: 10px 20px;
    background: var(--royalblue);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
}
.hero h1{
    font-size: 60px;
    line-height: 75px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--white);
}
.hero p.yellow-para{
    font-size: 18px;
    font-weight: 400;
    color: var(--yellowcolor);
    margin: 0 0 15px;
}
.hero p{
    color: var(--white);
    margin-bottom: 30px;
    font-size: 16px;
}
.hero-counter{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 0;
    margin: 0 0 30px;
}
.hero-counter li{
    width: 20%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 15px;
    transition: 0.5s;
}
.hero-counter li:hover{
    transform: translateY(-10px);
}
.count-part h2{
    font-size: 22px;
    font-weight: 600;
    color: var(--yellowcolor);
    margin: 0 0 5px;
    text-align: center;
}
.count-part p{
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}
.hero-right{
    position: absolute;
    right: 0;
    background: rgba(0, 28, 80, 0.3);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 20px;
    padding: 25px 20px;
    bottom: 0;
}
.star{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.star li img{
    width: 26px;
}
.hero-right p{
    margin: 15px 0;
    text-align: center;
    font-size: 35px;
    line-height: 40px;
    color: var(--white);
    font-weight: 600;
}
.hero-right span{
    font-size: 15px;
    text-align: center;
    margin: 0 0 15px;
    display: block;
    color: var(--lightgray);
    font-weight: 300;
}
.hero-right .reviews{
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.2);
}
.hero-right .reviews h3 span, .hero-right .reviews h3{
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 10px;
    color: var(--yellowcolor);
}
.hero-right .reviews h3 span{
    display: inline-block;
    margin: 0;
}
.hero-right .reviews span{
    margin: 0;
}
.tagline {
  display: inline-block;
  background: #d9f3ff;
  color: #0e8db7;
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* STATS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  text-align: center;
  padding: 30px 25px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
  border: 1px solid #DBEAFE;
  box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0);
  transition: 0.5s;
}
@media (max-width:767px){
    .stat-box{background: linear-gradient(135deg, #EFF6FF 0%, #EFF6FF 100%);}
}
.stat-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 13px 13px -10px rgba(0, 0, 0, .1);
}
.stat-box .head{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 15px;
}
.stat-box .head .icon{
    width: 59px;height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 150, 199, 0.1);
    border-radius: 10px;
}
.stat-box .head .icon img{
    width: 32px;
}
.stat-box .head h3{
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: var(--bluetextcolor);
}
.stat-box p{
    text-align: left;
    margin: 0;
    font-size: 16px;
    color: var(--textcolor);
    font-weight: 500;
}

/* Service */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  height: 195px;
  width: 100%;
  object-fit: cover;
}

.service-content{
    padding: 30px 20px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 15px;
  color: var(--blackcolor);
}

.service-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--textcolor);
  margin-bottom: 20px;
}

.service-card a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--royalblue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card a img{
    width: 13px;
    height: 12px;
    object-fit: contain;
}

.service-btn{
    text-align: center;
    margin: 40px 0 0;
}
.service-lis{
    margin: 40px 0 0;
    padding: 0;
}
.service-lis .service-lis-div .faqnewhead{
    padding: 25px 20px;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    transition: 0.5s;
}
.service-lis .service-lis-div .faqnewhead .icon{
    width: 48px;height: 48px;
    border-radius: 50%;
    background: var(--bluetextcolor);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.service-lis .service-lis-div:not(:last-child){
    margin-bottom: 20px;
}
.service-lis .service-lis-div .faqnewhead h3{
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin: 0;
}
.service-lis .service-lis-div .faqnewhead h3 {
    color: var(--blackcolor);
    transition: 0.5s;
}
.service-lis .service-lis-div .faqnewhead .icon img{
    width: 24px;
}
.service-lis .service-lis-div .faqnewhead span{
    font-size: 14px;
    color: var(--textcolor);
}
.service-lis .service-lis-div .faqnewhead::before{
    position: absolute;
    content: "";
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    width: 14px;
    height: 8px;
    background: url(../images/bottom-angel.svg) no-repeat 0 0;
    background-size: contain;
}
.service-lis .service-lis-div .faqnewhead:hover{
    background: var(--darkblue);
}
.service-lis .service-lis-div .faqnewhead:hover h3 {
    color: var(--white);
}
.service-lis .service-lis-div .faqnewhead:hover span{
    color: var(--white);
}
.faq-new-content{
    display:none;
    padding: 20px 20px;
    border:1px solid #eee;
    background: #fff;
    border-radius: 0 0 10px 10px;
}
.faq-new-content ul li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.faq-new-content ul li:before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    left: 0;
    top: 5px;
    background: var(--darkblue);
}

.service-lis .service-lis-div.active .faq-new-content{
    display:block;
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 38px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }
}



/* About */

.expertise-image{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    position: relative;
    margin-right: 25px;
}

.ab-img1, .ab-img2{
    height: 610px;
    position: relative;
}
.ab-img1 img, .ab-img2 img{
    width: 100%;height: 100%;
    object-fit: cover;
    border-radius: 145px;
}
.ab-img2{
    top: 80px;
}
.ab-counter{
    width: 146px;
    height: 146px;
    border-radius: 50%;
    background: var(--gradient2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 50%;top: 50%;
    transform: translate(-50%,-50%);
    border: 10px solid var(--white);
}
.ab-counter h3{
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--white);
    line-height: 48px;
    text-align: center;
}
.ab-counter p{
    font-size: 15px;
    line-height: 22px;
    margin: 0;
    color: var(--white);
    text-align: center;
}
.about-part{
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #DBEAFE;
    height: 100%;
}
.about-part .icon{
    margin-bottom: 15px;
}
.about-part .icon img{
    width: 32px;
}
.about-part h3{
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--blackcolor);
    font-weight: 700;
}
.about-part p{
    font-size: 14px;
    line-height: 20px;
    color: var(--textcolor);
    margin: 0;
}
.expertise-content .row{
    row-gap: 25px;
}
.expertise-content .cmnbtn{
    margin-top: 40px;
}


/* PROCESS WORK */

.process-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    border: 1px solid #E5E7EB;
    transition:.4s;
    height: 100%;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-card .icon{
   text-align: center;
   margin-bottom: 20px;
}
.process-card .icon img{
    width: 45px;height: 45px;
    object-fit: contain;
    margin: 0 auto;
}
.process-card h3{
    font-size: 18px;
    font-weight: 600;
    color: var(--blackcolor);
    margin-bottom:15px;
}
.process-card p{
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

/* TESTIMONIALS */



.review-score{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:10px;
}

.star-rating{
    display:flex;
    gap:5px;
    margin: 0;
}
.rating-star{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}
.star-rating span{
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--darktextcolor);
}
.review-rate p{
    margin: 0;
    font-size: 12px;
    line-height: 15px;
}

.rating-star img{
    width:14px;
}

.review-count{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.review-count p{
    font-size:14px;
    margin: 0;
    line-height: 20px;
}

.review-count h4{
    font-size:22px;
    line-height: 30px;
    font-weight:700;
    margin: 0;
    color: var(--darktextcolor);
}
.review-content{
    padding-right: 25px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.review-card{
    padding:20px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    background:#fff;
    border: 1px solid #F3F4F6;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
}
.review-card-head{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.review h5{
    font-size:14px;
    line-height: 25px;
    color: var(--darktextcolor);
    font-weight:700;
    margin-bottom:0;
}
.review-card-head .icon img{
    width: 25px;
}

.review-card .star-rating{
    margin-bottom:10px;
}

.review-card p{
    font-size:12px;
    line-height:20px;
    margin:0;
     overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}

@media(max-width:991px){

    .review-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .review-grid{
        grid-template-columns:1fr;
    }

    .review-content h2{
        font-size:36px;
    }

}



/* ==========================
   GALLERY
========================== */



.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-tab .tablist{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-bottom:40px;
    padding:0;
    list-style:none;
}

.gallery-tab .tab{
    padding:10px 20px;
    border-radius:30px;
    background:var(--white);
    border:1px solid #E5E7EB;
    cursor:pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--blackcolor);
    transition:.3s;
}

.gallery-tab .tab.active{
    background: var(--bluetextcolor);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
    color:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

.gallery-item{
    border-radius:15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2);
}

.hide{
    display:none;
}

@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:574px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================
   CONSULTATION
========================== */


.consultation-wrapper{
    padding: 0 50px;
}

.consultation-content{
    background: var(--gradient2);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consultation-content h3{
    font-size:28px;
    line-height:35px;
    font-weight: 600;
    margin: 0 0 30px;
    color: var(--white);
}

.consultation-list{
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

.consultation-list li{
    margin-bottom:25px;
    display:flex;
    gap:15px;
    align-items:center;
}

.consultation-list .icon{
    background: rgba(255,255,255,.2);
    border-radius: 10px;
    width: 56px;height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-list .icon img{
    width: 32px;
}

.consult-item h4{
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--white);
    margin: 0;
}

.consult-item p{
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    color: var(--lightgray);
}

.consult-notice{
    padding: 25px;
    border-radius: 10px;
    background: #003346;
    border: 1px solid rgba(254, 154, 0, 0.5);
    margin-top: auto;
}

.consult-notice h5 img{
    width: 20px;
}

.consult-notice h5{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}
.consult-notice p{
    font-size: 16px;
    line-height: 25px;
    margin: 15px 0 0;
    color: var(--lightgray);
}

.consultation-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.consultation-form{
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom: 20px;
}

.form-group label{
    display: block;
    font-size: 14px;
    color: #364153;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group select, 
.form-group textarea{
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus, 
.form-group textarea:focus{
    border-color: #0d6e9b;
}
.form-group textarea{
    height: 120px;
    padding: 16px;
}

.form-row{
    display: flex;
    gap: 16px;
}

.form-row .form-group{
    flex: 1;
}

.checkbox-group{
    margin: 10px 0 20px;
}

.checkbox-group label{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #364153;
}

.checkbox-group input{
    width: 18px;
    height: 18px;
}

.submit-btn{
    width: 100%;
    border: 0;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.25);
    text-align: center;
    justify-content: center;
    padding: 20px 25px;
    font-size: 18px;
}

.form-note{
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

@media(max-width:767px){

    .consultation-form{
        padding: 24px;
    }

    .form-row{
        flex-direction: column;
        gap: 0;
    }

}

/* ==========================
   FAQ
========================== */

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    border: 1px solid #E5E7EB;
}

.faq-question{
    padding:20px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size: 16px;
    line-height: 26px;
    color: var(--blackcolor);
    font-weight:600;
    background: var(--white);
}

.faq-question span{
    font-size:28px;
}

.faq-answer{
    height: 0;
    overflow:hidden;
    transition:.4s;
    padding:0 20px;
    background:#F9FAFB;
    border-top: 1px solid #E5E7EB;
    color: var(--textcolor);
    font-size: 16px;
    line-height: 26px;
}

.faq-item.active .faq-answer{
    height:auto;
    padding:25px 20px;
}
.faq-item .faq-question{
    position: relative;
}
.faq-item .faq-question::before{
    position: absolute;
    content: "";
    right: 20px;
    top: 50%;
    transform: translate(0,-50%);
    width: 14px;
    height: 8px;
    background: url(../images/bottom-angel.svg) no-repeat 0 0;
    background-size: contain;
    transition: 0.4s;
}
.faq-item.active .faq-question::before{
    right: 20px;
    top: 50%;
    transform: translate(0,-50%) rotate(-180deg);
}
.secbtn span{
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--textcolor);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){


}

@media(max-width:767px){


}



/* ==========================
   CAREER TEAM SECTION
========================== */

.team{
    background: var(--gradient2);
}

.career-content .section-title h2{
    color: var(--white);
}

.career-content .section-title p{
    color: var(--white);
    font-size: 16px;
    line-height: 26px;
}

.career-content .section-title{
    margin-bottom: 35px;
}

.career-content .section-title span{
    color: var(--yellowcolor);
    background: rgba(254, 154, 0, 0.2);
    border: 1px solid rgba(254, 154, 0, 0.3);
}

.career-features{
    margin-bottom:35px;
    padding: 0;
}

.career-feature{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    align-items:flex-start;
}

.career-feature .icon{
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 201, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-feature h3{
    margin-bottom:5px;
    font-size:16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--white);
}

.career-feature p{
    margin-bottom:0;
    font-size: 14px;
    color: var(--lightgray);
    line-height: 24px;
}

.career-feature{
    transition:.3s ease;
}

.career-feature:hover{
    transform:translateX(8px);
}

.career-holder{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.career.team .row{
    align-items: center;
}
.career-card{
    padding: 25px 20px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    display: block;
}
.career-card .icon{
    margin-bottom: 10px;
}
.career-card .icon img{
    width: 32px;height: 32px;
    object-fit: contain;
}
.career-card h3{
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px;
    color: var(--white);
}
.career-card p{
    font-size: 16px;
    color: var(--lightgray);
    margin: 0;
}


/* Responsive */

@media(max-width:991px){

    .career-wrapper{
        grid-template-columns:1fr;
    }

    .career-content h2{
        font-size:38px;
    }

    .career-card{
        left:20px;
        bottom:20px;
    }

}

@media(max-width:767px){

    .career{
        padding:80px 0;
    }

    .career-content h2{
        font-size:30px;
    }

    .career-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:20px;
        max-width:100%;
    }

}



/* ==========================
   CTA SECTION
========================== */

.cta-section{
 position: relative;
}
.action-img1{
    position: absolute;
    left: 50px;top: 50%;
    transform: translate(0,-50%);
    z-index: -1;
}
.action-img2{
    position: absolute;
    right: 50px;
    bottom: 0;
    width: 345px;
    z-index: -1;
}
.cta-wrapper{
    max-width: 850px;
    margin: 0 auto;
}
.cta-wrapper .section-title{
    margin-bottom: 40px;
}
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom: 30px;
}
.action-list{
    margin: 0;
    padding: 35px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    border-top: 1px solid #E5E7EB;
}
.action-list li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.action-list li .icon{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-list li .icon svg{
    width: 24px;
}
.action-list-con h3{
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: var(--blackcolor);
    margin: 0;
}
.action-list-con p{
    font-size: 13px;
    line-height: 23px;
    color: var(--textcolor);
    margin: 0;
}
.action-list li:first-child .icon{
    background: #DCFCE7;
}
.action-list li:nth-child(2) .icon{
    background: #DBEAFE;
}
.action-list li:last-child .icon{
    background: #FEF3C6;
}
.cta-buttons .cmnbtn{
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}
.cta-buttons .cmnbtn span{
    font-size: 14px;
}
.cta-buttons .cmnbtn.wp_button{
    text-transform: none;
}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#001A27;
    color:#fff;
    padding-top:80px;
}
.footer-map{
    margin: 50px 0 30px;
}
.footer-map iframe{
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.footer-logo{
    width: 79px;height: 79px;
    margin-bottom:25px;
    object-fit: cover;
    border-radius: 50%;
}

.fotter-para{
    font-size: 16px;
    line-height: 26px;
    color: #CDD3DD;
    margin-bottom:25px;
}

.social-links{
    margin: 0;
    padding: 0;
    display:flex;
    gap:12px;
}

.social-links a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition: 0.5s;
}
.social-links a:hover{
    background: var(--royalblue);
}
.footer-head{
    font-size: 18px;
    line-height: 28px;
    color: var(--yellowcolor);
    margin-bottom: 30px;
}
.footer-list, .footer-contact-list{
    margin: 0;
    padding: 0;
}
.footer-list li{
    margin-bottom: 15px;
}
.footer-list li a{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
    color: #CDD3DD;
    padding-left: 0;
    transition: 0.5s;
}
.footer-list li a:hover{
    padding-left: 10px;
    color: var(--royalblue);
}
.footer-part{
    padding-left: 50px;
}
.footer-contact-list li{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}
.footer-contact-list li .icon{
    width: 25px;
    min-width: 25px;
    position: relative;
    top: 5px;
}
.footer-contact-list li a, .footer-contact-list li span{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
    color: #CDD3DD;
    padding-left: 0;
    transition: 0.5s;
}
.footer-contact-list li a:hover{
    color: var(--royalblue);
}

.footer-bottom{
    border-top:1px solid #1E2939;
    padding:30px 0 25px;
}
.footer-bottom-holder{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom-holder p{
    font-size: 14px;
    line-height: 20px;
    color: #99A1AF;
    margin: 0;
}
.footer-bottom-holder p a{
    color: var(--lightgray);
}
.footer-bottom-list{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin: 0;
    padding: 0;
}
.footer-bottom-list li a{
    font-size: 14px;
    line-height: 20px;
    color: #99A1AF;
}

/* ==========================
   BACK TO TOP
========================== */

#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#0e8db7;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .cta-wrapper h2{
        font-size:42px;
    }

}

@media(max-width:767px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-wrapper h2{
        font-size:32px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

}

.site-social{
    position: fixed;
    right: -1px;
    top: 50%;
    transform: translate(0,-50%);
    background: var(--gradient2);
    border-radius: 20px 0 0 20px;
    border: 1px solid var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 15px;
}
.site-social li a{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    background: transparent;
}
.site-social li a img{
    width: 20px;height: 20px;
    object-fit: contain;
}
.site-social li a:hover{
    background: var(--yellowcolor);
    border: 1px solid var(--orange); 
}

@media (max-width:1549px){
    .site-social{
        padding: 10px;
        gap: 10px;
    }
    .site-social li a{
        width: 28px;
        height: 28px;
    }
    .site-social li a img{
        width: 14px;
        height: 14px;
    }
}




/* Inner Page */

.breadcrumblist{
    display: flex;
    gap: 14px;
    color: #fff;
    margin: 0;
}
.breadcrumblist li a{
    color: #fff;
}
.innerbanner .hero-image{
    height: 400px;
}
.breadcrumblist .breadcrumb-item{
    padding-left: 15px;
    position: relative;
}
.breadcrumblist .breadcrumb-item::before{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.breadcrumblist .breadcrumb-item:first-child{
    padding-left: 0;
}

.inner .expertise-image{
    flex-wrap: wrap;
    height: 100%;
}
.about.inner .expertise-image{
    height: auto;
}
.inner .ab-img1, .inner .ab-img2 {
    height: 250px;
    width: 80%;
}
.inner .ab-img1 img, .inner .ab-img2 img {
    border-radius: 30px;
}
.inner .ab-img2{
    position: absolute;
    bottom: 0;
    right: 0;
    top: auto;
}
.inner .ab-img1{
    height: 450px;
}
.inner .ab-counter{
    left: auto;
    right: -30px;
}
.inner .ab-img2 img{
    border: 10px solid var(--white); 
}
.inner-ab-btm{
    margin-top: 80px;
}
.inner .expertise-content p{
    margin-bottom: 15px;
}

.inner .stat-box{
    border: none;
    background: transparent;
    box-shadow: none;
    position: relative;
}
.inner .stat-box::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--gradient1);
    top: 0;
    right: -14px;
}
.inner .stat-box:hover {
    transform: translateY(0);
    box-shadow: none;
}
.inner .stat-box .head{
    justify-content: center;
}
.inner .stat-box p{
    text-align: center;
}
.inner .stat-box .head h3{
    font-size: 34px;
    color: var(--blackcolor);
}
.stats.inner{
    padding-bottom: 0;
}
.contact-info .stat-box{
    height: 100%;
}
.contact-info .stat-box .icon{
    width: 60px;
    height: 60px;
    background: transparent;
    margin: 0 auto;
    border: 2px solid var(--royalblue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}
.contact-info .stat-box .icon img{
    width: 28px;
    transition: 0.4s;
}
.contact-info .stat-box .head{
    display: block;
    margin: 20px 0 0;
}
.contact-info .stat-box .head h3{
    font-size: 18px;
    color: var(--blackcolor);
    font-weight: 600;
}
.contact-info .stat-box .head h3 a{
    color: var(--blackcolor);
}
.contact-info .stat-box:hover .icon{
    background: var(--orange);
    border: 2px solid var(--orange);
}
.contact-info .stat-box:hover .icon img{
    filter: brightness(0) invert(1);
}
.stats.contact-info{
    padding-bottom: 0;
}
.conatct-consult .consultation-list{
    padding: 0;
    border: none;
}
.conatct-consult .consultation-content{
    padding: 40px;
}
.conatct-consult .consultation-list li{
    margin-bottom: 35px;
}
.conatct-consult .consultation-content h3{
    margin-bottom: 45px;
}
.gallery-item a{
    position: relative;
}
.gallery-item  >a{
    display: block;
}
.gallery-item a div{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    left: 0;
    top: 0;
    transition: 0.5s;
}
.gallery-item a div img{
    width: 35px;
    height: 35px;
    object-fit: cover;
}
.gallery-item a:hover div{
    opacity: 0.7;
}
.gallery-item a div::before{
    position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%,0);
    top: 20px;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,.9);
    transition: all 0.5s ease-in-out 0.1s;
}
.gallery-item a:hover div::before{
    width: calc(100% - 30px);
}

.gallery-item a div::after{
    position: absolute;
    content: "";
    left: 20px;
    top: 50%;
    transform: translate(0,-50%);
    width: 2px;
    height: 0;
    background: rgba(255,255,255,.9);
    transition: all 0.5s ease-in-out 0.1s;
}
.gallery-item a:hover div::after{
    height: calc(100% - 30px);
}
.gallery-item a span{
    width: 100%;
    height: 100%;
}
.gallery-item a span::before{
    position: absolute;
    content: "";
    left: 50%;
    transform: translate(-50%,0);
    bottom: 20px;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,.9);
    transition: all 0.5s ease-in-out 0.1s;
}
.gallery-item a:hover span::before{
    width: calc(100% - 30px);
}
.gallery-item a span::after{
    position: absolute;
    content: "";
    right: 20px;
    top: 50%;
    transform: translate(0,-50%);
    width: 2px;
    height: 0;
    background: rgba(255,255,255,.9);
    transition: all 0.5s ease-in-out 0.1s;
}
.gallery-item a:hover span::after{
    height: calc(100% - 30px);
}
.services.inner .row{
    row-gap: 30px;
    justify-content: center;
}
.ser-list{
    column-count: 2;
}
.ser-list li{
    margin-bottom: 20px;
    position: relative;
    transition: 0.5s;
}
.ser-list li::before{
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url(../images/next.png) no-repeat 0 0;
    background-size: contain;
}
.ser-list li a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: var(--darktextcolor);
    margin-left: 35px;
}
.ser-list li:hover{
    transform: translateX(10px);
}
.ser-right img{
    border-radius: 30px;
}
.stories .career-card{
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #DBEAFE;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.stories .career-card .icon{
    margin: 0;
}
.stories .career-card .icon img{
    min-width: 120px;
    min-height: 150px;
    width: 100px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    object-fit: cover;
    border-radius: 8px;
}
.stories .career-card h3{
    text-align: left;
    color: var(--darktextcolor);
    font-size: 17px;
}
.stories .career-card p{
    color: var(--textcolor);
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    line-height: 25px;
    text-align: left;
}
.stories .career-card .content{
    padding-left: 15px;
    border-left: 1px solid #E5E7EB;
    height: 100%;
    min-height: 150px;
}
.career.stories .row, .services.blog .row{
    row-gap: 25px;
}
.services.blog .service-card img{
    height: 250px;
}
.services.blog .service-card a img {
    height: 12px;
}
.services.blog .service-card p{
    overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.pagination .page-number a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--royalblue);
    color: var(--darkblue);
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
}
.pagination .page-number.active a, .pagination .page-number:hover a{
    background: var(--royalblue);
    color: var(--white);
}
.career.team.inner{
    background: linear-gradient(90deg, #F9FAFB 0%, #EFF6FF 100%);
}
.career.team.inner .career-content .section-title h2, .career.team.inner .career-feature h3 {
    color: var(--darktextcolor);
}
.career.team.inner .career-content .section-title p, .career.team.inner .career-feature p{
    color: var(--textcolor);
}
.career.team.inner .career-card{
    background: rgba(24, 150, 199, 0.2);
    border: 1px solid var(--royalblue);
}
.career.team.inner .career-card h3{
    color: var(--blackcolor);
}
.career.team.inner .career-card p{
    color: var(--textcolor);
}
.career.team.inner .career-feature h3.car-head{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}
.career.team.inner .career-feature h3{
    display: inline-block;
}
.career.team.inner .career-feature p{
    display: inline-block;
}
.stats.inner .row .col:last-child .stat-box::before{
    display: none;
}
.ser-right .consultation-form .checkbox-group label{
    display: inline-block;
    margin: 0 20px 0 0;
}
.list2 li{
    padding: 10px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
    border: 1px solid #DBEAFE;
    box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0);
}
.list2 li::before {
    position: absolute;
    content: "";
    left: 20px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: url(../images/next.png) no-repeat 0 0;
    background-size: contain;
}
.list2 li a{
    display: block;
}
p.ser-title{
    margin-top: 20px;
    font-weight: 600;
    color: var(--darktextcolor);
    font-size: 18px;
}
.team.inner .career-holder{
    grid-template-columns: 1fr;
}
.form-group input[type="file"]{
    padding: 10px 16px;
}
.team.inner .consultation-form h3{
    font-size: 25px;
    font-weight: 600;
    color: var(--darktextcolor);
    margin-bottom: 20px;
}
.team.inner .career-card{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}
.team.inner .career-card p{
    width: 100%;
}
.team.inner .career-card .icon{
    margin: 0;
}
.team.inner .career-card h3{
    margin: 0;
}
.services-details img{
    max-height: 400px;
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}
.services-details p{
    font-size: 16px;
    line-height: 26px;
}
.ser-det-list{
    display: flex;
    column-count: auto;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}
.ser-det-list li a{
    pointer-events: none;
}
.ser-det-list li{
    margin-bottom: 0;
}
.blog-det-con h2{
    font-size: 30px;
    font-weight: 600;
    color: var(--darktextcolor);
    line-height: 40px;
    margin: 30px 0 20px;
} 
.blog-det-con img{
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.recent-blog{
    padding: 30px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
    border: 1px solid #DBEAFE;
    box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0);
}
.recent-blog h2{
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--darktextcolor);
}
.recent-blog li{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DBEAFE;
}
.recent-blog li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px
}
.recent-blog li img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    min-width: 100px;
    border-radius: 5px;
}
.recent-blog li h3{
    font-size: 18px;
    line-height: 28px;
    color: var(--darktextcolor);
    margin-bottom: 5px;
    font-weight: 600;
}
.recent-blog li h3 a{
    color: var(--darktextcolor);
}
.recent-blog li p{
    font-size: 16px;
    margin: 0;
}
.recent-blog li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.other-ser{
    padding: 0;
    border: none;
    background: transparent;
}
.other-ser ul li{
    padding: 25px;
    border-radius: 15px;
    background: rgba(24, 150, 199, 0.2);
    border: 1px solid var(--royalblue);
}
.other-ser.recent-blog li:last-child {
    margin-bottom: 0;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--royalblue);
}
.career.team.inner.second-sec{
    background: transparent;
}
.team.inner .career-holder{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.career.team.inner.second-sec .career-holder{
    grid-template-columns: 1fr;
}
.career.team.inner.second-sec .career-holder .career-card{
    display: block;
    padding: 25px 25px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
    border: 1px solid #DBEAFE;
    box-shadow: 0 10px 30px -3px rgba(0, 0, 0, 0)
}
.career.team.inner.second-sec .career-holder .career-card h3{
    font-size: 25px;
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.career.team.inner.second-sec .career-holder .career-card span{
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 15px;
}
.career.team.inner.second-sec .career-holder .career-card p{
    margin-bottom: 15px;
}
.career.team.inner.second-sec .career-holder .career-card a{
    font-size: 16px;
    font-weight: 600;
    color: var(--orange);
    position: relative;
    display: inline-block;
}
.career.team.inner.second-sec .career-holder .career-card a::before{
    position: absolute;
    content: "";
    right: -10px;
    top: 50%;
    transform: translate(0,-50%);
    width: 15px;
    height: 15px;
    background: url(../images/next-or.png) no-repeat 0 0;
    background-size: contain;
    opacity: 0;
    transition: 0.5s;
}
.career.team.inner.second-sec .career-holder .career-card a:hover::before{
    opacity: 1;
    right: -25px;
}
.career.team.inner.second-sec .row {
    align-items: flex-start;
}
.blog-det-con{
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E5E7EB;
}
.comment-form__title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--darktextcolor);
}
.comment-form .submit-btn{
    width: auto;
}
.comment-form{
    margin-bottom: 30px;
}
.comment-one__content{
    margin-bottom: 20px;
}
.comment-one__content h3{
    font-size: 18px;
    font-weight: 600;
    color: var(--darktextcolor);
    margin-bottom: 10px;
}
.comment-one__content p{
    font-size: 15px;
    margin-bottom: 10px;
}
.comment-one__content a{
    color: var(--orange);
    font-size: 15px;
    font-weight: 500;
}


.careercardmodal{

}

.careercardmodal .modal-header{
    background: var(--gradient1);
}
.careercardmodal .modal-header h1{
    color: #fff;
}
.careercardmodal .modal-header .btn-close{
    filter: invert(1) brightness(100);
    opacity: 1;
}
.careercardmodal .modal-body{
    font-size: 16px;
}
@media (max-width:767px){
    .careercardmodal .modal-body{
        font-size: 14px;
    }
}
.careercardmodal .icon{
    margin: 0 0 20px;
}
.careercardmodal span{
    color: #1d7a17;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}


.commonmodal .modal-header{
    background: var(--gradient1);
    border-bottom:none;
}
.commonmodal .modal-header h1{
    color: #fff;
}
.commonmodal .modal-header .btn-close{
    filter: invert(1) brightness(100);
    opacity: 1;
}
 
.commonmodal .consultation-wrapper{
    padding: 10px;
 }
.commonmodal .modal-body{
    padding: 0;
 }
.commonmodal  .consultation-content{
    border-radius: 0;
 }
.commonmodal  .consultation-list{
    padding: 0;
    border-bottom: none;
 }
 .commonmodal .modal-dialog{
    max-width: 60rem;
 }


 .loan-modal .popup-content{
    font-size: 15px;
 }
 .loan-modal .popup-content h3{
    font-size: 25px;
 }
    .loan-modal{
        max-width:760px;
    }

    .loan-modal .modal-content{
        border-radius:18px;
        overflow:hidden;
    }

    .loan-modal .popup-close{
        position:absolute;
        right:15px;
        top:15px;
        z-index:10;
    }

    .loan-modal .popup-left{
        background:#fff;
    }

    .loan-modal .popup-image{
        width:100%;
        display:block;
        padding:20px 20px 10px;
    }

    .loan-modal .popup-features{
        padding:10px 20px 20px;
    }

    .loan-modal .feature{
        display:flex;
        align-items:flex-start;
        gap:12px;
        padding:15px 0;
        border-top:1px solid #ececec;
        font-size: 14px;
    }

    .loan-modal .feature:first-child{
        border-top:2px solid #0d6efd;
    }

    .loan-modal .feature i{
        width:42px;
        height:42px;
        border-radius:50%;
        background:#eef5ff;
        color:#0d6efd;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .loan-modal .feature h6{
        margin:0;
        font-weight:600;
        font-size: 16px;
    }

    .loan-modal .feature small{
        color:#666;
    }

    .loan-modal .popup-content{
        padding:35px;
    }

    .loan-modal .popup-badge{
        background:#eef5ff;
        color:#0d6efd;
        padding:6px 15px;
        border-radius:30px;
        font-size:12px;
        font-weight:600;
        margin:  0 0 10px;
        display: inline-block;
    }

    .loan-modal .popup-content h3{
          
        font-weight:700;
        margin: 0 0 10px;
    }

    .loan-modal .popup-content p{
        color:#666;
        margin: 0 0 20px;
    }
    .loan-modal form p{
        margin: 0;
    }
    .loan-modal .wpcf7-spinner{
        position: absolute;
    }
    .loan-modal .form-control,
    .loan-modal .form-select{
/*        height:40px;*/
        border-radius:10px;
            padding: 8px 10px;
    font-size: 14px;
    margin: 0 0 12px;
    }

    .loan-modal .btn-primary{
/*        height:40px;*/
        border-radius:10px;
        font-weight:600;
    }

    .loan-modal .privacy{
        display:block;
        margin-top:15px;
        color:#666;
        font-size:13px;
    }

    button, input[type="button"], input[type="reset"], input[type="submit"]{
        background: var(--gradient1);
        background-size: 200% 100%;
        background-position: left center;
        transition: 0.5s;
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        color: #fff;
        border-radius: 10px;
        line-height: 1;
        font-size: 16px;
        font-weight: 500;
        gap: 10px;
    }
    button:hover, input[type="button"]:hover, input[type="reset"]:hover, 
    input[type="submit"]:hover{
        background-position: right center;
        color: #fff;
    }

    .success-modal .story-image{
        padding: 40px 40px 0;
    }
    .success-modal .story-image img{
        width: 200px;
        height: 200px;
        border-radius: 10px;
    }
    .successSwiper  .swiper-button-prev,
    .successSwiper .swiper-button-next{
        display: none;
    }
    .success-modal .modal-close{
        opacity: 1;
        background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    }

    .comments-area{
        padding: 40px;
        background: #f5f5f5;
        box-shadow: 0 0 4px 0 rgba(0,0,0,.4);
    } 
    .comments-area h2{

        font-size: 25px;
        margin: 0 0 15px;
        color: #333;
    }
    .comments-area h3{
        font-size: 25px;
        margin: 0 0 15px;
        color: #333;
    }
    .comments-area ol{
        margin-left: 0;
    }
    .comment-form p label{
        display: block;
    }
    .comment-form input,
    .comment-form textarea{
        width: 100%;
        font-size: 14px;
        line-height: 1.2;
        padding: 10px 10px;
    }
    .comment-form input[type="checkbox"]{
        width: auto;
    }
    .comment-form input[type="checkbox"] + label{
        display: inline;
    }
    .comment-form input[type="submit"]{
        width: auto;
        padding: 10px 25px;
        font-size: 16px;
        line-height: 1.5;
    }

    .recent-blog  ul{
        margin: 0;
    }
    @media(max-width:991px){

        .loan-modal{
            max-width:520px;
        }

        .loan-modal .popup-content{
            padding:30px;
        }
        .loan-modal .btn-primary{
            font-size: 14px;
        }

        .comments-area{
            font-size: 14px;
            padding: 20px;
        }
        .comments-area h2{
            font-size: 20px;
        }
        .comments-area h3{
            font-size: 18px;
        }
    }

    @media(max-width:576px){

        .loan-modal{
            margin:15px;
        }

        .loan-modal .popup-content{
            padding:22px;
        }

        .loan-modal .popup-content h3{
            font-size:24px;
        }
    }