/* .point-list{
    position: relative;
    display: block;
} */

.coaching-one__hover-content {
    top: 30px;
}

.coaching-details__benefit-content {
    margin-top: 0 !important;
}

.image-container {
    margin-top: 0;
    margin-bottom: 0;
}

.coaching-three__title1 {
    color: #ffffff;
}
.coaching-three__title-box {
    text-align: center;
}
.coaching-three__title1:hover{
    color:rgb(0, 42, 151);
}

.coaching-details__text-2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.coaching-three__hover p {
    text-align: center;
}

.feature-one__title a {
    color: #002A97!important; /* Default text color */
    transition: color 0.3s ease; /* Optional smooth transition */
}

.feature-one__title a:hover {
    color: #FFA800!important; /* Text color on hover */
}

.pricing-page__single-inner {
    border: none!important;
    padding: 29px 48px 20px!important;
}

.error {
    color: red;
    font-size: 0.9em; /* Optional: Make the text slightly smaller */
    margin-top: 5px; /* Optional: Add some space above */
}

input.error, textarea.error, select.error {
    border-color: red;
}
/* ---chat and call--*/
/* --- Floating Contact Container --- */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px; /* 60px above your scroll-to-top button */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* --- Buttons Styling --- */
.contact-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    animation: pulse 2s infinite;
    transition: transform 0.25s ease;
}

/* Call button color */
.call-btn {
    background: #002A97;
}

/* WhatsApp button color */
.whatsapp-btn {
    background: #25D366;
}

/* Hover effect */
.contact-btn:hover {
    transform: scale(1.15);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* --- Mobile adjustments --- */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 130px; /* enough space for mobile scroll-to-top button */
    }

    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Responsive home hero sizing */
.main-slider-two .item {
    padding-top: clamp(155px, 15vw, 220px);
    padding-bottom: clamp(25px, 3vw, 40px);
}

.main-slider-two .container {
    width: min(100% - 40px, 1180px);
}

.main-slider-two h2.sliderp {
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 1.12 !important;
}

.main-slider-two p.sliderp {
    font-size: clamp(15px, 1.35vw, 20px);
    line-height: 1.5;
}

.main-slider-two__bg {
    background-position: center center;
}

@media (max-width: 991px) {
    .main-slider-two .item {
        padding-top: 135px;
        padding-bottom: 30px;
    }

    .main-slider-two .container {
        width: min(100% - 30px, 720px);
    }
}

@media (max-width: 575px) {
    .main-slider-two .item {
        padding-top: 105px;
        padding-bottom: 25px;
    }

    .main-slider-two .container {
        width: calc(100% - 24px);
    }

    .main-slider-two h2.sliderp {
        font-size: 32px !important;
    }

    .main-slider-two p.sliderp {
        font-size: 14px;
    }

    .main-slider-two .about-btn-box {
        gap: 8px;
    }
}

/* Homepage hero content sizing */
.main-slider-two__content {
    width: 100%;
    max-width: 620px;
}

.main-slider-two h2.sliderp {
    max-width: 560px;
    font-size: clamp(30px, 3.15vw, 48px) !important;
    line-height: 1.14 !important;
    margin-bottom: 18px;
}

.main-slider-two p.sliderp {
    max-width: 500px;
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.5;
    margin-bottom: 4px;
}

.main-slider-two .separator {
    margin: 16px 0;
}

@media (max-width: 767px) {
    .main-slider-two__content {
        max-width: 500px;
    }

    .main-slider-two h2.sliderp {
        max-width: 420px;
        font-size: clamp(28px, 7vw, 38px) !important;
    }

    .main-slider-two p.sliderp {
        max-width: 390px;
        font-size: 14px;
    }
}

