
        .hero-section {
          background-color: var(--cp-primary);
          background-size: cover;
          background-position: center;
          /* min-height: 90vh; */
          display: flex;
          align-items: center;
          position: relative;
          overflow: hidden;
          /* padding: 40px 0 40px 0; */
          padding-top: 50px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite alternate;
        }
        .hero-section   .hero-content  .hero-title strong{
            color: #FFC107!important;
            font-size: 6.5rem;
        }
.hero-content h5 {
    background-color: #FFC107;
    padding: 10px 20px;
    border-radius: 15px 0;
    width: fit-content;
    color:#000;
}


        @keyframes pulse {
            0% { transform: scale(1) rotate(0deg); opacity: 0.3; }
            100% { transform: scale(1.1) rotate(5deg); opacity: 0.1; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding-bottom: 96px;
        }
.logo_img{
    max-width: 250px;
}
        .brand-logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .brand-logo i {
            color: var(--accent-color);
        }

        .hero-title {
            color: #fff;
            font-size: 4.5rem;
            font-weight: 800;
            /* margin-bottom: 1rem; */
            /* background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%); */
            /* -webkit-background-clip: text; */
            /* -webkit-text-fill-color: transparent; */
            /* background-clip: text; */
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            /* margin-bottom: 2rem; */
            /* font-weight: 300; */
        }
.hero-content p{
    
color: #fff;
    
font-size: 18px;
}
        .cta-button {
           margin-top: 15px;
           background-color: #000000;
           border: none;
           padding: 1rem 2rem;
           font-size: 1.1rem;
           font-weight: 600;
           border-radius: 50px;
           color: white;
           text-decoration: none;
           display: inline-flex;
           align-items: center;
           gap: 0.5rem;
           transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 11px 34px rgb(0 0 0 / 40%);
            color: white;
            background-color: var(--primary-color);
        }

        .feature-card {
      
/* background: white; */
      
border-radius: 9px;
      
padding: 1.5rem 1rem;
      
height: 100%;
      
text-align: left;
      
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      
transition: all 0.3s ease;
      
border: 1px solid rgba(37, 99, 235, 0.1);
      
text-align: center;
}
.feature-card h4{
    font-size: 19px;
}
  .flex_box {
    display: flex;
    background-image: url(../img/franchise/bg_01.jpg);
    background-size: cover;
    /* background-attachment: fixed; */
    transition: all 0.6s;
    position: relative;
    overflow: hidden;
    text-align: left;
}
  .flex_box:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.7;
    /* z-index: -1; */
}
  .flex_box:hover {
    transition: all 0.6s;
}
        .flex_box i{
            font-size: 40px;
            margin-right: 15px!important;
            background-color: #fff;
            width: 80px;
            flex: none;
            text-align: center;
            padding: 15px;
            border-radius: 15px;
            height: 80px;
            line-height: 48px;
            position: relative;
            z-index: 1;
            color: var(--primary-color)!important;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
        }
.content_feature {
    color: #fff;
    position: relative;
    z-index: 1;
}
        .feature-icon {
            /* width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem; */
            background-color: var(--primary-color);
            width: 72px;
            height: 72px;
            text-align: center;
            line-height: 71px;
            color: #fff;
            font-size: 35px;
            margin-bottom: 18px!important;
            border-radius: 7px;
            /* margin: 0 auto; */
        }
