/*
 * Theme Name: Guna custom Theme
 * Description: Starter Theme to use with Timber
 * Author: Team D4G!
*/

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-font: "Merriweather", serif;
  --secondary-font: "Raleway", sans-serif;
  --primary-color: #015FC0;
  --secondary-color: #FF8000;
  --tertiary-color: #404040;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--secondary-font);
  background-color: #F4F4F4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}

/* Headings */
h1 {
  font-size: clamp(1.75rem, 3.5vw + 1rem, 4rem);
  /* ~40px–64px */
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
  /* ~32px–48px */
  line-height: 1.4;
}

h3 {
  font-size: clamp(1.45rem, 2.75vw + 1rem, 2rem);
  /* ~24px–32px */
  line-height: 1.4;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.5rem);
  /* ~20px–24px */
  line-height: 1.4;
}

h5 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  /* ~18px–20px */
  line-height: 1.5;
}

h6 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  /* ~16px–18px */
  line-height: 1.5;
}


/* Span text */
span {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  /* ~16px–20px */
  line-height: 1.5;
}

/* Paragraphs */
p.big {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  /* ~16px–18px */
  line-height: 1.7;
}

p {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  /* ~14px–16px */
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

section {
  padding-block: clamp(50px, 7.2vw, 90px);
  /* Top and bottom */
  padding-inline: 0;
  /* Left and right */
}

.container {
  max-width: 1200px !important;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.btn {
  border-radius: 4px;
  padding: 14px 24px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
  color: #fff;
}

.btn:hover {
  opacity: 0.7;
  transition: ease-in-out 0.3s;
}

.primary-btn {
  background: var(--secondary-color);

}

.secondary-btn {
  background: var(--primary-color);
}

.wpcf7-form .primary-btn.btn {
  border: none;
  font-weight: 400;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}

header {
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}
header img{
  width:108px;
  height: auto;
}

.header-wrapper {
  background: #fff;
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 10px 23px 10px #015FBF1F;
  border-radius: 8px;
}

.nav-main ul {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-main ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 20px 0px;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  background: black;
  height: 4px;
  width: 30px;
  margin: 0 0 5px;
  transition: 0.3s;
}
.menu-item-has-children .menu-items-cover {
  display: none;
}

@media (min-width: 992px) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
    /* Adjust this to match your header height */
  }
}

@media (max-width: 991px) {
  header {
    padding: 0;
  }

  header .header-wrapper {
    border-radius: 0;

  }
  header .header-wrapper a img{
  	max-width: 156px;
  }

  header .header-button.mb-hide {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    /* background: var(--secondary-color); */
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 0px 10px 23px 8px #015FBF1F;
  }

  .nav-main ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-main.show {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }



  /* 991px Core Values Section */

  .section.core-section {
    /* background: linear-gradient(180deg, #015FC0 70%, transparent 30%); */
    /* background-color: #015FC0; */
  }

  .core-section .core-backdrop {
    top: auto;
  }

  .core-content-wrapper {
    flex-direction: column;
    row-gap: 30px;
  }
}


@media (max-width: 991px){
  section{
      padding: 80px 0 !important;
  }
  
}
@media (max-width: 768px){
  section{
      padding: 60px 0 !important;
  }
}

/*===== HERO SECTION CODE  =====*/

.hero-section{
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
}
.hero-section .section-text-wrapper{
  /* padding-bottom: 150px; */
  text-align: center;
  max-width: 900px;
  margin:0 auto;
  color: var(--tertiary-color);
}
.hero-section .section-text-wrapper h1{
  margin-bottom: 30px;

}
.hero-section .section-text-wrapper h1 strong{
  color: var(--primary-color);
}
.hero-section .section-text-wrapper p{
  max-width: 750px;
  margin: 0 auto;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;

}
.hero-section .section-text-wrapper .btn-wrapper{
  margin: 40px 0 80px;
}
.hero-section .section-text-wrapper .btn-wrapper .btn{
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}
.hero-section .bg-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-section .form-card{
  width: 100%; 
  display:flex; 
  text-align: left; 
  background: #fff; 
  border-radius: 16px; 
  overflow:hidden; 
  align-items:center; 
  box-shadow: 0px 8px 40px 0px #044D9866;
}
.hero-section .form-card .form-left{
  padding:15px; 
  flex: 1.1;
}
.hero-section .form-card.form-right{
  background: #D8EAFD; 
  flex: 1; 
  padding: 40px 32px;
}
.hero-section .form-card .form-right form h3{
  color: #001326;
  margin-bottom: 20px;
}
.hero-section .form-card .form-right form p label{
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* ~16px–18px */
  line-height: 1.5;
  color: #001326;
  margin-bottom: 10px;
}
.hero-section .form-card .form-right form .wpcf7-form-control.wpcf7-text, 
.hero-section .form-card .form-right form .wpcf7-form-control.wpcf7-textarea, 
.hero-section .form-card .form-right form .wpcf7-form-control.wpcf7-email{
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #E5E8EB;
  border-radius: 4px;
}
.hero-section .form-card .form-right form .wpcf7-form-control.wpcf7-textarea{
	height:100px;
}
@media (max-width: 768px){
  
  .hero-section .form-card .form-left{
      display: none;
  }
  .hero-section .form-card .form-right{
      flex: 1;
  }
}


/* ===== CORE VALUE SECTION ===== */
.top-svg, .bottom-svg{
  max-width: 100%;
  width: 100%;
  margin: -1px auto;
  display: block;
  height: auto;
}

