@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.woff2') format('woff2'),
        url('../fonts/Lato-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary-color: #011224;
    --secondary-color: #2A2A2A;
    --white-color: #fff;
    --accent-purple: #4B123F;
    --accent-yellow: #D39134;
}
body {
    font-size: 16px;
    font-family: 'Lato';
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: var(--secondary-color);
    line-height: 1.5;
}
* {
    box-sizing: border-box;
}
a {
   font-family: 'Lato';
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Playfair Display';
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 15px;
    color: var(--primary-color);
}
h1, .h1 {
    font-size: 44px;
}
h2, .h2 {
    font-size: 35px;
}
h3, .h3 {
    font-size: 20px;
}
p {
    margin: 0 0 15px;
}
p:last-child {
    margin: 0;
}
.highlight {
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 18px;
}
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: 20px;
}
.relative {
    position: relative;
}
a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}
img {
    vertical-align: bottom;
    max-width: max-content;
    height: auto;
}
.img-fluid {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.btn {
    display: inline-block;
    text-align: center;
    padding: 11px 15px;
    border-radius: 7px;
    color: var(--white-color);
    font-weight: 500;
    min-width: 145px;
    border: 1px solid;
    line-height: 1;
}
.primary-btn {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}
.secondary-btn {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}
.secondary-border {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}
.btn:hover {
    transform: translateY(-1px);
}
.secondary-border:hover {
    background-color: var(--accent-purple);
    color: var(--white-color);
}
section {
    padding: 60px 0;
}
.btn-wrap {
    margin-top: 40px;
}
.btn-wrap.flex {
    display: flex;
    gap: 20px;
    align-items: center;
}
.btn-wrap.center {
    margin-top: 40px;
    text-align: center;
}
.pb-0 {
    padding-bottom: 0;
}
/* header */
.header {
    width: 100%;
    background: var(--accent-purple);
    padding: 9px 0;
    z-index: 11;
}
.header .container {
    max-width: 1340px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.header-inner .logo-wrap {
    flex: 0 0 100%;
    max-width: 147px;
}
.logo-wrap img {
    width: 100%;
}
.main-nav {
    flex: 0 0 100%;
    max-width: 70%;
}
.header-inner .btn-wrap {
    flex: 0 0 100%;
    max-width: max-content;
    margin: 0;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav li {
    margin: 0;
    padding: 0;
}
.main-nav a {
    position: relative;
    display: block;
    color: var(--white-color);
    padding: 15px 0;
}
.main-nav a:hover {
    color: var(--accent-yellow);
}
.main-nav a.active {
    color: var(--accent-yellow);
    font-weight: 700;
}
.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--accent-yellow);
}
/* toggle */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.25s ease;
}
/* banner section */
.hero-sec {
    padding: 121px 0;
    min-height: 650px;
    display: flex;
    align-items: center;
}
.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-sec .container {
    position: relative;
}
.hero-inner {
    max-width: 430px;
}
/*  */
.icon-box-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.icon-box-wrap {
    display: flex;
    gap: 16px;
    border-right: 1px solid var(--accent-yellow);
    padding-right: 30px;
}
.top-title {
    margin: 0 0 6px;
    line-height: 1.2;
}
.icon-box-wrap:last-child {
    border-right: none;
    padding-right: 0;
}
/* our programs */
.our-programs {
    background: #FAF7F0;
}
.heading-wrapper.center {
    text-align: center;
    max-width: 564px;
    margin-inline: auto;
}
.heading-wrapper {
    margin: 0 0 37px;
}
.program-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}
.single-program {
    border: 1px solid #DDAB65;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white-color);
    text-align: center;
}
.program-img {
    height: 224px;
}
.program-text {
    padding: 0 20px 46px;
    margin-top: -32px;
}
.program-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    border-radius: 50px;
    border: 1px solid var(--accent-yellow);
    background: var(--accent-purple);
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin-bottom: 28px;
}
.program-text h3 {
    color: var(--accent-yellow);
    line-height: 1;
}
.two-col-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.two-col-sec.gray-bg {
    background: #F8F8F8;
}
.image-col {
    max-width: 44.334%;
}
.two-col-wrap >* {
    flex: 0 0 100%;
}
.content-col {
    max-width: 50%;
}
.grid-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-template-rows: repeat(2, 164px);
}