.feature-icon img{
    border-radius: 10px;
    margin-bottom: 10px;
}
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            color: #000;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #000000;
            text-align: center;
            margin-bottom: 2rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .stats-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .outcome-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(37, 99, 235, 0.05);
            border-radius: 10px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .outcome-item:hover {
            background: rgba(37, 99, 235, 0.1);
            transform: translateX(5px);
        }

        .outcome-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .company-logo {
            height: 60px;
            filter: grayscale(100%);
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .company-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        .footer {
            background: var(--text-dark);
            color: white;
            padding: 3rem 0 1rem;
        }
.contact_form.footer_form.bg_light {
    background-color: #e7e7e7;
    padding: 15px;
    border-radius: 13px;
    /* transform: translate(0px, -61px); */
    margin-top: -101px;
}
        @media (max-width: 768px) {
            .hero-content h5 {
                font-size: 16px;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 26px;
            }
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 40px;
            height: 40px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
 
 .container {
    position: relative;
    z-index: 99;
}

.form-card.shadow-lg {
    padding: 20px 20px;
    max-width: 400px;
    background-color: #fff;
    margin: 0 auto!important;
    border-radius: 7px;
}

button.btn.btn-accent.cta-button {
    margin: 16px auto !important;
    max-width: fit-content !important;
    display: flex;
}


.list_lyout h4 {
    }
.ul_list {
    font-size: 14px;
    color: #000;
    margin-left: 0;
    padding-left: 0;
    margin-top: 17px;
}
.ul_list li:last-child {
    border-bottom: none;
}
.ul_list li {
    list-style: none;
    padding: 3px 0;
    color: #000;
    border-bottom: 1px dashed #928c8c;
    padding-left: 0;
    margin: 4px 0;
    font-size: 16px;
    display: flex;
    grid-gap: 12px;
    /* align-items: center; */
}
ul.ul_list.list_v2 li {
    }
.ul_list li i {
    font-size: 16px;
    padding: 4px;
    border-radius: 4px;
    color: var(--secondary-color);
    border: 2px solid;
    height: max-content;
    /* height: 24px; */
    /* margin-top: 5px; */
}

ul.ul_list.list_v3 li {
    display: block;
}
ul.ul_list.list_v2 li {
    font-size: 22px;
    padding: 14px 0;
}

button.accordion-button {
    background-color: #191f2d00;
    /* border: 0; */
    font-weight: bold;
    color: #000000;
    /* border: 0; */
    /* border: 0; */
    /* font-size: 19px; */
    font-size: 20px;
    /* padding: 28px; */
    padding: 0;
    margin-bottom: 0;
}
button.accordion-button {
    /* font-weight: bold; */
    /* font-size: 30px; */
}
.accordion .accordion-button[aria-expanded='true'] {
    color: #000000 !important;
    /* font-size: 18px; */
    /* background-image: linear-gradient(to right top, #003a66, #443e7f, #813886, #b82776, #e02454); */
    background: #2160f300;
    /* padding-left: 0; */
    border: 0;
}

.accordion-body h3 {
    color: #000;
    font-size: 22px;
}
.accordion-body p {
    color: #000;
}
.networking_linus .ul_icon li {
    padding: 4px 0;
    /* color: #fff; */
    border: 0;
}
.ul_icon li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    display: block;
    width: 20px;
    height: 20px;
    flex: none;
    color: #fff;
    background-color: var(--secondary-color);
    border: 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
    border-radius: 3px;
    margin-top: 8px;
}

strong.timeline_steps {
    width: 135px;
    display: block;
    margin-bottom: 33px !important;
    height: 66px;
    margin: 0 auto;
    line-height: 69px;
    text-align: center;
    /* background-color: var(--primary-color); */
    /* border: 7px solid #6392ff40; */
    /* border-radius: 100%; */
    /* box-shadow: 0 0 0 10px #20568536; */
    color: #fff;
    flex: none;
    position: relative;
    z-index: revert-layer;
}
strong.timeline_steps span{
    position: relative;
    z-index: 8;
}
.timeline {
    position: relative;
    /* display: flex; */
    align-items: center;
    grid-gap: 15px;
    padding-top: 13px;
}

.timeline_steps::after {
    content: '';
    display: block;
    position: absolute;
    top: 80px;
    /* left: 0; */
    left: 100%;
    top: 50%;
    /* border: 10px; */
    bottom: 0;
    /* z-index: 9999; */
    width: 366px;
    height: 3px;
    background-color: var(--primary-color);
    /* z-index: -1; */
    /* transform: rotate(117deg); */
    /* border: 20px solid #ffffff40; */
    /* border-radius: 100%; */
    /* box-shadow: -4px 18px 0px #ffc8c8; */
}
.timeline_steps::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left:0;
    top: 1px;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #00588b;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}
.border_none.timeline_steps::after {
    display: none;
}
.accordion-body {
    color: #000;
    background-color: #ffffff;
    border: 0;
    font-size: 16px;
}

i.fa.fa- {
    /* margin-left: 8px; */
    display: block;
    /* width: 22px; */
    /* height: 22px; */
    /* width: 80px; */
    /* display: block; */
    /* height: 45px; */
    margin-top: 7px;
    line-height: 69px;
    text-align: center;
    /* background-color: var(--primary-color); */
    /* border: 6px solid #6392ff; */
    border-radius: 100%;
    /* box-shadow: 0px 0px 0px 6px #cad5f2; */
    color: #2059be;
    flex: none;
    position: relative;
}
.mw_50 {
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.w_90 {
    width: 90%;
}

.w_80 {
    width: 80%;
}

body .accordion-item {
    padding: 20px 30px;
    background-color: #f3f6ff;
    border: 0;
    margin: 13px;
}
.zoom-in-zoom-out {
    animation: zoom-in-zoom-out 7s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

.nav-pills .nav-link {
    font-size: 24px;
    font-weight: bold;
    background: 0 0;
    border: 0;
    border-radius: 0.25rem;
}
ul#pills-tab {
    justify-content: center;
}

.timeline_lsit li {
    font-size: 21px;
    font-weight: 500;
    text-align: left;
    padding: 11px;
    border-radius: 5px;
    list-style: none;
    background-color: #f3f6ff;
    color: #000;
    /* border-bottom: 1px dashed #928c8c; */
    /* padding-left: 0px; */
    margin: 10px 0;
    display: flex;
    align-items: center;
    grid-gap: 12px;
    transition: all 0.3s;
}
.timeline_lsit li:hover {
    transform: scale(1.05);
    transition: all 0.3s;
}

/* .timeline_lsit li:nth-child(odd){
    background: #efefef;
    text-align: right;
    margin-left: 0;
}
.timeline_lsit li:nth-child(even){
    background: #b7b765;

    text-align: left;
    margin-right: 0;
    margin-left:auto;
} */
section.rdx_vs.py_50 {
    /* background-color: #e2dcdc; */
    background-color: #f3f6ff;
}
.tab-content h3 {
    text-align: left;
    color: #000;
    text-align: center;
    font-weight: 700;
}

.tab-content {

margin: 0 auto;

padding: 30px;

background-color: #ffffff;

border-radius: 0 0 8px 8px;
}
.timeline_lsit {
    }

.timeline_lsit {
    list-style: none;
    max-width: 900;
    margin: 0 auto;
    padding: 0;
    list-style: decimal-leading-zero;
}

.timeline_lsit li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    display: block;
    width: 20px;
    height: 20px;
    flex: none;
    border: 0;
    text-align: center;
    line-height: 21px;
    /* border-radius: 3px; */
    font-size: 16px;
    padding: 4px;
    border-radius: 4px;
    color: var(--secondary-color);
    border: 2px solid;
    /* height: max-content; */
    width: 30px;
    height: 30px;
}

.timeline_lsit li {
    list-style: none;
}

div#nav-tab {
    justify-content: space-around;
}

