.cstrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-branding img{
  width: 100px;
}
/* Default Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .35s ease;
}

/* Sticky State */
.site-header.sticky {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 12px 0; /* Reduce header height if needed */
}

/* Optional: Logo Resize */
.site-header .site-branding img{
    transition: .35s;
}

.site-header.sticky .site-branding img{
   width: 85px;
}
.navBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navMenu ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navMenu a {
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.navMenu a::after{
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}
.current-menu-item >a::after{
  transform: scaleX(1);
  transform-origin: left;
}
.navMenu a:hover::after{
  transform: scaleX(1);
  transform-origin: left;
}

@media screen and (min-width:991px){
  .submenu-toggle{
    display:none;
  }
.menu-item-has-children{
    position:relative;
}

.menu-item-has-children>.sub-menu{

    position:absolute;
    top:25px;
    left:0;

    min-width:250px;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.3s ease;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding:15px 0;

    border-radius:12px;
    z-index: 2;
    display:block;

}

.menu-item-has-children:hover>.sub-menu{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}
.sub-menu li a{
  display:block;
  margin:15px 20px;
  color:#333;
  width:fit-content;
}
.sub-menu li:last-child a{
  margin-bottom:0;
}
}

.site-header {
  padding-top: 20px;
}

.heroImg {
  position: relative;
  line-height: 0;
}
.hrImgContain {
  position: relative;
}
.heroContent {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 2;
  padding: 0 42px;
}
.heroContent h1 {
  font-size: 4.3rem;
  font-weight: 500;
  max-width: 90%;
}
.heroContent p {
  max-width: 90%;
  margin-right: auto;
  margin-bottom: 20px;
}
.heroImg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #000000;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.72) 70%
  );
  z-index: 1;
}
.abeCr8 {
  position: relative;
}
.abeCr8::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #fff;
  width: 115px;
  height: 115px;
}
.abeCr8::after {
  content: "";
  position: absolute;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 0;
  bottom: 60px;
  background: #fff;
  z-index: 1;
  width: 115px;
  height: 115px;
}
.heroImg img {
  width: 100%;
}
.abeCr8 {
  width: calc(100% - 100px);
  margin: auto;
}
.abeHero {
  padding-top: 1rem;
  position: relative;
  margin-top: 100px;
}
.abtImgBlk {
  max-width: 48rem;
  aspect-ratio: 1;

  background: url("../assets/aboutimage.webp") center/cover no-repeat;

  -webkit-mask: url("../assets/Vector.svg") center/contain no-repeat;
  mask: url("../assets/Vector.svg") center/contain no-repeat;
}
.ABEabtSec{
  padding-top: 0;
}
.head-tag {
  background-color: #f2f2f2;
  padding: 8px 12px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  width: fit-content;
}
.head-tag p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.head-tag span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.abtContent p {
  font-size: 18px;
  margin-bottom: 12px;
}
.abtContent h2{
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.abtContent p:last-child {
  margin-bottom: 0;
}
.abtContent a {
  margin-top: 20px;
}
.r-flx {
  align-items: center;
}

.abtFtNum > div p {
  color: var(--primary-color);
}
.abtFtNum > div p span {
  font-size: 40px;
  font-weight: 600;
  font-family: var(--primary-font);
}
.abtFtNum p{
  font-size: 15px;
  color: #727272;
}
.abtFeat {
  border-top: 1px solid #dbdbdb;
  margin-top: 40px;
  padding-top: 20px;
}
.brSec {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 6rem !important;
}
.secTitle h2 {
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--primary-color);
}
.secHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.secHead {
  margin-bottom: 20px;
}
.projectRw {
  display: flex;
  gap: 16px;
  height: 520px;
}

.projectBlk {
  flex: 1;
  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
  cursor: pointer;
}

.projectBlk.active {
  flex: 3;
}

.projImg {
  height: 460px;
  overflow: hidden;
}

.projImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.projectBlk.active .projImg img {
  transform: scale(1.05);
}

.projhd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.projhd a {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  transition: 0.35s;
}

