* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'RealHeadPro';
    src: url('/fonts/RealHeadPro-Semilight.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RealHeadPro';
    src: url('/fonts/RealHeadPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RealHeadPro';
    src: url('/fonts/RealHeadPro-Demibold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

header {
    background-color: #000;
    padding-top: 50px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dedede;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-wrapper ul {
    display: flex;
    gap: 25px;
}

.header-wrapper ul li a {
    color: #fff;
}

body {
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
}

h2,
h1 {
    font-family: 'RealHeadPro', Arial, sans-serif;
    font-weight: 400;
}

.banner-content h1 span {
    font-weight: 700;
}

.banner {
    background: url(assets/banner.jpeg) no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 0;
}

.banner .overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    background-color: #000000d2;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.banner-content {
    color: #fff;
    padding: 220px 0;
    z-index: 1;
}

.glass-effect {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.3);
}

.form-wrapper {
    padding: 30px;
}

input,
select {
    width: 100% !important;
}

.event_submit_override {
    width: 100%;
    border: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
}

#form_88245a87-a2b7-412a-84e3-919addb58de9 {
    width: 100% !important;
}

div.form_question {
    margin: 0px !important;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.stats {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid #a4804a9a;
}

.stat-box {
    border-right: 1px solid #a4804a9a;
    height: 150px;
    /* background: #fa3455; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    position: relative;
    color: #fff;
}

.stat-box.noborder {
    border: none;
}

.stat-box h4 {
    font-size: 48px;
    font-family: 'RealHeadPro', Arial, sans-serif;
    color: #A4804A;
}

.stat-box p {
    text-transform: uppercase;
    font-size: 16px;
}

.section-heading h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
}

.section-heading h2 span {
    font-weight: 700;
}

/* Card Styling */

.programs {
    padding-top: 50px;
}

.program-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    height: 460px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.program-card.two {
    /* height: 400px; */
}

.program-label {
    background: #c8102e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 3px;
}

.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    background: #eee;
    color: #666;
}

.program-card p {
    font-size: 13px;
    margin-top: 10px;
}

.program-card h6 {
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
    color: #A4804A;
}

.program-card ul {
    padding-left: 18px;
    font-size: 13px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 15px;
}

.program-card ul li {
    list-style: disc;
}

.program-footer {
    margin-top: 15px;
    font-size: 13px;

}

.apply-btn {
    border: 1px solid #000;
    padding: 5px 12px;
    font-size: 12px;
    float: right;
    background: transparent;
    width: fit-content;
    color: #000;
}

.apply-btn:hover {
    background: #000;
    color: #fff;
}

.ai-section {
    padding: 80px 0;
    background: url(assets/ai-bg.jpeg) no-repeat;
    background-position: center;
    background-size: cover;
}

.ai-title {
    text-align: center;
    margin-bottom: 50px;
}

.ai-title h2 {
    font-size: 48px;
    font-weight: 400;
}

.ai-title strong {
    font-weight: 700;
    position: relative;
}

.ai-title strong::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #e11d2e;
    display: block;
    margin: 10px auto 0;
}

/* Cards */
.ai-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
    display: flex;
}

.ai-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.brdr-btm {
    border-top: 1px solid #dedede;
}

.ai-card .text {
    flex: 1;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    background: #fde8ea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box i {
    color: #e11d2e;
    font-size: 28px;
}

/* Card Content */
.ai-card {
    display: flex;
    gap: 30px;
}

.ai-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #C8102E;
}

.ai-card p {
    font-size: 14px;
    color: #555;
}

/* Learn More */
.learn-more {
    color: #C8102E;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.learn-more:hover {
    text-decoration: underline;
}

.about-section {}

.about-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}



.about-subtitle {
    font-size: 28px;
    color: #555;
    margin-bottom: 10px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #c8102e;
    margin-bottom: 20px;
}

.style {
    background-color: #c8102e;
    color: white !important;
    width: 100%;
    border: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
}

.style:hover {
    background-color: #C8102E !important;
}

.form-check-input {
    width: 1em !important;
}

.form-row.bg-danger {
    background: #c8102e !important;
}

.about-content {
    margin-left: 30px;
}

.about-content p {
    width: 70%;
    font-size: 24px;
    margin-bottom: 15px;
}

@media (max-width:768px) {
    .about-image img {
        width: 100%;
        height: unset;
        object-fit: cover;
    }

    .about-content p {
        width: 100%;
    }

    .banner-content {
        padding: 80px 0;
    }
}

.exp-section {
    background-color: #f1f1f1;
}

.exp-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
}

.exp-title strong {
    font-weight: 800;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #c8102e;
    margin: 15px 0 20px;
}

.exp-content p {
    max-width: 420px;
    font-size: 24px;
}

/* Features */
.exp-features {
    /* border-left: 1px solid #ddd; */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item .icon {
    font-size: 20px;
    color: #c8102e;
    min-width: 30px;
}

.feature-item p {
    margin: 0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .exp-title {
        font-size: 28px;
    }

    .exp-features {
        border-left: none;
    }
}

.cta-footer {
    background: #000;
    color: #fff;
}

/* CTA */
.cta {}

.cta h2 {
    font-size: 36px;
    font-weight: 500;
}

.cta h2 strong {
    font-weight: 800;
}

.cta-buttons .btn {
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 0;
}

/* Footer */
.footer-main {
    background: #000;
}

.footer-main .container {
    border-bottom: 1px solid #ffffff79;
}

.footer-logo {
    font-size: 28px;
    font-weight: 600;
}

.footer-main p {
    color: #ccc;
    max-width: 300px;
}

.footer-main h6 {
    margin-bottom: 10px;
}

.highlight {
    color: #c8102e;
    font-weight: bold;
}

/* Menu */
.footer-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #fff;
}

/* Bottom */
.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

/* Divider */
hr {
    border-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 26px;
    }

    .footer-menu {
        justify-content: center;
    }
}

.copy-right {
    padding: 15px 0;
    text-align: center;
}

.copy-right a {
    color: #fff;
    /* text-decoration: underline; */
}

p.disclaimer{
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    color: #595959 !important;
}