.nav-tabs .nav-link {

    font-size: 24px;
    font-weight: bold;
    display: block;
    width: 33%;
}

.nav-tabs .nav-link {
    font-size: 20px;
    font-weight: bold;
    display: block;
    background-color: var(--primary-color);
    width: 33.3%;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
    /* background-color: #2160f3; */
    color: #fff;
    margin: 0;
    border-radius: 0;
}

.accordion-body,
.accordion-button,
.accordion-collapse,
.accordion-header {
    border: 0 !important;
    box-shadow: none!important;
}
body .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-color: #000000!important;
    /* width: 5; */
    background: none;
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    transform: none;
}

body .accordion-button::after {
    font-family: "Font Awesome 5 Free";
    color: #fff;
    background-color: var(--primary-color) !important;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    margin-left: auto;
    content: "\f067";
    background: none;
    transform: none;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
    text-align: center;
    line-height: 35px;
    border-radius: 4px;
}

body .nav-tabs .nav-item.show .nav-link, body .nav-tabs .nav-link.active {
    /* color: #1146bf; */
    background: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    border: 0 !important;
    box-shadow: none;
    color: var(--primary-color);
}
body .accordion-collapse {
    margin-top: 15px;
}

section.training {
    /* background-color: #dcf0ff; */
    background-color: #ecf0f3;
}
.inner_box {
    /* text-align: center; */
    box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    padding: 40px 11px;
    background: linear-gradient(150deg, #e2e8ec, #ffffff);
    /* overflow: hidden; */
    margin: 11px 0;
    border-top: 2px solid var(--secondary-color);
    text-align: center;
    margin-top: 68px;
    transition: all 0.3s;
}
.inner_box:hover {
    transition: all 0.3s;
transform: translate(0px, -9px);
}
.inner_box:after {
    content: '';
    display: block;
    position: absolute;
    /* right: -85px; */
    top: -9px;
    /* border: 10px; */
    /* bottom: 0; */
    width: 18px;
    height: 18px;
    left: 0;
    right: 0;
    background: linear-gradient(46deg, var(--secondary-color) 50%, #00d4ff00 50%);
    /* background-color: var(--secondary-color); */
    z-index: -1;
    transform: rotate(136deg);
    /* border: 20px solid #ffffff40; */
    /* border-radius: 100%; */
    /* box-shadow: -4px 18px 0 #c4d4f8; */
    margin: 0 auto;
}
.inner_box img {
    max-height: 200px !important;
    margin: 0 auto;

}
section.whatis_rhls.py_50 {
    /* background-color: #ecf0f3; */
}

.inner_box h3 {
    color: #000;
    font-size: 19px;
    font-weight: bold;
}
.inner_box p {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

/* team_member */
.team_member{

padding: 10px;

position: relative;

background-color: #edf2ff;

border-radius: 10px;

overflow: hidden;
}
.team_member img{

border-radius: 10px;

position: relative;

z-index: 1;

height: 150px;

width: auto!important;

/* max-width: 155px; */

margin: 0 auto;

margin-top: 15px;
}

.team_member:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 113px;
    background-image: url(../img/franchise/bg_01.jpg);
    left: 0;
    background-size: inherit;
    right: 0;
    top: 0;
    bottom: 0;
    /* opacity: 0.7; */
    /* z-index: -1; */
}
.team_member_content{

margin-bottom: 15px;

position: relative;

z-index: 9;
}
.team_member_content h6{
    
margin-top: 15px;
    
margin-bottom: 9px;
    
font-size: 20px;
    
color: #000;
}
.team_member_content small{
    
line-height: 1.3;
    
display: block;
}

.mode-card iframe{
width: 100%;
}
.mode-card img {
    /* max-height: 180px; */
    width: auto;
    border-radius: 10px;
}

.mode-card {
    /* display: flex; */
    /* grid-gap: 17px; */
    /* background-color: #00000045; */
    /* padding: 15px; */
    /* border-radius: 10px; */
    /* align-items: center; */
    /* margin: 10px 0; */
}

.mode-card h6{

font-size: 20px;
}
.mode-card p{

font-size: 18px;

color: #fff!important;

line-height: 1.5;

/* margin-bottom: 0; */

/* padding: 15px; */
}

.content_feature p{
    margin-bottom: 0;
}

section.py-5.gradient-bg.Modes{
    background-image: url(../img/franchise/bg_01.jpg);
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

section.py-5.gradient-bg.Modes:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color:var(--primary-color);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.9;
    /* z-index: -1; */
}

.Modes .container {

    position: relative;
    z-index: 9;
}

.feature_card_v2 {
    background-image: url(../img/franchise/bg_01.jpg);
    background-size: cover;
    /* background-attachment: fixed; */
    transition: all 0.6s;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin: 10px;
    height: auto;
}

.feature_card_v2 h5{
    position: relative;
    z-index: 1;
        color: #fff;
}

.feature_card_v2 p{
        position: relative;
        z-index: 1;
        margin-bottom: 0;
}

.feature_card_v2:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--cp-primary);
    /* background-color: #1e40af; */
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.7;
    /* z-index: -1; */
}