/* Keep the slider content anchored to the left on large screens. */
.main-slider-two__content {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.main-slider-two__content h2,
.main-slider-two__content p {
    text-align: left;
}

.main-slider-two__content .separator {
    margin-left: 0;
    margin-right: auto;
}

.main-slider-two__content .about-btn-box {
    justify-content: flex-start;
}

/*
 * Dark hero pages: the header is overlaid on the banner, so black navigation
 * text has insufficient contrast. Keep the home page's light-banner styling
 * unchanged and switch only pages explicitly marked by header.php.
 */
body.dark-banner-page .main-header-two .main-menu-two__wrapper-inner {
    background: rgba(0, 42, 151, 0.88);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body.dark-banner-page .main-header-two .main-menu-two .mobile-nav__toggler {
    color: #ffffff;
}

.newsletter-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    max-width: min(360px, calc(100vw - 32px));
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.newsletter-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.newsletter-toast.is-success {
    background: #002A97;
}

.newsletter-toast.is-error {
    background: #dc3545;
}

/* Compact About-page Global Path section. These rules are scoped so the
 * homepage hero and assessment feature cards keep their existing design. */
.global-path-section {
    min-height: 450px;
    height: auto;
    overflow: hidden;
    background: #002A97;
}

.global-path-section .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.global-path-section > .container {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 1180px);
    max-width: 1180px;
    min-height: 450px;
    padding: 30px 0 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.global-path-section .hero-content {
    width: fit-content;
    max-width: 760px;
    padding: 12px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    box-sizing: border-box;
    margin-bottom: 100px;
}

.global-path-section .hero-logo img {
    width: min(150px, 30vw);
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.global-path-section .hero-heading h1 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 30px);
    line-height: 1.15;
}

.global-path-section .hero-divider {
    margin: 14px auto;
}

.global-path-section .hero-subtitle {
    margin: 0 auto;
    font-size: clamp(15px, 1.5vw, 19px);
    line-height: 1.5;
}

.global-path-section .hero-features {
    width: fit-content;
    max-width: 100%;
    margin-top: 300px;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 42, 151, 0.12);
    box-sizing: border-box;
}

.global-path-section .feature-box {
    min-width: 0;
    margin: 0;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    border-radius: 0;
    color: #002A97;
}

.global-path-section .feature-content {
    min-width: 0;
}

.global-path-section .feature-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.25;
    color: #002A97;
}

.global-path-section .feature-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
}

.global-path-section .feature-divider {
    display: none;
}

@media (max-width: 767px) {
    .global-path-section {
        min-height: 0;
    }

    .global-path-section > .container {
        width: calc(100% - 28px);
        min-height: 0;
        padding: 28px 0 24px;
    }

    .global-path-section .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 8px;
        width: 100%;
        margin-top: 44px;
        padding: 14px 10px;
    }

    .global-path-section .hero-content {
        width: 100%;
        padding: 10px 14px;
    }

    .global-path-section .feature-box {
        justify-content: flex-start;
        padding: 0 6px;
    }
}

@media (min-width: 992px) {
    body.dark-banner-page .main-header-two .main-menu-two .main-menu__list > li > a {
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    }

    body.dark-banner-page .main-header-two .main-menu-two .main-menu__list > li.current > a,
    body.dark-banner-page .main-header-two .main-menu-two .main-menu__list > li.current > a:hover,
    body.dark-banner-page .main-header-two .main-menu-two .main-menu__list > li:hover > a,
    body.dark-banner-page .main-header-two .main-menu-two .main-menu__list > li > a:focus-visible {
        color: #FFA800 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    }
}

/* Vision and Mission Section */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
}

.vision-mission-section{
    padding:60px 0;
    background:url("../../uploads/images/vision-bg.png") center center no-repeat;
    background-size:cover;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

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

.section-title h2{
    font-size:50px;
    color:#002A97;
    font-family:Georgia,serif;
    font-weight:700;
}

.section-title span{
    display:inline-block;
    width:180px;
    height:8px;
    background:#FFA800;
    border-radius:50px;
    margin-top:18px;
}

.vision-mission-wrapper{
    display:flex;
    gap:60px;
    justify-content:center;
    flex-wrap:wrap;
}

.vm-card{
    width:520px;
    background:#fff;
    border-radius:35px;
    padding:20px 25px 15px;
    position:relative;
    text-align:center;
    transition:.3s;
}

.vm-card:hover{
    transform:translateY(-8px);
}

.vision-card{
    border:4px solid #002A97;
}

.mission-card{
    border:4px solid #FFA800;
}

.card-top{
    position:absolute;
    width:45px;
    height:20px;
    background:#fff;
    top:-4px;
    left:50%;
    transform:translateX(-50%);
    clip-path:polygon(0 0,100% 0,50% 100%);
}

/*.icon{*/
/*    margin-bottom:20px;*/
/*}*/

.icon img{
    width:120px;
}

.vm-card h3{
    font-size:42px;
    color:#002A97;
    font-family:Georgia,serif;
    margin-bottom:15px;
}

.divider{
    width: 150px;
    height: 2px;
    margin: 0 auto 25px;
    position:relative;
}

.divider::after{
    content:'';
    width:15px;
    height:15px;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:-7px;
    transform:translateX(-50%);
}

.#002A97{
    background:#002A97;
}

.#002A97::after{
    background:#002A97;
}

.orange{
    background:#FFA800;
}

.orange::after{
    background:#FFA800;
}

