.banner {
    background-image: url('../banner/banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; /* Fix incorrect value */
    width: 100%;
    height: auto;
    padding-bottom: 120px;
    padding-top: 120px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}
.mobile-banner {
    background-image: url('../banner/mobile-banner.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; /* Fix incorrect value */
    width: 100%;
    height: auto;

    padding-top: 30px;
    display: flex;

}

.head-title{

    font-size: 53px;
    font-weight: bold;
}
/* .head-mobile{

    font-size: 30px;
    font-weight: 900;
} */

.heading {
    font-weight: bold;
    font-size: 24px;
}
.highlight-text {
    color: #1e3a8a;
    font-weight: bold;
    font-size: 40px;
}
.section-title {
    font-weight: bold !important;
    font-size: 16px;
}

.icon-box {
    background-color: #C83F2C;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 20px;
}

.vertical-line {
    width: 20px;
    height: 100%; /* Ensures full height */
    background-color: #C83F2C; /* Color as per preference */
    position: relative;
}

.card-custom {
    border-radius: 26px !important;
    overflow: hidden;
    position: relative;
    color: #fff;
}
.card-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.card-overlay h5 {
    font-size: 1.5rem;
    font-weight: bold;
}
.btn-custom {
    background-color: #fff !important;
    color: #000;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    /* margin-top: 40px; */
}
.btn-custom:hover {
    background-color: #002F67 !important;
    color: #fff !important;
}

.event-card {
    background-color: #FFB6C1; /* Light pink background */
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.event-date {
    font-size: 2rem;
    font-weight: bold;
    color: #001F5F;
    text-align: center;
    line-height: 1;
}
.event-date span {
    font-size: 0.9rem;
    font-weight: normal;
    display: block;
    color: #001F5F;
    text-transform: uppercase;
}
.event-info {
    flex-grow: 1;
    margin-left: 15px;
}
.event-info h6 {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #001F5F;
    text-transform: uppercase;
}
.event-info h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #001F5F;
    margin: 5px 0 0;
}
.event-arrow {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-arrow i {
    font-size: 1.2rem;
    color: #001F5F;
}

.footer {
   background-image: url('../banner/footer-banner.png');
   background-position: center;
   /* background-size: cover; */
   background-repeat: none;
   /* object-fit: contain; */
   background-size:cover;
    color: #fff;
    /* padding: 40px 0; */
    /* position: relative; */
    padding: 50px 0px;
}
.footer-logo {
    max-width: 100%;
    margin-bottom: 20px;
}
.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 200;

}
.footer a:hover {
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 0.875rem;
}
.subscribe-box {
    background-color:transparent !important;
    border: none;
    color: #fff;
}
.subscribe-btn {
    background-color: #fff !important;
    color: #002654;
    font-weight: bold;
    border: none;
}
.footer-section {
    position: relative;
    overflow: hidden;
}
.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

p{
    text-align: justify !important;
}