a.nav-link {
    /* font-size: 18px; */
    color: #000000;
}

.social-links a {
    text-decoration: none;
}



/* owl button */

body .owl-carousel .owl-nav button.owl-prev {
    left: 14px;
}

body .owl-carousel .owl-nav button.owl-next {
    right: 14px;
}

body .owl-carousel .owl-nav button {
    bottom: 46%;
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(336deg, #1f5583 0%, #76b229 100%);
    background-color: var(--primary-color) !important;
    border-radius: 100%;
    transition: all 0.5s;
}
body .owl-carousel .owl-nav button:hover {
    transition: all 0.5s;
    background:var(--primary-color);
    /* background-color: #ffffff50!important; */
}

body .owl-carousel .owl-nav button span {
    color: #fff !important;
    font-size: 34px;
    /* border-radius: 100%; */
    line-height: 24px;
    margin-top: -8px!important;
    display: block;
}



@media (min-width: 768px) {


}
@media (min-width: 993px) and (max-width: 1200px){


}

@media (max-width: 991px) {
    ul.navbar-nav.ms-auto {
        padding: 15px;
        background-color: #ffffff;
        border-radius: 4px;
        position: absolute;
        width: 92%;
    }
   .feature_card_v2 {
    margin: 15px 0;
    height: auto;
}

.nav-tabs .nav-link {
    width: 50%;
}
.hero-section img{
    display: none;
}
    .hero-content {
    padding-bottom: 5px;
}
}

@media (max-width: 767px) {
   body .hero-section .hero-content .hero-title strong {
    font-size: 55px;
}

    .hero-content {
    padding-bottom: 20px;
}
    .flex_box{
    display: block;
    text-align: center;
}
body .accordion-item {
    padding: 15px 14px;

    margin: 7px;
}

.logo_img {
    max-width: 210px;
}
.flex_box i {
    margin-bottom: 15px;
}
.nav-tabs .nav-link {
    width: 99.3%;
}
.mode-card{
    display: block;
}
}

#features .feature-icon {
    background-color: var(--primary-color);
    width: 72px;
    height: 72px;
    transform: translate(11px, 3px);
    text-align: center;
    margin-top: -55px !important;
    line-height: 71px;
    color: #fff;
    font-size: 35px;
    margin-bottom: 18px !important;
    border-radius: 7px;
    /* margin: 0 auto; */
}

