#ec{
    margin: 0 !important;
}
.text-justify{
    text-align: justify;
}
b, strong {
    font-weight: 600;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cover-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 999;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 10px;
}
.primary-text{
    color: var(--primary-color);
}
.snow-bg{
    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
}
.snow-bg-2{
    background-image: linear-gradient(to top, #f8faff 0%, #ffffff 100%);
}
/* Ensure keyboard focus is visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 2px !important;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none !important;
}
.desktop-nav .navbar .navbar-nav .nav-item:focus-within .dropdown-menu {
    top: 100%;
    opacity: 1;
    margin-top: 16px;
    transform: translateY(1);
    visibility: visible;
}
/* Page Banner */
.page-banner-area {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
}

.page-banner-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    padding: 0;
}

.page-banner-content h1{
    color: #fff;
}

.page-banner-content p{
    color: #fff;
    font-size: 18px;
}
/* File Table Design */
.download-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}
.download-table th {
    background: #f7f7f7;
    padding: 10px 12px;
    font-weight: 600;
    border: 1px solid #e2e2e2;
}
.download-table td {
    padding: 6px 12px;
    border: 1px solid #e2e2e2;
    vertical-align: middle;
}
.download-table tbody tr:hover {
    background: #fafafa;
}
.download-table .file-name {
    color: var(--secondary-color);
    transition: 0.5s;
}
.download-table .file-name:hover{
    color: var(--primary-color);
}
.download-table .file-name i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 18px;
}
.download-btn{
    padding: 16px;
    background: #f7f7f7;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid #e9e9e9;
    transition: 0.5s;
}
.download-btn i {
    font-size: 16px;
    transition: 0.5s;
    line-height: 0;
}
.download-btn:hover{
    background: var(--primary-color);
    color: #fff;
}
/* Team */
.team-content h3{
    transition: 0.5s;
}
.team-content:hover h3{
    color: var(--primary-color);
}
/* Full width CTA */
.full-cta{
    padding: 60px 0;
    border-radius: 0;
}
.full-cta.join-us-overly{
    max-width: 100%;
    border-radius: 0;
}
.full-cta.join-us-overly::before{
    border-radius: 0;
}
/* Instructor Details */
.sidebar.sticky-lg-top{
    top: 120px;
}
.about-widget .instructor-photo img{
    border-radius: 10px;
}
.about-widget .instructor-name{
    font-size: 24px;
}
.about-widget .designation{
    font-size: 18px;
    font-weight: 500;
    font-family: var(--body-font);
}
.social-medias{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.social-medias li a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    background-color: #f0f0f0;
    color: #666666;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    transition: all ease 0.5s;
    overflow: hidden;
}
.social-medias li a::before {
    position: absolute;
    content: "";
    height: 0%;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #dd0000;
    border-radius: 100%;
    z-index: -1;
    transition: all ease 0.5s;
}
.social-medias li a:hover {
    color: #ffffff;
}
.social-medias li a:hover::before {
    height: 100%;
}
/* Event */
.post-wrap .thumb img {
    width: 75px;
    height: 75px;
    object-fit: cover;
}
.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    padding: 6px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.event-badge.national{
    background-color: #489b4c;
}
.event-badge.international{
    background-color: var(--primary-color);
}
/* Hero Banner */
.hero-banner {
    position: relative;
    background: url('/Content/img/bg/hero-banner-bg.jpg') top center/cover no-repeat;
    padding: 200px 0;
    z-index: 1;
}
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-content p{
    font-size: 18px;
    color: #fff;
}
.banner-content .slide-title{
    font-size: 55px;
    line-height: 1.2;
}
/* Reviews */
.single-testimonial-item .clients-info .client-img img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
}
.clients-info .google-icon img{
    width: 25px;
    height: 25px;
}
.greview-btn {
    display: inline-block;
    background-color: #4285F4;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease;
    max-width: 250px;
}

.greview-btn:hover {
    background-color: #357ae8;
    text-decoration: none;
    color: #fff;
}

.greview-btn .g-icon {
    background-color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 5px;
}