.first-image {
    grid-row: 1 / 3;
}
.content-col ul, .event-details {
    padding-left: 0;
    list-style: none;
}

.content-col ul li, .event-details li {
    display: inline-flex;
    gap: 10px;
    width: 100%;
    align-items: center;
    margin: 0 0 13px;
}
.content-col ul li:last-child, .event-details li:last-child {
    margin: 0;
}
.image-col img {
    border-radius: 12px;
}
.wider-image .image-col {
    max-width: 60%;
}
.wider-image .content-col {
    max-width: 36%;
}
.two-col-wrap.equal-columns >* {
    max-width: 48%;
}
.image-col.side-border:before {
    content: '';
    position: absolute;
    width: 95%;
    height: 95%;
    background: var(--accent-yellow);
    border-radius: 10px;
    left: 0px;
    bottom: -14px;
}
.image-col.side-border {
    padding-left: 14px;
}
.image-col.side-border img {
    position: relative;
}
.ready-to-start-sec {
    background: var(--accent-yellow);
    text-align: center;
    color: var(--white-color);
}
.ready-to-start-sec h2 {
   color: var(--white-color); 
}
/* footer */
.footer, .footer h3 {
    color: var(--white-color);
}
footer .top-footer {
    background: #4B123F;
    padding: 40px 0;
}
.footer-inner >* {
    flex: 0 0 100%;
    max-width: calc(100% / 4 );
}
.footer .col:first-child {
    max-width: 18%;
}
.footer .col:last-child {
    max-width: 32%;
    padding-left: 62px;
}
.footer .col:nth-child(2), .footer .col:nth-child(3) {
   padding: 0 60px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
}
.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 23px !important;
}
.social-link {
    width: 32px;
    height: 32px;
    background: #7C2169;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    padding: 6px;
}
.footer .logo-wrap {
    margin-bottom: 20px;
}
.footer .col ul li a {
    padding: 3px 0;
    color: #F0F0F0;
}
.footer .col ul li a:hover {
    color: var(--accent-yellow);
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #F0F0F0;
    margin-bottom: 15px;
}

.contact-detail:last-child {
    margin: 0;
}
.contact-detail img {
    margin-top: 4px;
}
.footer .col {
    border-right: 1px solid rgba(255, 255, 255, 0.38);
}