#features  .feature-card{
    
border: 1px solid #1f5583;
}

.hero-section .align-items-center {
    align-items: end !important;
}

.support-col ul li {
    font-size: 22px;

}

a.btn.ws-btn.book-now-btn:hover {
    background: #000;
    transition: all 0.3s;
}
section.training {
    /* background-color: #dcf0ff; */
    background-color: #ecf0f3;
}
.inner_box {
    /* text-align: center; */
    box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    padding: 40px 11px;
    background: linear-gradient(150deg, #e2e8ec, #ffffff);
    /* overflow: hidden; */
    margin: 11px 0;
    border-top: 2px solid var(--cp-primary);
    text-align: center;
    margin-top: 68px;
    transition: all 0.3s;
}
.inner_box:hover {
    transition: all 0.3s;
transform: translate(0px, -9px);
}
.inner_box:after {
    content: '';
    display: block;
    position: absolute;
    /* right: -85px; */
    top: -9px;
    /* border: 10px; */
    /* bottom: 0; */
    width: 18px;
    height: 18px;
    left: 0;
    right: 02;
    background: linear-gradient(46deg, var(--cp-primary) 50%, #00d4ff00 50%);
    /* background-color: var(--secondary-color); */
    z-index: -1;
    transform: rotate(136deg);
    /* border: 20px solid #ffffff40; */
    /* border-radius: 100%; */
    /* box-shadow: -4px 18px 0 #c4d4f8; */
    margin: 0 auto;
}


.inner_box img {
    max-height: 200px !important;
    margin: 0 auto;

}
section.whatis_rhls.py_50 {
    /* background-color: #ecf0f3; */
}

.inner_box h3 {
    color: #000;
    font-size: 19px;
    font-weight: bold;
}
.inner_box p {
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

#event_slider .item img{
    transform: scale(0.8);
    border-radius: 0px;
}
#event_slider .center {
    position: relative;
    z-index: 999;
     transform: scale(1.5);
     border-radius: 8px;
}
#event_slider .center .item img{
   
    position: relative;
    z-index: 999;
}

  .franchise-section {
            /* background: linear-gradient(135deg, #1f5583 0%, #2a6fa5 100%); */
            padding: 60px 0;
            /* color: white; */
        }
        
     
        .quality-card {
            background: #ffffff;
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1rem;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgb(97 97 97 / 20%);
            height: 100%;
        }
        
        .quality-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(31, 85, 131, 0.4);
        }
        
        .quality-icon {
            font-size: 3rem;
            margin-bottom: 10px;
            color: #1f5583;
            /* text-shadow: 2px 2px 4px rgba(0,0,0,0.3); */
        }
        
        .quality-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            /* color: #fff; */
        }
        
        .quality-description {
            font-size: 1rem;
            line-height: 1.6;
            /* color: rgba(255, 255, 255, 0.9); */
            margin-bottom: 0;
        }
        
  


          .education-group-section {
            /* background-color: #f8f9fa; */ /* A light, clean background */
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        
     
        .section-title .lead {
            /* max-width: 600px; */
            /* margin: 0 auto; */
            color: #222222;
            font-weight: 400;
        }
        
        .vertical-card {
            /* border: none; */
            border-radius: 0.75rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden; /* Ensures the pseudo-element doesn't overflow */
            position: relative;
        }

        .vertical-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        }

        .vertical-card .icon-box {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #005587;
            transition: color 0.3s ease;
        }

        .vertical-card:hover .icon-box {
            color: #000000;
        }
