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

        .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;
        }
.hero-content h5 {
    background-color: #FFC107;
    padding: 10px 20px;
    border-radius: 15px 0;
    width: fit-content;
}
  .hero-content h5 {

        }

        @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;
        }
.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: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            /* 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 {
           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-color: #e8f0f7;
      
/* background: white; */
      
border-radius: 8px;
      
padding: 1rem;
      
height: 100%;
      
/* 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); */
}
.feature-card h4{
    font-size: 19px;
    color: #1f5583;
}
  .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;
}
  .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; */
        }
.feature-icon img{
    border-radius: 10px;
    margin-bottom: 10px;
}
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .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;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        .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: 80px;
    display: block;
    margin-bottom: 33px !important;
    height: 80px;
    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;
}

.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; */
}
.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{

}
.mode-card img {
    max-height: 180px;
    width: auto;
    border-radius: 10px;
}

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

.mode-card h6{

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

font-size: 16px;

color: #fff!important;

line-height: 1.3;
}

.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.7;
    /* 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: 100%;
    }
   .feature_card_v2 {
    margin: 15px 0;
    height: auto;
}

.nav-tabs .nav-link {
    width: 50%;
}

}

@media (max-width: 767px) {
    .flex_box{
    display: block;
}
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;
}
}



.integration-list {
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      border-radius: 0 0 0.25rem 0.25rem;
      padding: 2rem 1rem 1rem 1rem;
    }
    .school-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 0;
      border-bottom: 1px solid #e5e7eb;
    }
    .school-item:last-child {
      border-bottom: none;
    }
    .school-name {
      color: var(--primary-color);
      font-weight: 500;
    }
    .school-location {
      color: #f59e0b;
      font-weight: 500;
      white-space: nowrap;
    }
    @media (max-width: 600px) {
      .school-item {
        flex-direction: column;
        align-items: flex-start;
      }
      .school-location {
        margin-top: 0.25rem;
      }
    }

    .program-icon {
    max-width: 60px;
    height: 60px;
    background-color: #f59e0b;
    background-color: var(--primary-color);
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 33px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.social-links {
    display: flex
;
    grid-gap: 3px;
}


section.parents_v2 {
    padding: 60px 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

section.parents_v2 .program_col .icon__box {
    /* background-color: #1f5583; */
}
section.parents_v2 .program_col .icon__box i {
    line-height: 120px;
}
section.parents_v2 .program_col h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}
section.parents_v2 .program_col ul li {
    margin-bottom: 5px;
    color: #000;
    font-size: 15px;
    text-align: left;
}
section.parents_v2 .program_col p {

    color: #000;
}
section.parents_v2 .icon__box {
    /* width: 120px; */
    flex: none;
    height: 87px;
    /* margin: 0 auto; */
    /* background-image: linear-gradient(to right top, #003a66, #443e7f, #813886, #b82776, #e02454); */
    /* font-size: 61px; */
    /* color: var(--primary-color); */
    /* text-align: center; */
    /* line-height: 113px; */
    /* border-right: 3px solid #ccc; */
    /* border-radius: 100px; */
    /* margin-bottom: 28px; */
    /* box-shadow: 10px 8px 1px #9e4c10; */
}
section.parents_v2 .icon__box img{
    
display: block;
    
margin: 0 auto;
}
section.parents_v2 .program_content .program_col {
    /* background-image: url(../img/bg-01.png); */
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 58%;
    padding: 20px;
}
section.parents_v2 .program_col:hover {
    transform: scale(1.03);
    transition: all 0.5s;
    box-shadow: 2px 17px 20px #00000014;
}
section.parents_v2 .program_col {
    text-align: left;
}
section.parents_v2 .program_col {

grid-gap: 27px;

align-items: center;

border-radius: 15px;

height: 100%;

position: relative;

text-align: center;

overflow: hidden;

background-color: #e8f0f7;

transition: all 0.5s;
}

.program_content > .row {
    grid-gap: 30px 0;
    justify-content: center;
}



