@font-face {
    font-family: 'Jost';
    src: url('../fonts/Jost-VariableFont_wght.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-VariableFont_wght.ttf') format('woff2');
    font-weight: 700;
    font-display: swap;
}

:root {
    --body-bg: #fff;
    --white-bg: #fff;
    --section-bg: #efefff;
    --primary-bg: linear-gradient(to left, #76009c, #3630ff);
    --headding-bg: #020842;

    --body-color: #5f5f62;
    --primary-color: rgb(54, 48, 255);
    --secondary-color: #10393b;
    --headding-color: #020842;
    --white-color: #fff;
    --border-color: #f0f0f0;
    --ct-border-color: #e2e8f0;
    --ct-border-color2: #e1e1e1;
    --ct-border-color3: #E8E8E8;

    --no-change-color1: #020842;
    --headding-font: "Jost", sans-serif;
    --icon-color: #ce2029;
}

[data-bs-theme="dark"] {
    --body-bg: #072032;
    --white-bg: #072032;
    --section-bg: #10293a;
    --primary-bg: linear-gradient(to left, #76009c, #3630ff);
    --headding-bg: #020842;

    --body-color: #9ba0a3;
    --primary-color: rgb(54, 48, 255);
    --secondary-color: #10393b;
    --headding-color: #fff;
    --white-color: #fff;
    --border-color: #f0f0f021;
    --ct-border-color: #e2e8f014;
    --ct-border-color2: #e1e1e11f;
    --ct-border-color3: #ececec30;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--body-color);
    /* font-family: var(--body-font); */
    font-family: 'Raleway';
    font-weight: 400;
    background-color: var(--body-bg);
}

body.modal-open {
    overflow: hidden;
}

a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

*::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headding-color);
    font-weight: 700;
    font-family: var(--headding-font);
}

a {
    text-decoration: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

button:focus {
    outline: none;
}

input:focus {
    outline: none;
}

textarea:focus {
    outline: none;
}

p {
    color: var(--body-color);
    line-height: 26px;
    font-size: 16px;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

li {
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

/* 
.header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
} */

.logo {
    text-align: center;
}

.logo img {
    width: 250px;
}

.header .logo img.sticky-logo {
    display: none;
}

.mobile-logo {
    margin-bottom: 30px;
    text-align: center;
}


.header.sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}


.header.sticky-header.sticky .logo img {
    display: none;
}

/* 
.header.sticky-header.sticky .logo img.sticky-logo {
    display: block;
    margin: 0px auto;
    text-align: center;
    width: 80px;
} */

.sticky-logo-bar {
    display: none;
}

.header.sticky-header.sticky .sticky-logo-bar {
    display: block;
}






/* Accordion base styles */
.custom-accordion {
    border-top: 1px solid #ccc;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    cursor: pointer;
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    position: relative;
}

.accordion-icon::before {
    content: '+';
    font-size: 20px;
    color: #334155;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon::before {
    content: '–';
}

.accordion-content {
    display: none;
    padding: 15px 20px;
    background: #fff;
    color: #334155;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Extras */
.section-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.btn-download {
    display: inline-block;
    margin-bottom: 20px;
    background: #18405B;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
}

.view-all-link {
    margin-top: 20px;
}

.view-all-link a {
    text-decoration: underline;
    color: #18405B;
}




.admission-section {
    background: #f9fafb;
    padding: 60px 20px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
}

.admission-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.step-item {
    flex: 1 1 calc(50% - 30px);
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #18405B;
    margin-bottom: 10px;
}

.step-title {
    font-size: 22px;
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: #475569;
}

.site-footer {
    background-color: #0f172a;
    /* Slate 900 */
    color: #e5e7eb;
    /* Slate 200 */
    font-size: 15px;
}

.site-footer a {
    color: #facc15;
    /* Amber 400 - for links */
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
    color: #fbbf24;
    /* Amber 300 on hover */
}

.site-footer h2,
.site-footer h4 {
    color: #ffffff;
}

.site-footer .btn-primary {
    background-color: #2563eb;
    /* Blue 600 */
    border-color: #2563eb;
}

.site-footer .btn-primary:hover {
    background-color: #1d4ed8;
    /* Blue 700 */
}

.site-footer .footer-bottom {
    background-color: #1e293b;
    /* Slightly lighter footer base */
    padding: 1rem 0;
    color: #cbd5e1;
    /* Slate 300 */
    font-size: 14px;
}


.footer-bottom {
    background-color: #020842;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.whatsapp-icon {
    position: fixed;
    bottom: 55px;
    right: 10px;
    z-index: 9999;
}

.whatsapp-icon img {
    width: 60px;
    transition: transform 0.3s;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}


/* Scroll Area */
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.scroll-area svg {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    padding: 5px;
}

.scroll-area svg:hover {
    background-color: var(--primary-color-dark, #b91d23);
    /* optional hover shade */
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.country-code {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    padding: 6px;
    border-right: 1px solid #ccc;
    cursor: pointer;
}

.country-flag {
    width: 25px;
    height: 15px;
    margin-right: 5px;
}

.phone-input-container input {
    flex: 1;
    padding: 6px;
    font-size: 16px;
    border: none;
    outline: none;
}

.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
}

.dropdown-item {
    display: flex;
    align-items: center;
}

.dropdown-item img {
    width: 25px;
    height: 15px;
    margin-right: 10px;
}

/* 
.call-buton {
    display: none;
} */

.call-buton .callto-action-btn {
    z-index: 99999;
    position: fixed;
    right: 20PX;
    bottom: 120PX;
    background: #020842;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: callto-action-btn 0.6s linear infinite;
    animation: callto-action-btn 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline-block;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    text-decoration: none;
    text-align: center;
    align-content: center;
}

.call-buton .callto-action-btn i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 25px;
    line-height: 40px;
}

.call-buton .callto-action-btn:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes callto-action-btn {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
    }
}

@keyframes callto-action-btn {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 0 rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
        box-shadow: 0 4px 10px rgba(2, 8, 66, 0.2), 0 0 0 5px rgba(2, 8, 66, 0.2), 0 0 0 10px rgba(2, 8, 66, 0.2), 0 0 0 20px rgba(2, 8, 66, 0);
    }
}




.brochuremodal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 100px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 400px;
}

