
        body {
            font-family: 'Anek Latin', sans-serif;        
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .section-heading{
            font-size: 48px;
            font-family: 'Lexend Deca', sans-serif;
        }
        .section-para{
            font-size: 18px;
            font-family: 'Anek Latin', sans-serif;        
        }
        .section-padding{
            padding: 5rem 0; 
        }

        @media screen and (min-width: 769px) and (max-width: 1280px) { 
            .section-heading{
                font-size: 32px;  
            }
        }

        @media (max-width: 768px) {
            .section-heading{
                font-size: 28px;  
            }
            .section-padding{
                padding: 3rem 0;
            }
        }

.captch-main{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}
.captcha-wrapper{
    width: 48%;
    padding-right: 30px;
}
.captcha.captcha-image-block{
    display: flex;
}
.wpcf7-form-control-wrap{
    width: 50%;
}

/*banner*/
.about-banner-section{
    position: relative;
}
.about-banner-wrapper img{
    width: 100%;
    height: auto;
}

.about-banner-text{
    position: absolute;
    top: 30%;
    left: auto;
    width: 30%;
}

.about-banner-text h1{
    color: #1C204F;
}

.about-banner-text p{
    color: #000;
    line-height: 26px;
}

.mobile-banner{
    display: none;
    width: 100%;
}

/*banner css end*/

/* form section */
.quick-contact-section {
    padding: 80px 0;
    background: #FAFAFA;
}


.quick-contact-section .btn-submit {
    background-color: #06439C;
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 400;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-contact-section .required::after {
    content: '*';
    color: red;
    margin-left: 2px;
}

.quick-contact-section .wpcf7-form-control-wrap textarea.form-control{
    height: 50px;
}

.quick-contact-section .form-control, .form-select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #626262;
    border-radius: 0;
    outline: none;
    font-size: 16px;
    color: #626262;
    transition: border-bottom-color 0.3s;
    opacity: 0.8;
}

.quick-contact-section label {
    display: block;
    font-size: 18px;
    color: #626262;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 5px;
    font-family: 'Anek Latin', sans-serif;
}

.quick-contact-title {
    text-align: center;
    font-weight: 600;
    color: #1C204F;
    margin-bottom: 10px;
    font-family: 'Lexend Deca', sans-serif;
}

.contact-para{
    text-align: center;
    color: #626262;
    margin-bottom: 50px;
}

.form-card {
    max-width: 700px;
    margin: auto;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #E6E6E6;
    background: #fff;
}

/* ===== INPUT STYLE ===== */
.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-control::placeholder , select{
    font-size: 16px;
    font-weight: 400;
    color: #626262;
    font-family: 'Anek Latin', sans-serif;        
}

.form-control:focus {
    border-color: #003da6;
    box-shadow: none;
}

.form-label {
    font-size: 18px;
    color: #626262;
    font-weight: 300;
    font-family: 'Anek Latin', sans-serif;        
}

textarea.form-control {
    resize: none;
}

.error {
    font-size: 12px;
    color: red;
    position: absolute;
    bottom: -18px;
}

/*journey -card section css start*/
.core-values-section {
  background: #FAFAFA;
}

.core-values-section .section-title {
  font-weight: 600;
  color: #000;
}

.core-values-section .value-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border: 1px solid #E6E6E6;
  border-radius: 12px;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease;
}

.core-values-section .core-value-card-main-wrapper{
    width: 90%;
    margin: 0 auto;
}

.core-values-section .core-value-card-main-wrapper>div{
    margin-bottom: 20px;
}

.core-values-section .value-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.core-values-section .icon-box {
  width: 60px;
  height: 60px;
  background: #0d6efd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.core-values-section .icon-box img {
    width: 100%;
    height: auto;
}

.core-values-section .value-card h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #000;
    font-family: 'Lexend Deca', sans-serif;
}

.core-values-section .value-card p {
  font-size: 16px;
  color: #626262;
  font-weight: 400;
  margin-bottom: 0;
}


/*benifits section*/
.benefits-section {
  background: #ffffff;
}

.benefits-section .benefits-title {
  font-weight: 600;
  color: #1C204F;
}

.benefits-section .benefit-card {
  background: #E2EBFF;
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #E6E6E6;
}

.benefits-section .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefits-section .benefit-icon {
  margin-bottom: 20px;
}

.benefits-section .benefit-icon img {
    width: 100%;
    height: auto;
    max-width: 20%;
}

.benefits-section .benefit-card h4 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
font-family: 'Lexend Deca', sans-serif;
}

.benefits-section .benefit-card-main-wrapper{
    width: 90%;
    margin: 0 auto;
}

.benefits-section .benefit-card-main-wrapper>div{
    padding: 20px;
}

.benefits-section .benefit-card p {
  font-size: 16px;
  color: #626262;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 24px;
}


/*jounery cta section*/
.journey-cta-section {
  background: #ffffff;
}

/* Images layout */
.journey-cta-section .cta-images-wrapper {
    display: flex;
    gap: 20px;
}

.journey-cta-section .cta-img {
  overflow: hidden;
}

.journey-cta-section .cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-cta-section .cta-main-wrapper{
    width: 90%;
    margin: 0 auto;
}
.journey-cta-section .cta-content p {
  color: #000;
  line-height: 26px;
  margin-bottom: 20px;
}