.study_material img{max-width: 120px;margin: 0 auto;margin-bottom: 20px;}
.list_ul.study_material li a i {
    font-size: 18px;
    width: 34px;
    text-align: center;
    padding: 6px;
    height: 34px;
    line-height: 22px;
}

.program_col h5{
    color: #1f5583;

}

section.service {
    /* padding-bottom: 60px; */
}

.service_col {
    padding: 21px;
    background-color: #074c86;
    margin: 10px 0;
    border-radius: 4px;
    transition: all 0.3s;
    transform: scale(1);
    /* background-image: url('../img/shape-01.png'); */
    position: relative;
    overflow: hidden;
}

.service_col:after {
    content: '';
    position: absolute;
    background-image: url(../img/bg10.png);
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    transition: all 0.5s;
    transform: translate(0);
}
.service_col:hover:after {
    transition: all 0.5s;
    transform: translate(-30px);
}
.service_col:hover {
    transition: all 0.5s;
    transform: scale(1.05);
}
.service_col span{

background-color: #fff;

width: 100px;

height: 100px;

line-height: 100px;

font-size: 32px;

border-radius: 100px;

color: #000;
}


.service_col h3{font-weight: 500;color: #fff;margin-top: 20px;margin-bottom: 10px;font-size: 22px;}
.service_col p{color: #fff;font-size: 17px;}


/* school */

.schools_slid_img {
    padding: 15px;
    flex: none;
}

.schools_slid_content h4 {
    font-size: 14px;
    color: #000;
    font-weight: bold;
    /* text-align: center; */
}

.schools_slid_content h5 {
    font-size: 13px;
    color: #000;
    /* text-align: center; */
    font-style: italic;
}
.schools_slid_img img {
    width: 50px !important;
    margin: 0 auto;
    border-radius: 10px;
}
.schools_slid{
    
background-color: #fff;
    
padding: 15px 14px;
    
border-radius: 15px;
    
/* min-height: 220px; */
    
display: flex;
    
text-align: left;
    
align-items: center;
    
margin: 10px 0;
    
border: 1px solid #ededed;
}
.schools_list {
    position: relative;
    background-color: #e8f0f7;
}
.schools_list:after {
    /* background-image: url(../img/service-bg.png); */
    background-size: 100%;
    background-position: 27px right;
    background-repeat: no-repeat;
    content: '';
    display: block;
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 50%;
    /* background: #1f5583; */
    opacity: 0.3;
}
section.schools_list.p_80 {
    /* background-color: #1f558312; */
}



/* Add these new styles inside your existing <style> tag */

.feature-card {
    border: 1px solid #e9ecef; /* A light border */
    /* border-radius: 15px; */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    background-color: #e8f0f7;
}

.feature-card .card-title {
    color: #1f5583; /* Using the primary theme color for titles */
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff; /* A light blue background for the icon */
    color: #1f5583; /* Icon color */
}



.single_counter  .statistic-counter
{

font-weight: bold;

color: #000;

margin-top: 14px;

margin-bottom: 9px;
}


.single_counter i
{

font-size: 40px;

margin-bottom: 20px;

color: #1f5583;

border: 1px solid #1f5583;

width: 100px;

height: 100px;

display: flex;

align-items: center;

justify-content: center;

margin: 0 auto;

background-color: #fff;

border-radius: 15px 0;
}


.single_counter  p
{

color: #000;

text-transform: capitalize;

font-weight: 500;
}


.single_counter 
{

text-align: center;

padding: 29px;

background-color: #ffffff;

height: 100%;

border-radius: 40px 0;
}
section#counter {
    padding: 60px 0;
    background-color: #e8f0f7;
}

.schools_slid_img {
    padding: 15px;
    flex: none;
}

section.what-sets-us-apart.py-5 {
    /* background-color: #e8f0f7; */
}

section#Mode {
     background-color: #e8f0f7;
}

section#Mode .feature-card {
     background-color: #ffffff!important;
     border-bottom: 4px solid #1f5583;
}
section#Mode .feature-card p{
    margin-bottom: 0;
}