.greview-btn a {
    color: #fff;
    line-height: 1.4;
    font-size: 16px;
}
.google-icon {
    width: 40px;
    height: 40px;
}

/* Image Wrapper */
.about-images-wrapper {
    position: relative;
    padding-right: 15%;
    padding-bottom: 25%;
}
.about-images-wrapper .img-main{
    width: 100%;
}
.about-images-wrapper .img-main img {
    width: 100%;
    object-fit: cover;
    height: auto;
    border-radius: 10px;
}
.about-images-wrapper .img-overlay {
    position: absolute;
    width: 100%;
    max-width: 70%;
    bottom: 0;
    right: 0;
    padding: 10px;
    background: #ffff;
    border-radius: 10px;
}
.about-images-wrapper .img-overlay img{
    width: 100%;
}
.about-images-wrapper .dotted-shape{
    position: absolute;
    top: 55%;
    left: 20%;
    width: 180px;
    height: 180px;
    z-index: -1;
}

/* Schools */
.school-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.5s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.school-card .school-img img {
    width: 100%;
    border-bottom: 1px solid #eee;
}
.school-card .school-content {
    padding: 20px;
    flex-grow: 1;
}
.school-card .school-name {
    font-size: 22px;
    margin-bottom: 15px;
}
.school-card .school-name a{
    color: var(--secondary-color);
    transition: 0.5s;
}
.school-card .school-name a:hover{
    color: var(--primary-color);
}
.school-card .school-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}
.school-card .school-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
}
.school-card .school-info-list i {
    color: var(--primary-color);
    width: 18px;
}
.school-card .contact-btns a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
    color: var(--primary-color);
    background: #fff4f1;
}
.school-card .contact-btns a:hover {
    background: #d92323;
    color: #fff;
    border-color: #d92323;
}
.school-card .school-btn {
    padding: 8px 18px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}
.school-card .school-btn:hover {
    background: #b81c1c;
}