.vm-card p{
    text-align: justify;
    font-size:16px;
    line-height:1.8;
    color:#222;
}

/* Keep the Vision and Mission artwork proportional to the cards. */
.vision-mission-section .vm-card .icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-mission-section .vm-card .icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

@media(max-width:991px){

.section-title h2{
    font-size:42px;
}

.vm-card{
    width:100%;
}

.vm-card h3{
    font-size:42px;
}

.vm-card p{
    font-size:18px;
}

.vision-mission-section .vm-card .icon {
    width: 68px;
    height: 68px;
}

.vision-mission-section .vm-card .icon img {
    width: 54px;
    height: 54px;
}

}
/* response modal style */
.custom-success-modal{
    border:none;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.custom-success-modal .modal-header{
    background:#002A97;
    color:#fff;
    border:none;
    padding:18px 25px;
}

.custom-success-modal .modal-title{
    font-size:22px;
    font-weight:700;
}

.custom-success-modal .modal-title i{
    color:#002A97;
    margin-right:8px;
}

.custom-success-modal .close{
    color:#fff;
    opacity:1;
    text-shadow:none;
}

.custom-success-modal .modal-body{
    padding:35px 30px;
}

.success-icon{
    font-size:70px;
    color:#002A97;
    margin-bottom:20px;
}

.custom-success-modal h3{
    font-size:28px;
    color:#002A97;
    font-weight:700;
    margin-bottom:18px;
}

.custom-success-modal p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:10px;
}

.custom-success-modal .small-text{
    font-size:15px;
    color:#777;
}

.custom-success-modal .modal-footer{
    border:none;
    justify-content:center;
    padding:0 30px 30px;
}

.custom-success-modal .btn-primary{
    background:#002A97;
    border-color:#002A97;
    border-radius:40px;
    padding:10px 35px;
    font-weight:600;
    transition:.3s;
}

.custom-success-modal .btn-primary:hover{
    background:#002A97;
    border-color:#002A97;
}

@media (max-width:576px){

    .custom-success-modal .modal-body{
        padding:25px 20px;
    }

    .success-icon{
        font-size:55px;
    }

    .custom-success-modal h3{
        font-size:22px;
    }

    .custom-success-modal p{
        font-size:15px;
    }
}

/* ===============================
   OPEN PATH SUCCESS MODAL
================================= */

.custom-success-modal{
    border:0;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.custom-success-modal .modal-header{
    background:#002A97;
    border:none;
    padding:14px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.custom-success-modal .modal-title{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin:0;
}

.custom-success-modal .modal-title i{
    color:#002A97;
    margin-right:10px;
}

/* FIX CLOSE BUTTON */
.custom-success-modal .close{
    width:36px;
    height:36px;
    padding:0;
    margin:0;
    border:none !important;
    outline:none;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    color:#fff;
    opacity:1;
    font-size:28px;
    line-height:36px;
    text-align:center;
    box-shadow:none;
    text-shadow:none;
}

.custom-success-modal .close:hover{
    background:rgba(255,255,255,.25);
    color:#fff;
}

.custom-success-modal .modal-body{
    padding:15px;
    text-align:center;
}

.success-icon{
    width:60px;
    height:60px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#002A97;
    display:flex;
    align-items:center;
    justify-content:center;
}

.success-icon i{
    font-size:48px;
    /*color:#002A97;*/
    color:#25D366;
}

.custom-success-modal h3{
    font-size:28px;
    font-weight:600;
    color:#002A97;
    margin-bottom:18px;
}

.custom-success-modal p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:12px;
}

.custom-success-modal .small-text{
    font-size:16px;
    color:#777;
}

.custom-success-modal .modal-footer{
    border:none;
    justify-content:center;
    padding:0 0 15px;
}

.custom-success-modal .btn-primary{
    background:#002A97;
    border:0;
    border-radius:40px;
    min-width:170px;
    height:50px;
    font-size:17px;
    font-weight:600;
}

.custom-success-modal .btn-primary:hover{
    background:#002A97;
}

@media(max-width:576px){

.custom-success-modal .modal-body{
    padding:30px 20px;
}

.success-icon{
    width:70px;
    height:70px;
}

.success-icon i{
    font-size:36px;
}

.custom-success-modal h3{
    font-size:28px;
}

.custom-success-modal p{
    font-size:16px;
}

}

.opi-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0 20px;
}

.opi-legal-links a {
    /*color: #ffffff;*/
    color: #002A97;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.opi-legal-links a:hover {
    color: #F5C518;
}

@media (max-width: 991px) {

    .opi-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .opi-legal-links {
        margin: 0;
        gap: 12px 18px;
    }

}