.core-section{
  position: relative;
  /* background: linear-gradient(180deg, #015FC0 50%, transparent 50%); */
  background-color: #015FC0;
}
.core-backdrop{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
.core-backdrop img{
  max-height: 815px;
}
.core-content-wrapper{
  display: flex;
  gap: 30px;
  align-items: center;
}
.core-content-wrapper .content-block, .core-content-wrapper .image-block{
  flex: 1;
}
.core-content-wrapper .content-block{
  color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.core-content-wrapper .content-block span{
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  font-weight: 900;
  font-family: var(--primary-font);
  color: #E6E6E6;
}
.core-content-wrapper .content-block p{
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* ~16px–18px */
  line-height: 1.7;
  letter-spacing: 2px;
  font-weight: 600;
}
.core-content-wrapper .image-block img{
  max-width: 481px;
  margin-left: auto;
}

@media (max-width: 600px) {
  .core-section{
      background: var(--primary-color) !important;
  }
  .core-content-wrapper .content-block p{
    letter-spacing: 1px;
  }
}

/* ===== ABOUT SECTION =====*/

.about-section{
  padding-top: 150px;
}
.about-section .container{
  padding: 0;
}
.about-wrapper{
  padding: 60px 40px;
  display: flex;
  gap: 32px;
  background: #fff;
  border: 1px solid;
  border-image-source: linear-gradient(98.87deg, #9CCCFF 0%, #FFFFFF 100%);
  border-radius: 16px;
  align-items: center;
  box-shadow: 0px 10px 40px 5px #015fbf59;
}
.about-left-block{
  flex: 1.6;
  padding-right: 10px;
  border-right: 4px solid #FFE6C3;
}
.about-right-block{flex: 1;}
.about-left-block span{
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  font-weight: 900;
  font-family: var(--primary-font);
}
.about-left-block h3{
  color: var(--secondary-color);
  margin: 15px 0;
}
.about-left-block p, .about-right-block p{
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* ~16px–18px */
  line-height: 1.7;
  font-weight: 500;
}
.about-left-block .profile-info{
  display: flex;
  gap: 16px;
}
.about-left-block .profile-info img{
  max-width: 200px;
  max-height: 200px;
  border-radius: 16px;
}
.about-left-block .profile-info h4{
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* ~16px–18px */
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--secondary-font);
  color: #015FC0;
}
.about-left-block .profile-info h4 strong{
  font-weight: 700;
}
.about-left-block .profile-info div{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-right-block p{
  color: var(--tertiary-color);
}
@media (max-width: 768px){
  .about-wrapper{
      flex-direction: column;
      row-gap: 16px;
  }
  .about-left-block{
      flex: 1;
      padding-right: 0;
      padding-bottom: 20px;
      border-right: none;
      border-bottom: 8px solid #FFE6C3;
  }
}
@media (max-width: 600px){
  .about-left-block .profile-info{
      flex-direction: column;
      gap: 16px;
      align-items: center;
      margin-top: 25px;
  }
  .about-wrapper {
    padding: 30px 20px;
  }
}

/* ===== SERVICES SECTION ===== */

.service-section .section-title-wrapper{
  text-align: center;
  max-width: 684px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 22px;
  margin-bottom: 50px;
}
.service-section .section-title-wrapper span{
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  font-weight: 900;
  font-family: var(--primary-font);
  color: #0052A8;
}
.service-section .section-title-wrapper p{
  font-weight: 500;
}
.service-section .service-cards-wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 32px;
}
.service-cards-wrapper .service-card{
  border-radius: 8px;
  border: 1.5px solid #A1CFFF;
  overflow: hidden;
  background: #FFFFFF;
}
.service-cards-wrapper .service-card img{
  height:240px;
}
.service-cards-wrapper .service-card:hover{
  box-shadow: 0px 4px 8px 4px #015FC02E;
}
.service-cards-wrapper .service-card:hover .card-title{
  color: var(--secondary-color);
}
.service-cards-wrapper .service-card .card-title{
  padding: 16px 10px;
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.5rem); /* ~20px–24px */
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary-color);
}
.service-section .btn-wrapper{
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 991px){
  .service-section .service-cards-wrapper{
    gap: 16px;
  }
}
@media (max-width: 768px){
  .service-section .service-cards-wrapper{
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 567px){
  .service-section .service-cards-wrapper{
      grid-template-columns: repeat(1, 1fr);
  }
}

/* ===== HOW WE WORK SECTION ===== */

.how-we-section h2 {
  text-align: center;
  margin-bottom: 50px;
}
.how-we-section .container-fluid{
    width: 100%;
    position: relative;
}
.how-we-section .container-fluid::before {
    content: '';
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    height: 0;
    border-bottom: 5px solid transparent;
    border-image: repeating-linear-gradient(
        to right,
        #015FC0 0,
        #015FC0 15px,
        transparent 10px,
        transparent 30px
    );
    border-image-slice: 1;
}
.how-we-section .work-steps-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
}

.work-steps-wrapper .work-card {
  border-radius: 12px;
  padding: 20px 0;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 379px;
}

.work-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0 0;
  transition: background 0.3s ease;
  box-shadow: 0px 6px 8px 0px #407BFF80;
}

.work-card svg {
  width: 56px;
  height: 56px;
}
.work-card .gradient-number{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    /* gap: 15px; */
}
.work-card .step-number {
    font-size: 160px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #E6E6E6 46.87%, rgba(230, 230, 230, 0.24) 79.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: color 0.3s ease;
    pointer-events: none;
    font-family: "Open Sans", sans-serif;
}

.work-card h3 {
    font-family: var(--secondary-font);
    margin: 10px 0 10px;
    color: #000;
    position: relative;
    z-index: 1;
}