.cover-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 50px;
}
.cover-img img {
    width: 100%;
    display: block;
    border-radius: 10px;
}
.cover-img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    border-radius: 10px;
}
.meta-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 30px;
    z-index: 2;
}
.school-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}
.meta-info{
    padding: 0;
    list-style: none;
    margin: 0;
}
.meta-info li{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
}
.content-box{
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}
.content-box .about-title{
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
}
.content-box .about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
/* School Details */
.school-sidebar{
    top: 120px;
}
.school-sidebar .widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    margin-bottom: 30px;
}
.school-sidebar .widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}
.school-sidebar .schools-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.school-sidebar .schools-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.school-sidebar .schools-info-list li:last-child {
    margin-bottom: 0;
}
.school-sidebar .schools-info-list li i {
    width: 40px;
    height: 40px;
    background: #f9fafb;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.5s ease;
}
.school-sidebar .schools-info-list li:hover i {
    background: var(--primary-color);
    color: #fff;
}
.school-sidebar .info-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 4px;
}
.school-sidebar .schools-info-list li span,
.school-sidebar .schools-info-list li a {
    font-size: 15px;
    display: block;
    line-height: 1.4;
    word-break: break-all;
}
.school-sidebar .schools-info-list li a {
    color: #666;
    text-decoration: none;
    transition: 0.5s;
}
.school-sidebar .schools-info-list li a:hover {
    color: var(--primary-color);
}
.school-sidebar .cta-widget {
    background: linear-gradient(135deg, #dd0000 0%, #b10000 100%);
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.school-sidebar .cta-widget::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -105px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.school-sidebar .cta-widget h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.school-sidebar .cta-widget p {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.school-sidebar .cta-widget-btn {
    display: inline-block;
    background: #fff;
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
}
.school-sidebar .cta-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}
/* Info List */
.info-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-list li{
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-bottom: 10px;
    text-align: left;
}
.info-list li i{
    width: 20px;
    line-height: 1.4;
    color: var(--primary-color);
}
.info-list li span{
    line-height: 1.4;
}
.shape-img {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}
.shape-img::before {
    content: "";
    position: absolute;
    background: #ff1818;
    border-radius: 10px;
    z-index: 1;
    top: 30px;
    width: 100%;
    height: 100%;
}
.shape-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}
.shape-img.left {
    margin-left: 30px;
}
.shape-img.left::before {
    left: -30px;
}
.shape-img.right {
    margin-right: 30px;
}
.shape-img.right::before {
    right: -30px;
}
/* News Card */
.news-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}
.news-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}
.news-img img {
    width: 100%;
    transition: all 0.4s ease;
}
.news-card:hover .news-img img {
    transform: scale(1.05);
}
.news-content {
    padding: 25px;
}
.news-date {
    font-size: 16px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.news-date i {
    color: var(--primary-color);
    margin-right: 6px;
}
.news-title {
    font-size: 22px;
    margin-bottom: 20px;
}
.news-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: 0.5s ease;
}
.news-title a:hover {
    color: var(--primary-color);
}
/* Responsive */
@media only screen and (max-width: 1400px){
    .hero-banner{
        padding: 150px 0;
    }
    .hero-content h1{
        font-size: 48px;
    }
    .banner-slider-item-style2{
        padding: 150px 0;
    }
    .banner-content .slide-title{
        font-size: 48px;
    }
    .school-title{
        font-size: 28px;
    }
    .meta-info li{
        font-size: 14px;
    }
    .content-box .about-title{
        font-size: 26px;
    }
}
@media only screen and (max-width: 1200px){
    .hero-banner{
        padding: 100px 0;
    }
    .hero-content h1{
        font-size: 38px;
    }
    .banner-slider-item-style2{
        padding: 100px 0;
    }
    .banner-content .slide-title{
        font-size: 36px;
    }
    .content-box, .school-sidebar .widget, .school-sidebar .cta-widget{
        padding: 25px;
    }
    .meta-content{
        padding: 20px;
    }
    .content-box .about-title{
        font-size: 24px;
    }
}
@media only screen and (max-width: 991px){
    .logo img{
        width: 80px;
    }
    .others-option-for-responsive .dot-menu{
        top: -70px;
    }
    .page-banner-area{
        padding: 70px 0;
    }
    .hero-banner{
        padding: 70px 0;
    }
    .hero-content h1{
        font-size: 36px;
    }
    .banner-slider-item-style2{
        padding: 80px 0;
    }
    .banner-content .slide-title{
        font-size: 32px;
    }
    .about-images-wrapper .dotted-shape{
        width: 150px;
        height: 150px;
    }
}
@media only screen and (max-width: 768px){
    .others-option-for-responsive .dot-menu{
        top: -60px;
    }
    .hero-banner{
        padding: 60px 0;
    }
    .page-banner-area{
        padding: 60px 0;
    }
    .banner-slider-item-style2{
        padding: 60px 0;
    }
    .dotted-shape{
        width: 100px;
        height: 100px;
    }
    .school-title{
        font-size: 24px;
    }
    .content-box .about-title{
        font-size: 22px;
    }
}
@media only screen and (max-width: 480px){
    .mobile-responsive-nav .mobile-responsive-menu .logo .site-logo{
        width: 70px;
    }
    .hero-banner{
        padding: 50px 0;
    }
    .page-banner-area{
        padding: 50px 0;
    }
    .page-banner-content p{
        font-size: 16px;
    }
    .hero-content h1{
        font-size: 32px;
    }
    .hero-content p{
        font-size: 16px;
    }
    .banner-slider-item-style2{
        padding: 50px 0;
        min-height: 400px;
        display: flex;
        align-items: center;
    }
    .banner-content .slide-title{
        font-size: 28px;
    }
    .banner-content p{
        font-size: 16px;
    }
    .about-images-wrapper .dotted-shape{
        width: 100px;
        height: 100px;
    }
    .school-card .school-name{
        font-size: 20px;
    }
    .shape-img::before {
        top: 20px;
    }
    .shape-img.left {
        margin-left: 20px;
    }
    .shape-img.left::before {
        left: -20px;
    }
    .shape-img.right {
        margin-right: 20px;
    }
    .shape-img.right::before {
        right: -20px;
    }
}