.journey-cta-section .cta-content{
    padding-left: 4rem;
}

.journey-cta-section .cta-btn {
  background: #06439C;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}




/*testomonial slider css start*/
        .testimonial-section {
            background-color: #FAFAFA;
            overflow-x: hidden;
        }

        .testimonial-section h2 {
            color: #1C204F;
            font-weight: 700;
            margin-bottom: 50px;
        }


        /* Testimonial Card Styling */
        .testimonial-card {
            background-color: #E2EBFF;
            border-radius: 12px;
            padding: 50px 90px;
            margin: 10px;
            /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease-in-out;
            border: 1px solid #06439C; /* Base border */
            transform: scale(0.85);
            opacity: 0.7;
        }

        .detail-img img{
            width: 100%;
            height: auto;
            padding-right: 20px;
            display: inline-block !important;
        }

        /* Highlight the center (active) card */
        .owl-item.active.center .testimonial-card {
            /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);*/
            border:1px solid #06439C;
            background: #1C204F;
            transform: scale(1.05); /* Slightly bigger for focus */
            opacity: 1;
        }

        .owl-item.active.center .testimonial-card .detail-para h3,
        .owl-item.active.center .testimonial-card .detail-para small,
        .owl-item.active.center .testimonial-card .card-content p{
            color: #fff;
        }

        .card-image {
            width: 100%;
            height: auto;
            max-width: 4%;
            object-fit: cover;
            margin-bottom: 15px;
            margin: 0 auto;
        }

        .detail-para h3 {
            font-size: 18px;
            font-weight:700;
            color:#000;
            margin-bottom: 5px;
            font-family: 'Anek Latin', sans-serif;   
        }

        .detail-para small {
            color: #000;
            font-weight: 400;
            text-transform: uppercase;
            font-size: 16px;
            font-family: 'Anek Latin', sans-serif;   
        }

        .card-content p {
            color:#000;
            margin-bottom: 0;
            font-size: 18px;
            font-weight: 300;
            line-height: 26px;
            margin: 30px 0 40px;
            text-align: center;
            font-family: 'Anek Latin', sans-serif;   
        }

        .card-details{
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }


        /* --- Owl Carousel Customization (Stage Padding & Center Mode) --- */

        /* Ensure .owl-stage-outer has overflow: visible for partial slides to show */
        .owl-stage-outer {
            overflow: visible !important; 
        }

        /* The padding applied via JS determines the visibility of neighbors. 
           Removing CSS padding adjustments since JS handles it responsively now. 
        */
        .owl-carousel {
            padding-left: 0 !important; 
            padding-right: 0 !important;
        }

        /* Dimming effect on non-active slides */
        .owl-item {
            opacity: 0.7;
            transition: opacity 0.3s, transform 0.3s;
        }

        .owl-item.active {
            opacity: 1;
        }


        /* --- Custom Navigation and Dots Styling --- */
        .custom-owl-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
        }

        .custom-owl-nav .owl-prev, .custom-owl-nav .owl-next {
            background: var(--primary-color) !important;
            color: white !important;
            border-radius: 50% !important;
            width: 50px;
            height: 50px;
            font-size: 2rem !important;
            margin: 0 30px;
            padding: 0 !important;
            border: 2px solid var(--secondary-color);
            transition: all 0.3s;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            display: none;
        }

        .custom-owl-nav .owl-prev:hover, .custom-owl-nav .owl-next:hover {
            background: var(--secondary-color) !important;
            border-color: white;
            transform: translateY(-2px);
        }

        .custom-dots {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .custom-dots .dot {
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 50%;
            margin: 0 8px;
            transition: background 0.3s, transform 0.3s;
            cursor: pointer;
        }
        
        .custom-dots .dot.active {
            background: #06439C;
            transform: scale(1.2);
            box-shadow: 0 0 5px white;
        }

@media screen and (min-width: 1025px) and (max-width: 1380px) {
    .core-values-section .value-card h4{
        font-size: 20px;
    }
    .benefits-section .benefit-card h4{
        font-size: 20px;
    }
    .benefits-section .benefit-card h4{
        font-size: 20px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
        .core-values-section .value-card h4{
        font-size: 20px;
    }
    .benefits-section .benefit-card h4{
        font-size: 20px;
    }
    .journey-cta-section .cta-main-wrapper{
        width: 100%;
    }
} 

@media (max-width: 991px) {
    .about-banner-text{
        width: 40%;
    }
    br{
        display: none;
    }
    .journey-cta-section .cta-main-wrapper, 
    .core-values-section .core-value-card-main-wrapper,
    .benefits-section .benefit-card-main-wrapper{
        width: 100%;
    }
    .journey-cta-section .cta-content{
        padding-left: 0;
        padding-top: 2rem;
    }
    .journey-cta-section .cta-images-wrapper{
        gap: 8px;
    }
    .core-values-section .value-card h4{
        font-size: 18px;
    }
    .core-values-section .value-card p{
        font-size: 16px;
    }
    .benefits-section .benefit-card h4{
        font-size: 20px;
    }
    .form-card{
        padding: 30px;
    }

}


@media (max-width: 767px) {
    .testimonial-card {
        padding: 30px 30px;
    }
    .mobile-banner{
        display: block;
    }
    .desktop-banner{
        display: none;
    }
    .about-banner-text{
        top: 4%;
        width: 90%;
    }
}