.close {
    color: #aaa;
    text-align: end;
    font-size: 28px;
    font-weight: bold;
}

.hidden {
    display: none;
}

.modal-content p {
    font-weight: 400;
    font-size: 16px;
    color: #4A5355;
    text-align: justify;
}

.form-style-submit input {
    border: 1px solid #d1d1d1;
    font-size: 16px;
    font-size: 14px;
    margin-bottom: 5px;
    height: 50px;
    padding-right: 20px;
    --body-color: #333333;
    transition: all ease 0.4s;
    border-radius: 10px;
    width: 100%;
    padding: 0px 5px 0px 13px;
    margin: 10px 0px;
}

.course__btnenroll {
    color: #fff;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    background: #ce2029;
    display: block;
    width: 100%;
    border: 0;
    padding: 15px;
    margin-bottom: 20px;
}

.cheked_icon {
    text-align: center;
    font-size: 60px;
    color: #08cd65;
}

.back_btn {
    text-align: center;
    margin: 0px auto;
}


.thanks-icon {
    font-size: 80px;
    color: #28a745;
}

.main-message h1 {
    font-size: 42px;
    font-weight: 800;
    color: #172952;
}

.main-message p {
    font-size: 18px;
    color: #333;
}

.cta-buttons .btn {
    padding: 12px 24px;
    border-radius: 50px;
}

.ribbon-badge {
    display: inline-flex;
    align-items: center;
    background-color: #0a8a76;
    color: #fff;
    padding: 6px 12px 6px 10px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    border-radius: 4px 0 0 4px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);

}

.ribbon-badge i,
.ribbon-badge svg {
    margin-right: 8px;
    font-size: 14px;
    vertical-align: middle;
}

.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top-width: 5px !important;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.course-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
}

/* Default (inactive) indicator color */
.carousel-indicators [data-bs-target] {
    background-color: #0d6efd;
    margin: 0 6px;
    opacity: 1;
    transition: background-color 0.3s;
}

/* Active indicator color */
.carousel-indicators .active {
    background-color: #ffc107;
    /* red or any highlight color */
}

.nav-item {
    font-size: 15px;
}

.logo-strip-section {
    overflow: hidden;
    background: #f8f9fa;
    padding: 20px 0;
    position: relative;
}

.logo-slider-track {
    display: flex;
    gap: 40px;
    animation: scroll-left 10s linear infinite;
}

.logo-slider-inner {
    display: flex;
    gap: 40px;
}

.logo-wrapper {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-wrapper img:hover {
    filter: grayscale(0%);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}