.footer .col:last-child {border-right: none;}
.copyright {
    background: #411137;
    padding: 15px 20px;
    text-align: center;
    font-size: 15px;
}
.footer p {
    color: #F0F0F0;
}
/* inner banner */
.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.banner-content h1 {
    color: var(--white-color);
    margin: 0;
}
.inner-banner:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.inner-banner {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*  */
.stats-box {
    border-radius: 10px;
    background: var(--accent-purple);
    padding: 40px;
    display: flex;
    justify-content: space-between;
}
.stat-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 40px;
    border-right: 1px solid var(--accent-yellow);
    flex: 0 0 100%;
    max-width: 26.7%;
}
.stat-item:first-child {
    padding-left: 0;
}
.stat-item:last-child {
    padding-right: 0;
    border-right: none;
    max-width: 20%;
}
.stat-number {
    color: var(--white-color);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-label {
    color: #F0F0F0;
}
.stat-content {
    flex-grow: 1;
}
.circle-icon-box {
    display: flex;
    gap: 16px;
    align-items: center;
}
.two-col-icon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 37px 20px;
    margin-top: 22px;
}
.circle-icon-box .icon {
    width: 72px;
    height: 72px;
    border: 1px solid var(--accent-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 8px;
}

.circle-icon-box h3 {
    margin: 0;
    font-family: 'Lato';
}
/* team members */
.team-sec {
    background: #FAF7F0;
}
.team-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.single-member {
    background: #fff;
    border: 1px solid var(--accent-yellow);
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}
.name {
    font-size: 20px;
    color: var(--accent-yellow);
    font-weight: bold;
    line-height: 1;
}
.team-detail {
    padding: 20px 15px;
}
.profile {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}
.profile-img {
    height: 224px;
}
section.simple-content-sec {
    text-align: center;
    background: #FAFAFA;
}
.simple-content-sec .container {
    max-width: 900px;
}
.three-col-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.single-col {
    box-shadow: 0px 3px 6px #5151511C;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.lession-text {
    padding: 20px;
}
a.simple-link {
    color: var(--accent-yellow);
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

a.simple-link img {
    width: auto;
    margin-top: 1px;
}
.image-wrap {
    height: 156px;
}
.three-col-sec .container {
    max-width: 1000px;
}
.why-choose-sec {
    background: #FAF7F0;
}
.why-choose-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-rule: 1px dashed var(--accent-yellow);
    gap: 40px;
}

.top-icon {
    width: 81px;
    height: 81px;
    box-shadow: 0px 1px 5px #00000012;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 40px;
    margin: 0 auto 18px;
}

.single-box {
    text-align: center;
}
.two-col-outer {
    background: #FAFAFA;
    padding: 0;
}
.ready-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 882px;
    margin: auto;
    gap: 10px;
}
.left-text-wrap {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 28px;
}
.left-text-wrap h2 {
    font-size: 30px;
    margin-bottom: 5px;
}
.five-col-sec {
    background: #FAF7F0;
}