.projectBlk.active .projhd a {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.projectFilters button {
  background-color: #f2f2f2;
  padding: 8px 12px;
  border-radius: 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.projectFilters button:hover{
  background-color: var(--primary-color);
  color: #fff;
}
.projectFilters button.active{
    background-color: var(--primary-color);
  color: #fff;
}
.projectFilters{
  margin-bottom: 20px;
}
.ABEserviceSec {
  background-image: url(../assets/servicebg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.serBgImg {
  padding: 0 60px;
}
.serBgImg::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #12b4e5;
  background: linear-gradient(
    224deg,
    rgba(18, 180, 229, 1) 0%,
    rgba(57, 92, 167, 1) 100%
  );
  opacity: 0.8;
  top: 0;
  left: 0;
}
.ABEserviceSec::after {
  bottom: -1px;
}
.secHdEnd p {
  max-width: 40%;
  margin-left: auto;
}
.ABEserviceSec .secHead {
  align-items: center;
}
.ABEserviceSec .secHead h2,
.ABEserviceSec .secHead p {
  color: #fff;
}
.serviceBlk {
  background-color: #fff;
  padding: 18px;
}
.serImg {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.serImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.serImg::after {
  content: "";
  padding-top: 70%;
  display: block;
}
.serHd h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.serHd a {
  position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    border-radius:8px;
    background:#fff;
    color:var(--primary-color);
    text-decoration:none;
    z-index:1;
    margin-top: 20px;
}
.serHd a::after{
      content:"";
    position:absolute;
    inset:0;
    padding:2px;
    border-radius:inherit;

    background:linear-gradient(90deg,#14D9FF,#4A39C8);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    z-index:-1;
}
.serviceSwiper{
    overflow: hidden;
    padding-bottom: 60px !important;
}

.serviceSwiper .swiper-wrapper{
    align-items: stretch;
}

.serviceSwiper .swiper-slide{
    height: auto;
    display: flex;
}

.serviceSwiper .serviceBlk{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.serviceSwiper .serHd{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.serviceSwiper .serHd p{
    flex: 1;
}

.serviceSwiper .serHd a{
    margin-top: auto;
    width: fit-content;
}

.serviceBlk{
    height:100%;
}
.serviceBlk:hover img{
  transform: scale(1.05);
}
.serImg img{
  transition: transform 0.6s;
}
.ABEserviceSec{
    padding-bottom: 5rem;
}
.ABEserviceSec::before{
    top:-1px;
}
.serviceSwiper{
    padding-bottom:60px;
}

.serviceSwiper .swiper-pagination{
    bottom:0px !important;
}

.serviceSwiper .swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#eeeeee;

    opacity:1;

    transition:.3s;
}

.serviceSwiper .swiper-pagination-bullet-active{

    width:32px;

    border-radius:50px;

    background:linear-gradient(90deg,#12D8FA,#4A39C8);
}
.ABEwhySec .head-tag{
    justify-content: center;
    margin: auto;
    margin-bottom: 22px;
}
.ABEwhySec .secTitle h2{
    text-align: center;
    font-size: 5rem;
    max-width: 40%;
    margin: auto;
}
.whyBlk{
    background: #12B4E5;
background: linear-gradient(141deg, rgb(18 180 229 / 10%) 0%, rgb(57 92 167 / 10%) 100%);
padding: 40px; 
margin-top: 20px;
position: relative;
padding-right: 120px;
}
.whyContainer .whyBlk:nth-child(1){
    margin-top: 0;
}
.whyBlk::before{
      content: "";
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #fff;
  width: 50px;
  height: 50px;
}
.whyBlk::after{
      content: "";
  position: absolute;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 0;
  bottom: -1px;
  background: #fff;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.whyIco{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #12B4E5;
    margin-bottom: 10px;
background: linear-gradient(141deg, rgba(18, 180, 229, 1) 0%, rgba(57, 92, 167, 1) 100%); 
}
.whyCont h3{
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}
.whyContainer{
    margin-top: 40px;
}
.ABEtestimonialSec .secTitle h2{
    font-size:4.5rem;
    margin-top: 12px;
}

.whyImg{
    height:100%;
}

.whyImg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.whyImgContain{
    height:100%;
}

.whyContainer .row{
    align-items:stretch;
}
.cstDir{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.secTitle h2 span{
    display: block;
    font-family: var(--primary-font);
}
.tstSldBlk{
  background: #12B4E5;
background: linear-gradient(140deg, rgb(18 180 229 / 11%) 0%, rgb(57 92 167 / 11%) 100%);
padding: 45px;
position: relative;
}
.tstSldBlk::before{
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #fff;
  width: 50px;
  height: 50px;
}
.tstSldBlk::after{
      content: "";
  position: absolute;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 0;
  bottom: -1px;
  background: #fff;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.tstBtm{
    padding-top: 28px;
}
.tstCont p{
    font-size: 15px;
}
.tstPrfCnt p{
    font-weight: 600;
    font-size: 18px;
    font-family: var(--primary-font);
}
.tstPrfCnt span{
    color: #727272;
    font-size: 14px;
}
.tstBtm{
    display: flex;
    align-items: center;
    gap: 20px;
}
.circle-btn{
    width:54px;
    height:54px;

    border:1px solid transparent;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(90deg,#16D9FF,#4A39C8) border-box;

    color:#2B286F;

    cursor:pointer;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease,
        color .35s ease;

    overflow:hidden;
}

.circle-btn svg{
    transition:transform .35s ease;
}

.circle-btn:hover{
    border: none;
    background:linear-gradient(
        90deg,
        #16D9FF,
        #4A39C8
    );

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(57,92,167,.25);
}

.testimonialNav{
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: end;
}
.mobNav{
  display: none;
}
.blogImg{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 16px;
    line-height: 0;
}
.blogImg img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    line-height: 0;
}
.blogImg::after{
    content: "";
    display: block;
    padding-top: 64%;
}
.ABEblogSec .secHead{
    align-items: center;
}
.blogHd span{
    display: block;
    margin-bottom: 8px;
    color: #727272;
}
.blogHd h3{
    font-size: 20px;
    color: var(--primary-color);
}
.blogBlk:hover img{
    transform: scale(1.01);
}
.ABEctaSec::before{
    top:-1px;
}
.ABEctaSec{
  padding-top:0
}
.ctBgImg{
    background-image: url(../assets/cta.jpg);
    padding: 0 60px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end ;
}

.ctaCont{
    max-width: 100%;
    width: 40%;
    position: relative;
    z-index: 2;
    color: #fff;
}
.ctaCont h3,
.ctaCont h2{
    font-size: 4.5rem;
    margin-bottom: 16px;

}
.ctaCont h3 span,
.ctaCont h2 span{
    display: block;
    font-family: var(--primary-font);
}
.ctaCont a{
    background-color: #fff;
    padding: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    width: fit-content;
}
.ctBgImg::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #120C48;
background: linear-gradient(90deg, rgba(18, 12, 72, 0.03) 0%, rgba(30, 37, 102, 0.62) 31%, rgba(18, 12, 72, 1)100%);
inset:0;
opacity:.8;

}
.ABEctaSec::after{
    bottom: 50px;
}
.ctaCont p{
    max-width: 100%;
    width: 80%;
}
.ABEftr{
    background: #12B4E5;
background: linear-gradient(126deg, rgba(18, 180, 229, 1) 0%, rgba(49, 110, 179, 1) 36%, rgba(57, 92, 167, 1) 100%);
padding-top: 3rem;
margin-top: 3rem;
padding-bottom: 20px;
}
.ftrContent a,
.ftrContent li,
.ftrContent h4{
    color: #fff;
}
.ftrContent a,
.ftrContent li{
    font-size: 14px;
}
.ftrContent h4{
    font-size: 18px;
    margin-bottom: 20px;
}
.ftrContent li{
    margin-bottom: 12px;
}

.ftrSocial ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.ftrSocial li a{
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transition: all 0.3s;
}
.ftrSocial li a:hover{
    background-color: #fff;
}
.ftrSocial li a:hover img{
    filter: invert(1);
}
.ftrSocial li a img{
    transition: all 0.3s;
}
.ftrContent{
    padding-bottom: 4rem;
}
.copyright{
    border-top: 1px solid #ffffff49;
    padding-top: 22px;
}
.cprBtm{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright p{
    font-size: 14px;
    color: #fff;
}
.copyright a{
    color: #fff;
}
@media screen and (min-width: 992px) {
}

/* =======================================================
   INNER PAGES STYLES
   ======================================================= */
   .innerPageHero{
    padding-top: 0;
    padding-bottom: 2rem;
    overflow: hidden;
     margin-top: 7rem;
   }
   .innerPageHero::after{
    bottom: 0;
   }
      .innerPageHero::before{
        top: -20px;
      }
      .justify-content-center{
        justify-content: center !important;
      }
.inPageBg{
  position: relative;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.inPageBg {
padding: 0 60px;
}
.inPageBg::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #12b4e5;
  background: linear-gradient(91deg, rgb(18 180 229 / 82%) 0%, rgb(11 45 118) 100%);
  opacity: 0.8;
  top: 0;
  left: 0;
}

.innerHeroTitle {
  font-size: 4rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.innerHeroBreadcrumb {
  color: #fff;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.innerHeroBreadcrumb a {
  color: #12B4E5;
  margin: 0 5px;
}
.innerHeroBreadcrumb span {
  margin: 0 5px;
}

/* Services Page */
.serInImgBlk img{
  width: 100%;
}
.innerServiceSec{
    position:relative;
}

.serviceStack{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.servInBlk{

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;

    opacity:0;
    visibility:hidden;

}

.servInBlk.active{

    opacity:1;
    visibility:visible;

}

.servInImg{

    overflow:hidden;

}

.servInImg img{

    width:100%;
    display:block;

}
.innerServiceSec{
  padding-top: 0
  
}
.innerServiceSec{
    position:relative;
}
.innerServiceSec{
    position:relative;
    height:100vh;
}

.innerServiceSec .container{
    height:100%;
}

.serviceStack{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}

.servInBlk{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    display:flex;
    align-items:center;

    background:#fff;
}
.servInBlk:nth-child(1){
    z-index:5;
}

.servInBlk:nth-child(2){
    z-index:4;
}

.servInBlk:nth-child(3){
    z-index:3;
}

.servInBlk:nth-child(4){
    z-index:2;
}

.servInBlk:nth-child(5){
    z-index:1;
}

.serviceBlk.seo-friendly {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.serviceBlk.seo-friendly .serHd {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.serviceBlk.seo-friendly .serHd p {
  flex-grow: 1;
  margin-bottom: 20px;
}
.serInContent h2{
  font-size: 3.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.serInContent a{
  margin-top: 40px;
}
.servInBlk .row{
  align-items: center;
}
.serEvn{
  flex-direction: row-reverse;
}
.serviceCount{
  font-size: 4rem;
  opacity: 0.1 !important;
  font-weight: 800;

}
.inpgSec{
  padding-top: 0;
}
/* Projects Page */
.projectsGrid .projectBlk {
  margin-bottom: 30px;
}
.projectsGrid .projectBlk .projhd a {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.projectsGrid .projectBlk .projImg img {
  transform: scale(1.05);
}
.projectsGrid .projectBlk:hover .projImg img {
  transform: scale(1.1);
}
.projInImg {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.projInImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  position: absolute;
}
.projInImg::after {
  content: "";
  display: block;
  padding-top: 60%;
}
.projectBlk:hover .projInImg img {
  transform: scale(1.05);
}
.mobileProjects{
    display:none !important;
}

/* Service Detail */
.detailContent {
  color: #333;
}
.detailContent h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.detailContent h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}
.detailContent p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.detailContent ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.detailContent ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.6;
}
.detailContent ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #12B4E5;
  border-radius: 50%;
}
.detailContent img {
  border-radius: 10px;
  margin-bottom: 25px;
  width: 100%;
}
.sidebar{
  position: sticky;
  top: 20px;
}
.sidebarWidget {
  background: #f7f9fc;
  padding: 30px;
  margin-bottom: 30px;
}
.sidebarWidget h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}
.sidebarWidget ul li {
  margin-bottom: 15px;
}
.sidebarWidget ul li a {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}
.sidebarWidget ul li a:hover {
  color: #12B4E5;
  padding-left: 5px;
}
.sidebarWidget ul li a span {
  margin-left: auto;
}

/* Blog Page */
.blogBlk {
  margin-bottom: 30px;
}

/* Blog Detail Page */
.blogDetailMeta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.blogDetailMeta span {
  color: #727272;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blogDetailMeta span svg {
  width: 16px;
  height: 16px;
}
.blogDetailContent blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-color);
  border-left: 4px solid #12B4E5;
  padding-left: 20px;
  margin: 40px 0;
  background: #f7f9fc;
  padding: 30px;
  border-radius: 0 10px 10px 0;
}
.ser-lg-img{
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.ser-lg-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.ser-lg-img::after{
  content: "";
  display: block;
  padding-top: 55%;
}
.blog-lg-img{
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-lg-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.blog-lg-img::after{
  content: "";
  display: block;
  padding-top: 55%;
}
/* Contact Page */
.contactInfoText a{
    display:block;
    margin-bottom:6px;
}

.contactInfoText a:last-child{
    margin-bottom:0;
}
.contactInfoBox {
  background: #f7f9fc;
  padding: 40px;
  height: 100%;
}
.contactInfoBox h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}
.contactInfoItem {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.contactInfoIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(141deg, rgba(18, 180, 229, 1) 0%, rgba(57, 92, 167, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-right: 20px;
}
.contactInfoText h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.contactInfoText p, .contactInfoText a {
  color: #555;
  font-size: 16px;
}
.contactInfoText a:hover {
  color: #12B4E5;
}

.contactFormBox {
  padding: 40px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--secondary-font);
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}
.form-control:focus {
  border-color: var(--primary-color);
}
textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.contactMap {
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  height: 450px;
}
.contactMap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