p.lead.mt-3 {
    font-weight: 400;
}

body .form-click {
    color: #000000;
    background: #ffc107;
}
.testimonial_item{
      position: relative;
}
.testimonial_overlay {
    /* background-color: #00000038; */
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
     opacity: 0;
     transition: all 0.3s;
}
#testimonial_slider .center .testimonial_overlay {
 opacity: 1;
  transition: all 0.3s;
}

a.play__btn {
    width: 60px;
    height: 60px;
    background-color: #d91414;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    margin-top: 0px;
    font-size: 24px;
    box-shadow: 0px 0px 0px 10px #d914148a;
    transition: 0.3s;
}

a.play__btn:hover {
    transition: 0.3s;
    transform: scale(1.05);
}


#testimonial_slider .item img {
    transform: scale(0.8);
    border-radius: 0px;
    transition: 0.3s;
}
#testimonial_slider .center img {
    position: relative;
    z-index: 999;
    transform: scale(1);
    border-radius: 8px;
    transition: 0.3s;
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end;
        align-items: center;
    }
}


@media (max-width: 768px) {
    a.play__btn {
        width: 50px;
        height: 50px;
        font-size: 16px;

    }
    .contact_form.footer_form.bg_light {
        margin-top: 0px;
    }
    .section-title {
        font-size: 2rem;
    }
    .quality-card {
        margin-bottom: 1.5rem;
    }
}