.five-col-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 19px;
}
.five-col-wrap .single-col {
    background: var(--white-color);
    box-shadow: 0px 3px 8px #0000001A;
    border-radius: 10px;
    padding: 25px 19px;
    text-align: center;
}
.five-col-wrap .single-col h3 {
    font-family: 'Lato';
    padding-bottom: 16px;
}
.five-col-wrap .single-col h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 1px;
    border-bottom: 1px solid var(--accent-yellow);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.five-col-wrap .single-col .top-icon-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto 18px;
    background: #05182B;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wide-col-wrap.equal-columns {
    display: flex;
    align-items: stretch;
    text-align: left;
    justify-content: space-between;
}
.wide-col-wrap .left-image {
    flex: 0 0 100%;
    width: 45vw;
    max-width: 45vw;
    margin-left: calc(-50vw + 50%);
}
.wide-col-wrap .right-content {
    flex: 0 0 100%;
    max-width: 50%;
    padding: 40px 0;
}
.wide-col-wrap .right-content h2 {
    font-size: 30px;
}
.four-col-wrap, .four-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}
.publish-date {
    width: 61px;
    height: 98px;
    background: var(--accent-yellow);
    display: inline-flex;
    flex-wrap: wrap;
    color: var(--white-color);
    position: absolute;
    top: -65px;
    left: 12px;
    font-weight: 600;
    border-radius: 11px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.publish-date span {
    font-size: 24px;
}
.lession-text.relative {
    padding-top: 60px;
}
.event-image {
    height: 188px;
}
.event-listing {
    background: #FAF7F0;
}



/* ================== GALLERY & GRID STYLES CSS START ================== */

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.common-heading-sec.txt-center {
    text-align: center;
}

.gallery-intro-sec h2 {
    color: var(--navy-blue-color, #38122d);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.gallery-intro-desc {
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
}

/* Flexbox Gallery Grid Layout */
.gallery-grid-wrap {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px 24px !important;
    justify-content: flex-start !important;
}

/* 3 Columns Desktop */
.gallery-item {
    width: calc((100% - 48px) / 3) !important;
    flex: 0 0 calc((100% - 48px) / 3) !important;
    box-sizing: border-box !important;
}

.gallery-img-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s ease;
}

/* Hover Zoom Overlay */
.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(56, 18, 45, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-hover-overlay .zoom-icon {
    color: #ffffff;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

/* Responsive Tablet */
@media (max-width: 991px) {
    .gallery-item {
        width: calc((100% - 24px) / 2) !important;
        flex: 0 0 calc((100% - 24px) / 2) !important;
    }
}

/* Responsive Mobile */
@media (max-width: 576px) {
    .gallery-item {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}


/* ================== GALLERY & GRID STYLES CSS END ================== */


/* ================== STYLISH CONTACT PAGE CSS START ================== */

.padding-100 {
    padding: 100px 0;
}

.contact-inner-wrap.ctm-flex {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 50px !important;
}

.contact-info-col,
.contact-form-col {
    width: calc(50% - 25px) !important;
    flex: 0 0 calc(50% - 25px) !important;
    box-sizing: border-box !important;
}

/* Sub-heading Accent */
.contact-info-box .sub-title {
    color: #e27d60;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.contact-info-box h2 {
    color: var(--navy-blue-color, #38122d);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-info-box p {
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Stylish List with Icons */
.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Icon Wrap Styles */
.contact-details-list .icon-wrap {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: #38122d; /* Theme main color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-details-list .icon-wrap stroke,
.contact-details-list .icon-wrap svg {
    stroke: #ffffff;
}

.contact-details-list li:hover .icon-wrap {
    background-color: #e27d60; /* Accent color on hover */
    transform: translateY(-3px);
}

.contact-details-list .details-content {
    display: flex;
    flex-direction: column;
}

.contact-details-list .details-content strong {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-details-list .details-content span,
.contact-details-list .details-content a {
    font-size: 16px;
    font-weight: 600;
    color: #38122d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-list .details-content a:hover {
    color: #e27d60;
}

/* Form Styles */
.contact-form-box {
    background-color: #38122d;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-box p {
    margin-bottom: 15px;
    color: #fff;
}

.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box input[type="tel"],
.contact-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}

.contact-form-box textarea {
    height: 120px;
    resize: vertical;
}

.contact-form-box input[type="submit"] {
    background-color: #ffffff;
    color: #38122d;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-box input[type="submit"]:hover {
    background-color: #e27d60;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-info-col,
    .contact-form-col {
        width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* ================== STYLISH CONTACT PAGE CSS END================== */




/* faq section */
.title-line {
    width: 90px;
    height: 2px;
    background: var(--accent-yellow);
    margin: 20px auto 0px;
}
.faq-section .container {
    max-width: 884px;
}
.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.faq-list {
    overflow: hidden;
    background: var(--white-color);
    border: 1px solid #D6D6D6;
    border-radius: 10px;
}
.faq-item {
    border-bottom: 1px solid #E0E0E0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    padding: 17px 24px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Lato';
    font-size: 16px;
    font-weight: 600;
    color: #3A3A3A;
    text-align: left;
}
.faq-question:hover {
    background: #fafafa;
}
.plus {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-left: 15px;
}
.plus::before, .plus::after {
    content: "";
    position: absolute;
    background: #000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.plus::before {
    width: 15px;
    height: 1.5px;
}
.plus::after {
    width: 2px;
    height: 15px;
    transition: transform 0.2s ease;
}
.faq-item.active .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}
.faq-answer-inner {
    padding: 10px 21px 14px;
}
.faq-item.active .faq-answer {
    max-height: 100px;
}
.lessons-sec {
    background: var(--accent-purple);
}

.lessons-sec h2, .lessons-sec h3 {
    color: var(--white-color);
}

.lessons-sec .why-choose-inner {
    column-rule: none;
    row-rule: none;
}
.lessons-sec .why-choose-inner p {
    color: rgba(255 255 255 / 60%);
}
.explore-more-sec {
    background: #FAF7F0;
}
.explore-more-sec  .image-column {
    background: var(--accent-purple);
    border-radius: 10px;
    overflow: hidden;
}
.explore-more-sec  .title {
    color: var(--white-color);
    text-align: center;
    padding: 19px 12px;
    font-size: 20px;
}
.explore-more-sec  .img-wrapper {
    height: 137px;
}
.explore-more-sec .container {
    max-width: 1090px;
}
@media(max-width:1199px){
    .main-nav ul {
        gap: 20px;
    }
    .header-inner .logo-wrap {
        max-width: 130px;
    }
    .hero-sec {
        min-height: min-content;
    }
    .icon-box-list {
        gap: 15px;
    }

    .icon-box-wrap {
        gap: 12px;
        padding-right: 20px;
    }
    .program-wrapper {
        gap: 16px;
    }
    .program-text {
        padding: 0 15px 26px;
    }
    .program-icon {
        margin-bottom: 20px;
    }
    .footer .col:nth-child(2), .footer .col:nth-child(3) {
        padding: 0 40px;
    }
    .footer .col:last-child {
        padding-left: 40px;
    }
    .stat-item {
        padding: 0 25px;
    }
    .stats-box {
        padding: 40px 25px;
    }
    .stat-icon {
        width: 60px;
        max-width: max-content;
    }
    .stat-icon img {
        object-fit: contain;
        width: 100%;
    }
    .stat-item {
        gap: 12px;
        font-size: 14px;
        padding: 0 20px;
    }
    .team-wrapper, .four-col-wrap, .four-column {
        gap: 20px;
    }
}
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 17px;
    }
    /* Hamburger */
    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 87px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 10px 20px 15px;
        background: var(--accent-purple);
        max-width: 100%;
    }
    .header-inner .btn-wrap {
        margin-left: auto;
    }
    .main-nav.open {
        display: block;
    }
    .main-nav ul {
        display: block;
        width: 100%;
    }
    .main-nav li {
        width: 100%;
    }
    .main-nav a {
        padding: 10px 0px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .main-nav a.active::after {
        display: none;
    }
    .main-nav a.active {
        color: var(--accent-yellow);
    }
    .hero-sec {
        padding: 100px 0;
    }
    .bg-image img {
        object-position: left;
    }
    .three-col-wrap {
        gap: 24px;
    }
    .five-col-wrap .single-col .top-icon-wrap {
        width: 75px;
        height: 75px;
    }
    .four-col-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width:991px){
    h1, .h1 {
        font-size: 35px;
    }
    .hero-sec {
        padding: 60px 0;
    }
    .icon-box-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    .icon-box-wrap:nth-child(2) {
        padding-right: 0;
        border-right: none;
    }
    .program-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer .col:last-child {
        max-width: 30%;
    }
    .footer .col:nth-child(2), .footer .col:nth-child(3) {
        padding: 0 25px;
    }
    .footer .col:last-child {
        padding-left: 25px;
    }
    .contact-detail {
        gap: 10px;
        margin-bottom: 10px;
    }
    .footer .col:first-child {
        max-width: 23%;
    }
    .footer .col:nth-child(2), .footer .col:nth-child(3) {
        padding: 0 20px;
        max-width: 22%;
    }
    .footer .col:last-child {
        padding-left: 20px;
        max-width: 33%;
    }
    .team-wrapper, .four-col-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .two-col-wrap.equal-columns {
        flex-wrap: wrap;
    }
    .two-col-wrap.equal-columns >* {
        max-width: 100%;
    }
    .why-choose-inner {
        gap: 24px;
    }
    .top-icon {
        width: 70px;
        height: 70px;
    }
    .left-text-wrap {
        gap: 16px;
    }
    .five-col-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(min-width:768px) {
    .wide-col-sec .container {
    max-width: 1089px;
}
.two-col-wrap.small-image .image-col {
    max-width: 34.51%;
}
.two-col-wrap.small-image .content-col {
    max-width: 60%;
}
}
@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }
    h1, .h1 {
        font-size: 30px;
    }
    h2, .h2, .wide-col-wrap .right-content h2 {
        font-size: 26px;
    }
    h3, .h3 {
        font-size: 18px;
    }
    .heading-wrapper {
        margin: 0 0 26px;
    }
    section {
        padding: 40px 0;
    }
    .btn-wrap.flex {
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .container {
        padding-inline: 15px;
    }
    .header-inner .logo-wrap {
        max-width: 85px;
    }
    .main-nav {
        top: 67px;
        padding: 10px 15px 15px;
    }
    .header .btn {
        min-width: min-content;
        font-size: 14px;
    }
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .main-nav a {
        font-size: 14px;
    }
    .hero-sec {
        padding: 40px 0;
    }
    .program-img {
        height: 196px;
    }
    .program-wrapper, .four-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .program-icon {
        margin-bottom: 15px;
        width: 55px;
        height: 55px;
    }
    .program-text {
        padding: 0 10px 20px;
        margin-top: -28px;
    }
    .single-program:last-child {
        grid-column: 1/ 3;
    }
    .two-col-wrap >* {
        max-width: 100% !important;
    }
    .two-col-wrap {
        flex-wrap: wrap;
    }
    .mob-reverse {
        flex-direction: column-reverse;
    }
    .btn-wrap {
        margin-top: 30px;
    }
    .footer-inner >* {
        max-width: calc(100% / 3 - 15px) !important;
        border: none !important;
        padding: 0 !important;
    }
    .footer-inner {
        gap: 30px 20px;
        flex-wrap: wrap;
    }

    .footer .col:last-child {
        max-width: 100% !important;
    }
    footer .top-footer {
        padding: 30px 0;
    }
    .copyright {
        font-size: 13px;
    }
    .inner-banner {
        min-height: 170px;
    }
    .stat-icon {
        width: 60px;
        max-width: max-content;
    }
    .stat-icon img {
        object-fit: contain;
        width: 100%;
    }
    .stat-item {
        gap: 12px;
        font-size: 14px;
        padding: 0 20px;
    }
    .stat-item {
        max-width: calc(100% / 2 - 10px ) !important;
        padding: 0;
        border: none;
    }
    .stats-box {
        flex-wrap: wrap;
        gap: 40px 20px;
        padding: 30px 15px;
    }
    .stat-icon {
        width: 45px;
        max-width: 45px;
    }
    .circle-icon-box .icon {
        width: 60px;
        height: 60px;
    }
    .two-col-icon-list {
        gap: 25px 15px;
    }
    .team-wrapper, .four-col-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .three-col-wrap {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }
    .lession-text {
        padding: 20px 14px;
    }
    .why-choose-inner {
        grid-template-columns: repeat(2, 1fr);
        row-rule: 1px dashed var(--accent-yellow);
    }
    .single-box {
        padding-bottom: 20px;
    }
    .left-text-wrap {
        gap: 16px;
    }
    .ready-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .left-text-wrap {
        text-align: center;
    }
    .left-text-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    .image-icon {
        width: 100%;
    }
    .ready-row >* {
        width: 100%;
    }
    .five-col-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .wide-col-wrap.equal-columns {
        flex-wrap: wrap;
        gap: 30px;
        flex-direction: column-reverse;
    }
    .wide-col-wrap .left-image {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        max-width: calc(100% + 30px);
    }
    .wide-col-wrap .right-content {
        max-width: 100%;
        padding-bottom: 0;
    }
    .grid-images {
        grid-template-rows: repeat(2, 100px);
    }
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .faq-question {
        padding: 14px 17px;
        font-size: 15px;
    }
    .explore-more-sec .title {
        font-size: 18px;
        padding: 12px 8px;
    }
}
@media (max-width: 500px) {
    .icon-box-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .icon-box-wrap {
        border-right: none;
        border-bottom: 1px solid var(--accent-yellow);
        padding: 0 0 24px;
    }
    .icon-box-wrap:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    .footer-inner >* {
        max-width: 100% !important;
    }
    .two-col-icon-list {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }
    .circle-icon-box .icon {
        width: 50px;
        height: 50px;
    }
    .why-choose-inner {
        gap: 18px;
    }
    .top-icon {
        margin: 0 auto 14px;
    }
    .single-box {
        padding-bottom: 10px;
    }
    .five-col-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}