.work-card p {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem); /* ~18px–20px */
    font-family: var(--secondary-font);
    color: var(--tertiary-color);
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Hover + Active styles */
.work-card:hover .icon-wrapper,
.work-card.active .icon-wrapper {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.work-card:hover .icon-wrapper svg path,
.work-card.active .icon-wrapper svg path{
    fill: #fff;
}
.work-card:hover h3,
.work-card.active h3 {
  color: var(--primary-color);
}

.work-card:hover .step-number,
.work-card.active .step-number {
    background: linear-gradient(180deg, #A1BEFF 46.87%, rgba(161, 190, 255, 0.08) 79.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px){
    .how-we-section .container-fluid::before {
        content: '';
        position: absolute;
        top: auto;
        left: 10px;
        bottom: auto;
        right: 0;
        height: 100%;
        width: 5px;
        border-bottom: 0;
        border-right: 5px solid transparent;
        border-image: repeating-linear-gradient(
            to bottom,
            #015FC0 0,
            #015FC0 10px,
            transparent 10px,
            transparent 20px
        );
        border-image-slice: 1;
    }
}

/* ====== TESTIMONIALS SECTION ====== */

.testimonial-section {
  position: relative;
  padding: 180px 0 220px;
}

.testimonial-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.testimonial-section .section-title-wrapper {
  color: #fff;
  max-width: 756px; 
  margin-bottom: 40px;
}

.testimonial-section .section-title-wrapper h2 strong {
  color: #000000;
}
.testimonial-section .mySwiper2{
  padding: 0 20px;
}
.testimonial-section .mySwiper2 .swiper-wrapper {
  margin-top: 30px;
}

.testimonial-section .mySwiper2 .swiper-wrapper .swiper-slide {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  padding: 15px;
  position: relative;
  background: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-top: 45px;
}
.testimonial-section .swiper-wrapper .swiper-slide p{
  font-size: clamp(0.875rem, 2.5vw, 1rem); /* ~14px–16px */
  line-height: 1.5;
  color: var(--tertiary-color);
  font-weight: 500;
}
.testimonial-section .swiper-wrapper .swiper-slide p strong{
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
}
.testimonial-section .mySwiper2 .swiper-wrapper .swiper-slide .qoute-img {
  position: absolute;
  top: -15px;
  right: 30px;
}

.testimonial-section .mySwiper2 .swiper-wrapper .swiper-slide .star-img {
  position: absolute;
  top: 0;
  left: auto;
  right: auto;
  max-width: 145px;
}
.testimonial-section .testimonial-slider{
  max-width: 1360px;
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
}
.testimonial-section .testimonial-slider .swiper-button-next.type-two-next::after,
.testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev::after{
  display: none;
}
.testimonial-section .testimonial-slider .swiper-button-next.type-two-next,
.testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev{
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  z-index: 99;
}
.testimonial-section .testimonial-slider .swiper-button-next.type-two-next{
  right: 15px;
}
.testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev{
  left: 15px;
}
.testimonial-section .testimonial-slider .swiper-button-next.type-two-next:focus,
.testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev:focus{
  background: var(--secondary-color);
}
.testimonial-section .testimonial-slider .swiper-button-next.type-two-next:focus svg path,
.testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev:focus svg path{
  fill: #fff;
}
@media (max-width: 1300px){
  .testimonial-section .mySwiper2.container{
    width: 90%;
  }
}
@media (max-width: 1024px){
  .testimonial-section{
      background: var(--primary-color) !important;
      padding: 80px 0;
  }
  .testimonial-section .testimonial-slider .swiper-button-next.type-two-next{
      right: 10px;
  }
  .testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev{
      left: 10px;
  }
  
}
@media (max-width: 657px){

  .testimonial-section .testimonial-slider .swiper-button-next.type-two-next,
  .testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev{
    width: 33px;
    height: 33px;
    padding: 8px;
    top: 60%;
  }

  .testimonial-section .testimonial-slider .swiper-button-next.type-two-next{
      right: 5px;
  }
  .testimonial-section .testimonial-slider .swiper-button-prev.type-two-prev{
      left: 5px;
  }
}

/* ====== CASE STUDIES SECTION ====== */

.case-study-section{
  padding-bottom: 0;
  padding-top: 60px;
}

.case-study-section .section-title-wrapper {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 22px;
  margin-bottom: 50px;
  position: relative;
}
.case-study-section .section-title-wrapper h1{
  font-size: clamp(1.75rem, 4vw + 1rem, 4rem);
  line-height: 1.4;
}
.case-study-section .section-title-wrapper span{
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.4;
  font-weight: 900;
  font-family: var(--primary-font);
  color: var(--primary-color);
}

.case-study-section .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.case-study-section .swiper-wrapper .swiper-slide{
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  height: auto;
  box-shadow: 0px 10px 23px 0px #015fbf30;
}
.case-study-section .swiper-wrapper .swiper-slide:hover{
  box-shadow: 0px 18px 20px 3px #015fbf3b;
}
.case-study-section .swiper-wrapper .swiper-slide .card-body{
  height: 100%;
  padding: 20px 16px;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-study-section .swiper-wrapper .swiper-slide h4{
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* ~16px–18px */
  line-height: 1.5;
  font-family: var(--secondary-font);
}
.case-study-section .swiper-wrapper .swiper-slide p{
  font-size: clamp(0.875rem, 2.5vw, 1rem); /* ~14px–16px */
  line-height: 1.5;
  color: var(--tertiary-color);
  font-weight: 500;
}
.case-study-section .swiper-btn-wrapper{
  position: relative;
  padding: 30px 0;
  width: 150px;
  margin: 30px auto 0;
}
.case-study-section .swiper-btn-wrapper .swiper-button-next::after,
.case-study-section .swiper-btn-wrapper .swiper-button-prev::after{
  display: none;
}
.case-study-section .swiper-btn-wrapper .swiper-button-next,
.case-study-section .swiper-btn-wrapper .swiper-button-prev{
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  outline: 2px solid #FFFFFF;
}
.case-study-section .swiper-btn-wrapper .swiper-button-next:focus,
.case-study-section .swiper-btn-wrapper .swiper-button-prev:focus{
  background: var(--primary-color);
}
.case-study-section .swiper-btn-wrapper .swiper-button-next:focus svg path,
.case-study-section .swiper-btn-wrapper .swiper-button-prev:focus svg path{
  fill: #fff;
}
.case-study-section h4 a{
  text-decoration: none;
  color:#000;
  font-size: 18px;
  line-height: 28px;
}

/* ====== SCHEDULER SECTION ====== */

.scheduler-section{
  position: relative;
  overflow: hidden;
  /* padding: 20px 0; */
}
.scheduler-section .section-title-wrapper{
  margin-bottom: 50px;
  text-align: center;
}
.scheduler-section .section-title-wrapper h2{
  margin-bottom: 30px;
}
.scheduler-section .section-title-wrapper p{
  max-width: 700px;
  margin: 0 auto;
}
.scheduler-section .scheduler-wrapper{}
.scheduler-wrapper{
  /* height:300px; */
}
.scheduler-section .scheduler-backdrop{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.scheduler-section .scheduler-backdrop .left-side{
  position: absolute;
  left: 0;
  bottom: 5%;
  max-width: 650px;

}
.scheduler-section .scheduler-backdrop .right-side{
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 650px;
}
@media (max-width: 991px){
  .scheduler-section .scheduler-backdrop .left-side{
    bottom: 0;
    top: 25%;
    max-width: 500px;
  
  }
  .scheduler-section .scheduler-backdrop .right-side{
    bottom: 0;
    max-width: 500px;
  }
}

/* ====== FOOTER SECTION ====== */

.site-footer {padding: 80px 0 0 0;}
.site-footer .footer-logo{
    position: relative;
    margin-bottom: 40px;
}
.site-footer .footer-logo::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 50%;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    z-index: -1;
}
.site-footer .footer-logo img{
    max-width: 300px;
    margin: 0 auto;
    background: #f4f4f4;
}
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.footer-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    padding: 10px;
}

.footer-cta {
  margin-bottom: 50px;
    display: flex;
    gap: 24px;
    align-items: center;
}

/* .cta-title {
  
} */

.cta-form p{
    display: flex;
    flex-direction: row;
    background: #E6E6E6;
    border: 1px solid #E5E8EB;
    align-items: center;
    padding: 6px;
    border-radius: 8px;
}

.cta-form input[type="email"] {
  padding: 6px 12px;
    border: none;
    border-radius: 4px;
    max-width: 250px;
    background: transparent;
    font-size: 18px;
}
.cta-form input[type="email"]:focus-visible {
  outline: none;
}
.cta-form .wpcf7-spinner{
  display: none;
}

.or {
  font-weight: bold;
  margin: 0 24px 0 10px;
}

.btn-outline {
  border: 2px solid #ff7a00;
  border-radius: 4px;
  color: #ff7a00;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  border-top: 2px solid #0074e8;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  gap: 26px;
  row-gap: 10px;
  flex-wrap: wrap;
  color: white;
  background-color: #0074e8;
  padding: 15px;
  align-items: center;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}
@media (max-width:1100px){
  .site-footer .footer-cta{
    flex-direction: column;
  }
}
@media (max-width: 567px){
  .site-footer .footer-logo img {
    max-width: 200px;
  }
  .site-footer .footer-cta .cta-link{
	display: contents;
 }
}
@media (max-width: 467px){
  header .header-wrapper {
    padding: 15px;
  }
  header .nav-main{
    top: 69px;
  }
  /* Hero form */
  .hero-section .form-card .form-right{
    padding: 30px 20px;
  }

  /* How we work section */
  .work-steps-wrapper .work-card{
    padding: 20px;
  }
  .how-we-section .work-steps-wrapper{
    gap: 10px;
  }
  .how-we-section .container-fluid::before {
    left: 0;
  }
  .work-card .step-number{
    font-size: 100px;
  }

  /* footer Style */
  .site-footer .cta-form p{
    flex-direction: column;
  }
  .site-footer .cta-form .wpcf7-form .primary-btn.btn {
    width: 100%;
  }
}



/* About page header */
.about-header .content-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-header .content-wrapper .content h1{
  font-family:var(--primary-font);
  font-weight: 700;
  font-size: 100px;
  line-height: 110.00000000000001%;
  text-transform: capitalize;
  color:var(--primary-color);
  margin-bottom: 20px;
}
.about-header .content-wrapper .content span{
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color:#404040;
  display: block;
}
.about-header .content-wrapper .content p{
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 28px;
  line-height: 130%;
  color:var(--primary-color);
}
.about-header .content-wrapper img{
  max-width: 380px;
}


.image-content-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:32px;
}
.image-content-wrapper .content h2{
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 28px;
  line-height: 155%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color:var(--secondary-color);
}
.image-content-wrapper .content p{
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color:#4f4f4f;
  margin-bottom: 12px;
}

.bottom-title-cta{
  padding-top: 50px;
  padding-bottom: 150px;
  background: linear-gradient(180deg, rgba(64, 123, 255, 0) 8.87%, #015FC0 135.46%); 
}
.bottom-title-cta h2{
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: -1%;
  text-align: center;
  color:#000;
  margin-bottom: 48px;
}
.bottom-title-cta .title-cta-wrapper{
  text-align: center;
}

.page-title h2{
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 64px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color:#404040;
  margin-bottom: 20px;
}
.page-title-section{
  padding:100px 0;
}
.page-title p{
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color:#404040;
}
.contact-form{
  padding-top: 0;
  padding-bottom: 0;
}
.contact-form .content-wrapper{
  display: flex;
  /* align-items: center; */
  gap:32px;
}
.contact-form .content-wrapper .left img{
  width:100px;
  height: auto;
}
.contact-form .content-wrapper .left h2{
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color:#001326;
  margin-bottom: 20px;
}
.contact-form .content-wrapper .left p{
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin-bottom: 20px;
  color:#656565;
}
.contact-form .content-wrapper .left p a{
  color:var(--secondary-color);
  font-weight: 600;
  text-decoration: var(--secondary-color);
}
.contact-form .content-wrapper .left p:last-of-type a{
  padding:12px 22px;
  color:var(--secondary-color);
  border:1px solid var(--secondary-color);
  border-radius: 4px;
  text-decoration: none;
}
.contact-form .content-wrapper .right{
  padding:28px;
  border-radius: 24px;
  background-color: #015FC0;
}
.contact-form .content-wrapper .right form label{
  color:#fff;
  margin-bottom: 5px;
}
.contact-form .content-wrapper .right form h3{
  color:#fff;
  text-align: center;
  margin-bottom: 30px;
}
.contact-form .content-wrapper .right form input,
.contact-form .content-wrapper .right form textarea{
  width:100%;
  display: block;
  background-color: #F4F4F4;
  height:56px;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  margin-bottom: 15px;
}
.contact-form .content-wrapper .right form textarea{
  height:120px;
}
.contact-form .content-wrapper .right .btn.primary-btn{
  background-color: var(--secondary-color);
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.horizontal-card-wrapper .horizontal-card-item{
  padding:40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:40px;
  background-color: #fff;
  margin-bottom: 40px;
  border-left: 4px solid #015FC0;
  box-shadow: 0px 2px 4px 0px #1F192B14;
  box-shadow: 0px 4px 32px 0px #1F192B29;
}
.horizontal-card-wrapper .horizontal-card-item img{
  min-width: 150px;
  width:150px;
}
.horizontal-card-wrapper .horizontal-card-item .card-content{
  position: relative;
}
.horizontal-card-wrapper .horizontal-card-item .card-content::before{
  position: absolute;
  content:"";
  top:0;
  left:-30px;
  margin: auto;
  width: 1px;
  height: 100%;
  background: #DADCDF;
}
.horizontal-card-wrapper .horizontal-card-item .card-content span{
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 10%;
  text-transform: uppercase;
  color:#6C6873;
  display: block;
  margin-bottom: 30px;
}
.horizontal-card-wrapper .horizontal-card-item .card-content p{
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 10%;
  color:#001326;
}

/* SERVICES PAGE STYLE 1 */
/* .service-card-lists{
  position: relative;
}
.service-card-lists h2{
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0%;
  color:#656565;
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
}
.service-card-lists .service-cards-list{
  display: flex;
  align-items: center;
  gap:120px;
}
.service-card-lists .service-cards-list .service-card-content h3{
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color:#001326;
  margin-bottom: 20px;
}
.service-card-lists .service-cards-list .service-card-content p{
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  color:#404040;
  margin-bottom: 30px;
}
.service-card-lists .service-cards-list .service-card-content a{
  background: #FF8000;
  border-radius: 4px;
  padding:12px 22px;
  color:#fff;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
}
.service-card-lists .service-cards-list img{
  max-width: 380px;
}
.service-card-lists .service-cards-list:nth-of-type(odd){
  margin-left: auto;
  margin-right: 90px;
  margin-bottom: 120px;
}
.service-card-lists .service-cards-list:nth-of-type(even){
  flex-direction: row-reverse;
  margin-left: 90px;
  margin-bottom: 120px;
}
.service-card-lists .service-cards-list:last-of-type{
  margin-bottom: 30px !important;
}
.service-card-lists::before{
  content:'';
  position: absolute;
  width:230px;
  height: 100%;
  margin: auto;
  top:100px;
  left:0;
  right:0;
  background-color: #CCDFF2;
  z-index: -1;
}
.service-card-lists {
  counter-reset: card-counter;
}
.service-cards-list {
  counter-increment: card-counter;
  position: relative;
}
.service-cards-list::after {
  content: counter(card-counter, decimal-leading-zero);
  position: absolute;
  top: -80px;
  right: 0px;
  left:0;
  width: max-content;
  margin: auto;
  padding:10px;
  font-family: 'DM Sans';
  font-weight: 700;
  font-size: 28px;
  line-height:28px;
  color:var(--primary-color);
  background-color: #fff;
  border-radius: 999px;
}
.service-card-lists .service-cards-list:nth-of-type(odd)::after{
  right:130px;
}
.service-card-lists .service-cards-list:nth-of-type(even)::after{
  left:130px;
} */

body.single-post{
  background: #FFFFFF;
}
body.single-post .site-footer .footer-logo img {
	background: #FFFFFF;
}
.blog-detail{
  padding:0 !important;
}
.blog-detail .blog-header{
  padding:40px 0 40px;
  background-color: rgba(1, 95, 192, 1);
}
.blog-detail .blog-header .container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}
.blog-detail .blog-header h1{
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  color:#fff;
}
.blog-detail svg{
  width:100% !important;
  height:100% !important;
}
.blog-detail .blog-header .categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding:4px 8px;
  border-radius: 4px;
  background-color: #FFEEE4;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #001326;
  width:max-content;
  margin-right: auto;
  margin-bottom: 20px;
}
.blog-detail .blog-header .categories li{
  color:#001326;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  list-style: none;
}
.single header{
  background-color: rgba(1, 95, 192, 1);
}
.blog-detail .blog-header .author{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:20px;
  margin-top: 30px;
  padding-top: 20px;
  /* border-top: 1px solid rgba(105, 175, 248, 1); */
  width: max-content;
  margin-left: 0;
  margin-right: auto;
}
.blog-detail .blog-header .author img{
  width:50px;
  height:50px;
  border-radius: 9999px;
}

.blog-detail .blog-header .author .author-details h3{
    font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color:#fff;
}
.blog-detail .blog-header .author .author-details span{
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color:#fff;
}
.blog-detail .blog-header .header-right-column img{
  max-width: 584px;
  border-radius: 12px;
}

.blog-detail .blog-main #table-of-contents h3{
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.blog-detail .blog-main #table-of-contents ol{
  padding:0;
  margin:0;
  list-style: inside;
  list-style-type: decimal;
}
.blog-detail .blog-main #table-of-contents ol li{
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  padding:8px 0;
  border-bottom: 1px solid rgba(210, 211, 212, 1);
}
.blog-detail .blog-main #table-of-contents ol li a{
  color:rgba(101, 101, 101, 1);
  text-decoration: none;
}
.blog-detail .blog-main #table-of-contents ol li a:hover{
  color:rgba(1, 95, 192, 1);
}
.blog-main-wrapper{
  padding: 50px 0 80px;
}
.blog-main-wrapper .blog-main .main-blog-content h2{
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 20px;
}
.blog-main-wrapper .blog-main .main-blog-content h3{
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color:rgba(64, 64, 64, 1);
  margin-bottom: 20px;
}
.blog-main-wrapper .blog-main .main-blog-content p{
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  font-family: var(--secondary-font);
  margin-bottom: 20px;
  color:rgba(64, 64, 64, 1);
}
.blog-main-wrapper .blog-main .main-blog-content ul{
  margin-bottom: 20px;
}
.blog-main-wrapper .blog-main .main-blog-content li{
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  list-style-type: disc;
  list-style: inside;
  margin-bottom: 5px;
  color:rgba(64, 64, 64, 1);
}
.blog-main-wrapper .blog-main .main-blog-content blockquote{
  background-color: #F4F4F4;
  border: 1px solid #FFFFFF;
  color:#015FC0; /* Match your brand blue */
  padding: 32px 140px 32px 40px;
  border-radius: 12px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  display: inline-block;
  margin: 20px 0;
}
.blog-main-wrapper .blog-main .main-blog-content blockquote p{
  color: #015FC0; /* Match your brand blue */
  font-weight: 600;
  margin-bottom: 0;
}

.blog-main-wrapper .blog-main .main-blog-content blockquote::after {
  content: url("data:image/svg+xml,%3Csvg width='36' height='31' viewBox='0 0 36 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.9971 4.75098C22.9725 5.86848 24.6232 7.42839 25.9473 9.42285L26.2285 9.8623C27.6992 12.2377 28.3147 14.5386 27.9424 16.75L27.8535 17.2744L27.3359 17.1543C26.5209 16.9653 25.6173 16.9524 24.6484 17.1279L24.2285 17.2148C23.1218 17.471 22.2679 17.9979 21.6396 18.7891V18.79C20.7727 19.917 20.3032 21.307 20.2539 22.9863V23.2783C20.2526 25.3356 20.8907 26.9001 22.127 28.0352L22.1289 28.0371C23.3965 29.2126 25.0032 29.8037 26.9834 29.8037C29.21 29.8037 31.0569 28.9585 32.5557 27.2451L32.5576 27.2432L32.834 26.916C34.1828 25.2481 35.0374 23.036 35.3701 20.2637L35.3711 20.2627C35.6426 18.0319 35.484 15.8668 34.916 13.7422C34.3465 11.6117 33.4626 9.73775 32.2861 8.08008C31.0961 6.40343 29.7594 4.92312 28.2559 3.6377L28.2539 3.63574C26.8834 2.44729 25.4031 1.45091 23.8496 0.644531L20.9971 4.75098ZM1.2666 4.76367C3.3851 5.96709 5.12872 7.67208 6.49609 9.86816L6.49707 9.86914C7.97362 12.2557 8.56471 14.5649 8.19238 16.7529L8.10352 17.2764L7.58594 17.1562C6.6617 16.941 5.62753 16.9503 4.47461 17.2041V17.2051C3.37143 17.4516 2.51884 17.982 1.88867 18.792C0.975957 19.9793 0.504239 21.4581 0.5 23.2598C0.501367 25.3171 1.14066 26.8823 2.37695 28.0176L2.37793 28.0186C3.64784 29.1911 5.25479 29.7868 7.2373 29.7842H7.23828C9.46303 29.7842 11.3058 28.9446 12.7998 27.2441L12.8008 27.2432L13.0771 26.917C14.422 25.2493 15.2728 23.037 15.6016 20.2646V20.2607L15.6484 19.8516C15.8562 17.8033 15.686 15.7331 15.1455 13.7441V13.7422C14.5755 11.6099 13.7031 9.7376 12.5352 8.07812L12.5342 8.07715C11.3864 6.4351 10.0375 4.94298 8.51855 3.63672C7.13487 2.44641 5.66635 1.4511 4.11523 0.645508L1.2666 4.76367Z' stroke='%23015FC0'/%3E%3C/svg%3E");
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar-newsletter{
  background-color: rgba(1, 95, 192, 1);
  padding:24px 30px;
  text-align: center;
}
.sidebar-newsletter h3{
  color:#fff;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 20px;
  text-align: center;
}
.sidebar-newsletter{
  border-radius: 16px;
}
.sidebar-newsletter input {
  padding:10px;
  border-radius: 8px 8px 0 0;
  border: none;
  width:100%;
  margin-bottom: 5px;
}
.sidebar-newsletter .wpcf7-form .primary-btn.btn{
  padding:10px;
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 16px;
  border-radius: 0 0 8px 8px;
}
.sidebar-newsletter .wpcf7-spinner{
  display: none;
}
.sidebar-newsletter .or{
  color:#fff;
  font-size: 18px;
  line-height: 28px;
  margin:10px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}
.sidebar-newsletter .btn-outline{
  padding:8px 20px;
}
.blog-footer{
  background-color: rgba(1, 95, 192, 1);
  padding:70px 50px;
  border-radius: 16px;
  text-align: center;
}
.blog-footer h2{
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  text-align: center;
  margin-bottom: 20px;
}
.blog-footer p{
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
.blog-footer h2{
  color:#fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
}
.blog-footer p{
  color:#fff;
  margin-bottom: 20px;
}
.blog-footer form{
  position: relative;
}
.blog-footer form p{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:30px;
  gap:5px;
  width:80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.blog-footer form p input{
  font-size: 20px;
  line-height: 28px;
  padding:10px;
  border-radius: 4px;
  border:none;
  width: 100%;
}
.blog-footer form p .btn{
  width: max-content;
}
.blog-footer form .wpcf7-spinner{
  position: absolute;
  bottom:-30px;
  left:0;
}
.posts-list{
  padding:50px 0 80px;
}
.posts-list h1{
  font-weight: 700;
  font-size: 64px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 80px;
}
.posts-list .post .post-author-details{
  display: flex;
  align-items: center;
  gap:10px;
  margin: 10px 0;
}
.posts-list .post .post-author-details img{
  width:40px;
  height:40px;
  border-radius: 9999px;
}
.posts-list .post .post-category{
  color:rgba(110, 110, 110, 1);
  font-family: var(--secondary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.posts-list .post .post-author-details span{
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color:rgba(101, 101, 101, 1);
}
.posts-list .post h2{
  text-decoration: none;
  color:#001326;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 24px;
}
.posts-list .post a{
  text-decoration: none;
  color:rgba(1, 95, 192, 1);
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  margin-top: 16px;
}
.posts-list .post .read-more{
  display: none;
}
.posts-list .post a:hover{
  color:rgba(255, 128, 0, 1);
}
.posts-list .post p{
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #001326;
}
.posts-list .post-right-content{
  max-width: 558px;
}
.posts-list .post-right-content img{
  border-radius: 12px;
}
.blog-grids{
  display: grid;
  grid-template-columns: repeat(1fr);
}
.blog-grids article{
 padding:0px 30px;
 margin-bottom: 60px;
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 24px;
 align-items: center;
}
.posts-list #blog-search::placeholder{
  color:rgba(158, 190, 223, 1);
}
.posts-list #blog-search{
  width:60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  text-align: center;
  padding:12px 24px;
  border:1px solid rgba(215, 215, 215, 1);
  border-radius: 8px;
}
.posts-list #blog-search:focus-visible{
  outline:unset;
  border:1px solid var(--secondary-color);
}
.posts-list .search-wrapper{
  text-align: center;
}
.posts-list .categories{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:40px;
  list-style: none;
  margin-bottom: 60px;
}
.posts-list .categories a{
  text-decoration: none;
  font-family: var(--secondary-color);
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
  color:rgba(9, 38, 58, 1);
}
.posts-list .categories a:hover{
  color:rgba(221, 56, 43, 1);
}


/* mobile */
@media(max-width:767.9px){
  .blog-grids{
    display: flex;
    flex-direction: column;
  }
  .posts-list h1{
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 40px;
  }
  .posts-list .categories{
    flex-wrap: wrap;
    gap:20px;
    margin-bottom: 40px;
  }
  .posts-list .categories a{
    font-size: 16px;
    line-height: 26px;
  }
  .posts-list #blog-search{
    width:100%;
  }
  .posts-list .blog-grids article{
    grid-template-columns: 1fr;
    padding:0 12px;
    row-gap: 10px;
  }
  .posts-list .blog-grids article .post-left-content{
    order: 2;
  }
  .posts-list .post-right-content img {
    border-radius: 6px 6px 0 0;
  }
  .posts-list .post h2,
  .posts-list .post h2 a{
    font-size: 24px;
    line-height: 30px;
  }
  .posts-list .post p{
    font-size: 16px;
    line-height: 24px;
  }
  .blog-grids article:last-of-type{
    margin-bottom: 0;
  }
  .posts-list{
    padding-bottom: 0 !important;
  }
  .posts-list .post .post-category{
    font-size: 16px;
    line-height: 26px;
  }
  
  .blog-detail{
    padding:0 !important;
  }
  .blog-detail .blog-header .container{
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    align-items: center;
  }
  .blog-detail .blog-header .categories {
    margin-left: auto;
  }
  .blog-detail .blog-header h1{
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
  .blog-detail .blog-header .author {
    margin-left: auto;
  }
  .blog-detail .blog-header .header-right-column img {
    margin: auto;
  }
  .blog-detail .blog-main #table-of-contents ol{
    margin-bottom: 50px;
  }
  .blog-main-wrapper .blog-main .main-blog-content h2{
    font-size: 20px;
  }
  .sidebar-newsletter{
    margin-top: 50px;
  }
  .sidebar-newsletter h3{
    font-size: 22px;
    line-height: 32px;
  }
  .blog-footer{
    display: none;
  }
  .blog-main-wrapper .blog-main .main-blog-content ul{
    padding-left: 20px;
  }
  .blog-main-wrapper .blog-main .main-blog-content li{
    list-style: outside;
  }

  .about-header .content-wrapper{
    flex-direction: column;
  }
  .about-header .content-wrapper .content h1{
    font-size: 40px;
    line-height: 52px;
  }
  .about-header .content-wrapper .content span{
    font-size: 30px;
    line-height: 40px;
  }
  .about-header .content-wrapper .content p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .image-content-wrapper{
    flex-direction: column-reverse;
  }
  .about-header{
    padding-bottom: 30px !important;
  }
  .image-content-wrapper .content h2{
    font-size: 24px;
    line-height: 34px;
  }
  .image-content-wrapper .content p{
    font-size: 16px;
  }
  .bottom-title-cta h2{
    font-size: 24px;
    line-height: 34px;
  }
  .page-title h2{
    font-size: 30px;
    line-height: 40px;
  }
  .page-title p{
    font-size: 16px;
    line-height: 26px;
  }
  .horizontal-card-wrapper .horizontal-card-item{
    flex-direction: column;
    padding:40px 20px;
  }
  .horizontal-card-wrapper .horizontal-card-item .card-content::before{
    display: none;
  }
  .horizontal-card-wrapper .horizontal-card-item .card-content p{
    font-size: 16px;
  }
  .service-card-lists .service-cards-list:nth-of-type(odd){
    margin-right: 0;
  }
  .service-card-lists .service-cards-list img{
    width:300px;
  }
  .service-card-lists .service-cards-list{
    gap:50px;
  }
  .service-card-lists .service-cards-list:nth-of-type(even){
    margin-left: 0;
  }
  .service-card-lists .service-cards-list .service-card-content p{
    font-size: 16px;
    line-height: 26px;
  }
  .service-card-lists .service-cards-list{
    flex-direction: column;
  }
  .service-card-lists .service-cards-list:nth-of-type(odd)::after {
    right:0;
  }
  .service-card-lists .service-cards-list:nth-of-type(even){
    flex-direction: column;
  }
  .service-card-lists .service-cards-list:nth-of-type(even)::after{
    left:0;
  }
  .service-card-lists .service-cards-list .service-card-content a{
    font-size: 16px;
    padding:10px 15px;
  }
  .service-card-lists::before{
    display: none;
  }
  .services{
    padding-top: 0 !important;
  }
  .service-card-lists h2{
    font-size: 24px;
    line-height: 34px;
  }
  .contact-form .content-wrapper{
    flex-direction: column;
  }
  section.contact-form{
    padding-top: 0 !important;
  }
  .contact-form .content-wrapper .left h2{
    font-size: 24px;
    line-height: 36px;
  }
  .contact-form .content-wrapper .left p{
    font-size: 16px;
    line-height: 26px;
  }
  .contact-form .content-wrapper .left p:last-of-type a{
    display: block;
    width: max-content;
    margin-top: 20px;
  }
  .contact-form .content-wrapper .right{
    padding:40px 12px;
  }
  .contact-form .content-wrapper .right form input, .contact-form .content-wrapper .right form textarea{
    height:36px;
  }
  .contact-form .content-wrapper .right form textarea{
    height: 80px;
  }
  .contact-form .content-wrapper .right .btn.primary-btn{
    height: auto;
  }
  .contact-form .wpcf7-spinner{
    position: absolute;
  }
  .about-wrapper{
    margin:0 12px;
  }
}

/* tablet */
@media(min-width:768px) and (max-width:991.9px){
  .posts-list .post h2 a{
    font-size: 24px;
    line-height: 30px;
  }
  .posts-list .post h2{
    line-height: 1.4;
  }
  .posts-list .post p{
    font-size: 16px;
    line-height: 24px;
  }
  .posts-list .post .post-category{
    font-size: 16px;
    line-height: 26px;
  }
  .posts-list .categories{
    margin-bottom: 40px;
  }
  .posts-list h1{
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 50px;
  }
  .about-header .content-wrapper .content h1{
    font-size: 36px;
    line-height: 48px;
  }
  .about-header .content-wrapper .content span{
    font-size: 40px;
    line-height: 50px;
  }
  .about-header .content-wrapper .content p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .about-header .content-wrapper img{
    max-width: 300px;
  }
  .image-content-wrapper{
    flex-direction: column-reverse;
  }
  .page-title h2{
    font-size: 40px;
    line-height: 50px;
  }
  .page-title p{
    font-size: 18px;
  }
  .service-card-lists .service-cards-list:nth-of-type(odd){
    margin-right: 0;
  }
  .service-card-lists .service-cards-list img{
    /* width:300px; */
  }
  .service-card-lists .service-cards-list{
    gap:50px;
  }
  .service-card-lists .service-cards-list:nth-of-type(even){
    margin-left: 0;
  }
  .service-card-lists .service-cards-list .service-card-content p{
    font-size: 16px;
    line-height: 26px;
  }
}

@media (min-width:992px) {
    .image-content-wrapper .image img{
      min-width: 500px;
    }
    .bottom-title-cta h2{
        width: 55%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-form .content-wrapper .right{
      width: 50%;
    }
    .contact-form .content-wrapper .left{
      width: 50%;
    }
    .horizontal-card-wrapper .horizontal-card-item{
      width:1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .service-card-lists .service-cards-list{
      max-width: 860px;
    }
    .blog-main-wrapper .left-sidebar{
      position:sticky;
    }
    .blog-main-wrapper .left-sidebar,
    .blog-main-wrapper .right-sidebar{
      width:23%;
    }
    .blog-main-wrapper .main-blog-content{
      width:54%;
    }
    .blog-main-wrapper .blog-main{
      display: flex;
      gap:32px;
    }
    .blog-footer{
      width:70%;
      margin-left: auto;
      margin-right: auto;
    }
    .blog-footer h2{
      width:70%;
      margin-left: auto;
      margin-right: auto;
    }
    /* .blog-grids .post:nth-of-type(odd){
      border-right: 2px solid rgba(222, 222, 222, 1);
    } */
    #table-of-contents,
    .sidebar-newsletter{
      position: sticky;
      top:180px;
    }
}

@media (max-width: 1024px){
  .sidebar-newsletter {
    padding: 24px 15px;
  }
  .sidebar-newsletter h3{
    font-size: 28px;
  }
}
@media (max-width: 991px){
  .blog-main-wrapper .blog-main{
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
}

/* Service Cards Grid Layout */

.page-id-125 .services{
  padding-top: 0;
}
.page-id-125 .page-title-section{
  padding-bottom: 60px;
}
.page-id-125 .page-title-section .page-title{
  max-width: 790px;
  margin: auto;
}
.service-card-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-cards-list {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  cursor: pointer;
  transition: box-shadow 0.3s;
  outline: 1px solid #A1CFFF;
}

.service-card-image-title {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: opacity 0.4s, transform 0.4s;
  z-index: 2;
}

.service-card-image{
  height: 300px;
}
.service-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 8px 8px 0 0;
}

.service-card-title {
  color: #015FC0;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 0 0 16px 16px;
}
.service-card-title h3{
  font-size: clamp(20px, 2vw, 24px);
  font-family: var(--secondary-font);
}

.service-card-desc {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  background: #0066cc;
  color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  transition: opacity 0.4s;
  pointer-events: none;
  text-align: left;
  box-sizing: border-box;
}

.service-card-desc h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  font-family: var(--secondary-font);
}
.service-card-desc p{
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.4;
  font-weight: 500;
}

.services .btn-wrapper{
  margin-top: 80px;
  text-align: center;
}

/* Hover/Focus: Hide image and h3, show p */
.service-cards-list:hover .service-card-image-title,
.service-cards-list:focus-within .service-card-image-title {
  opacity: 0;
  transform: scale(0.98);
}

.service-cards-list:hover .service-card-desc,
.service-cards-list:focus-within .service-card-desc {
  opacity: 1;
  pointer-events: auto;
}

.service-cards-list:hover,
.service-cards-list:focus-within {
  box-shadow: 0 8px 24px rgba(30,60,114,0.15);
}

@media (max-width: 991px) {
  .services .service-card-lists {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px){
  .services .service-card-lists .service-card-image img{
    width: 100%;
  }
}
@media (max-width: 600px) {
  .services .service-card-lists {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 567px){
  .blog-main-wrapper .blog-main .main-blog-content blockquote{
    padding: 24px 60px 20px 24px;
    border-radius: 8px;
    margin: 15px 0;
  }
  
  .blog-main-wrapper .blog-main .main-blog-content blockquote::after {
    right: 15px;
  }
}