/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
    font-family: "futura-bold";
    src: url("../fonts/Futura-Bold.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

body {
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    color: #5c5c77;
}

p,
.paragraph {
    font-weight: 400;
    color: #5c5c77;
    font-size: 15px;
    line-height: 1.9;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1e1e4b;
    font-family: "Montserrat";
    font-weight: 700;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 60px;
}

@media (max-width: 575px) {
    h1,
    .h1 {
        font-size: 45px;
    }
}

h2,
.h2 {
    font-size: 40px;
}

@media (max-width: 575px) {
    h2,
    .h2 {
        font-size: 30px;
    }
}

h3,
.h3 {
    font-size: 25px;
}

@media (max-width: 575px) {
    h3,
    .h3 {
        font-size: 20px;
    }
}

h4,
.h4 {
    font-size: 20px;
}

@media (max-width: 575px) {
    h4,
    .h4 {
        font-size: 18px;
    }
}

h5,
.h5 {
    font-size: 18px;
}

@media (max-width: 575px) {
    h5,
    .h5 {
        font-size: 16px;
    }
}

h6,
.h6 {
    font-size: 16px;
}

@media (max-width: 575px) {
    h6,
    .h6 {
        font-size: 14px;
    }
}

/* Button style */
.btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    border: 0;
    position: relative;
    z-index: 1;
    transition: 0.2s ease;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: transform 0.2s ease-in-out;
    transform-origin: top;
    transform: scaleY(0);
}

.btn:active,
.btn:hover,
.btn.focus,
.btn:focus,
.btn.active {
    outline: 0;
    box-shadow: none !important;
}

.btn:active::before,
.btn:hover::before,
.btn.focus::before,
.btn:focus::before,
.btn.active::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 35px;
}

.btn-xs {
    font-size: 12px;
    padding: 5px 15px;
}

.btn-primary {
    color: #fff;
    background-color: #ffab08;
}

.btn-primary::before {
    background-color: #fff;
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.active {
    color: #ffb600 !important;
    background-color: #ffab08 !important;
    border-color: #ffab08 !important;
}

.btn-outline-primary {
    color: #ffb600;
    background-color: transparent;
    border: 1px solid #ffb600;
}

.btn-outline-primary::before {
    background-color: #fff;
}

.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary.active {
    color: #ffb600 !important;
    background-color: #ffb600 !important;
    border-color: #ffb600 !important;
}

.btn-light {
    color: #ffb600;
    background-color: #fff;
    border: 1px solid #fff;
}

.btn-light::before {
    background-color: #ffb600;
}

.btn-light:active,
.btn-light:hover,
.btn-light.focus,
.btn-light:focus,
.btn-light.active {
    color: #fff !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: #ffcd6e;
    color: #fff;
}

::selection {
    background: #ffcd6e;
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #17381b;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    scroll-padding-top: 500px; /* Adjust to your header height */
}

ol,
ul {
    list-style-type: none;
    margin: 0px;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: #ffb600;
}

a.text-primary:hover {
    color: #ffb600 !important;
}

a.text-light:hover {
    color: #ffb600 !important;
}

h4 {
    transition: 0.2s ease;
}

a h4:hover {
    color: #ffb600;
}

.slick-slide {
    outline: 0;
}

.section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-title {
    margin-bottom: 30px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #ededf1 !important;
}

/* overlay */
.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgb(255, 255, 255);
    opacity: 0.8;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #ffb600 !important;
}

.bg-secondary {
    background: #be0002 !important;
}

.bg-gray {
    background: #f8f8f8;
}

.bg-green {
    background: #17381b;
}

.text-primary {
    color: #ffb600 !important;
}

.text-label {
    color: #17381b;
}

.text-color {
    color: #2c2c2c;
}

.text-color-footer {
    color: #e2dfdf;
}

.text-light {
    color: #8585a4 !important;
}

.text-lighten {
    color: #d6d6e0 !important;
}

.text-muted {
    color: #b5b5b7 !important;
}

.text-dark {
    color: #1e1e4b !important;
}

.text-green {
    color: #17381b !important;
}

.font-secondary {
    font-family: "futura-bold";
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pl-150 {
    padding-left: 150px;
}

.zindex-1 {
    z-index: 1;
}

@media (max-width: 991px) {
    .overflow-md-hidden {
        overflow: hidden;
    }
}

.vertical-align-middle {
    vertical-align: middle;
}

.icon-md {
    font-size: 36px;
}

/* page title */
.page-title-section {
    padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
    position: relative;
    padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    transform: translateY(-50%);
}

/* /page title */
.list-styled {
    padding-left: 25px;
}

.list-styled li {
    position: relative;
    margin-bottom: 15px;
}

.list-styled li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #ffb600;
    left: -25px;
    top: 5px;
}

textarea.form-control {
    height: 200px;
    padding: 20px;
}

#map_canvas {
    height: 500px;
}

.modal-backdrop {
    z-index: 1050 !important;
}

.modal {
    z-index: 1060 !important;
}

/* HEADER */
.top-header {
    font-size: 12px;
    font-weight: 600;
    min-height: 80px;
    position: relative; /* This allows it to scroll with the page */
    z-index: 998;
}

.header-logo {
    height: 100px;
    width: auto;
}
/* ENR HEADER */

/* NAVIAGTION */
.navigation {
    width: 100%;
    background: linear-gradient(to right, #17381b 100%, #17381b 100%);
    z-index: 1030;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    position: relative;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #ffffff !important;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

@media (min-width: 992px) {
    .sticky {
        background: #ffffff !important;
    }
}

@media (max-width: 991px) {
    .sticky {
        background: #17381b !important;
    }
}

@media (max-width: 991px) {
    .navigation {
        background: #17381b;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #17381b;
        max-height: calc(100vh - 80px);
    }

    .navbar-collapse.show {
        overflow-y: auto;
    }
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #17381b;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-left: 0;
        background: #17381b;
    }
}

.nav-bg {
    background-color: #17381b;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

@media (max-width: 991px) {
    .nav-item:last-child {
        margin-bottom: 20px;
    }
}

.nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 600;
}

.nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #f7ad2c;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    pointer-events: none;
}

@media (max-width: 991px) {
    .nav-item::before {
        opacity: 0.1;
        height: 100%;
    }
}

.nav-item:hover::before,
.nav-item.active::before {
    transform: scaleY(1);
    transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #f7ad2c;
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #f7ad2c;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 30px 0px;
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 12px 20px;
    }
}

.navbar .nav-item > .dropdown-toggle::after {
    border: 0;
    margin-left: 0.255em;
    vertical-align: 1px;
    content: "\e64b";
    font-family: "themify";
    font-size: 11px;
    width: auto;
}

.navbar .dropdown .dropdown-menu li {
    padding-top: 10px;
}

.navbar .dropdown .dropdown-menu li:last-child {
    padding-bottom: 15px;
}

.navbar .dropdown-item.dropdown.active > a {
    background-color: transparent;
    color: inherit;
}

.navbar .dropdown-menu li .dropdown-item.active {
    color: #ffb600;
    background-color: transparent;
    font-weight: bold;
}

.navbar .dropdown-item.dropdown {
    background-color: transparent;
    color: inherit;
}

.navbar .dropdown-item.dropdown:hover > a {
    color: #ffb600;
}

.navbar .dropdown-item.dropdown:hover > a {
    color: #ffb600;
}

.navbar .dropdown .dropdown-menu.dropdown-submenu {
    top: 0;
}

@media (max-width: 991px) {
    .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
        margin-top: 15px;
    }
}

.navbar .dropdown .dropdown-item .dropdown-toggle {
    display: block;
    line-height: 1.8;
}

.navigation .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: block;
}

.navbar .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid #ffb600;
    padding: 0 15px;
    padding-left: 5px;
    top: 96px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    background: #fff;
    z-index: 99999;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transform-origin: unset;
        margin: 0;
        border: 0;
        position: static;
    }
}

.navbar .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .navigation .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none;
        position: static;
        background-color: #17381b;
    }

    .navigation .dropdown-menu.show {
        display: block;
    }
}

.navbar .dropdown .dropdown .dropdown-toggle,
.navbar .dropdown-item {
    position: relative;
    color: #17381b;
    transition: 0.2s ease;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
    .navbar .dropdown .dropdown .dropdown-toggle,
    .navbar .dropdown-item {
        text-align: center;
        color: rgb(255, 255, 255);
    }
}

.navbar .dropdown .dropdown .dropdown-toggle:hover,
.navbar .dropdown-item:hover {
    color: #ffb600;
    background: transparent;
}

.nav-spacer {
    height: 0;
    width: 100%;
}

/* END NAVIAGTION */

/* CAROUSEL - FIXED FOR ALL ZOOM LEVELS */
.hero-section {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider-item {
    width: 100%;
    height: 100%;
    position: relative; /* Essential for dot positioning */
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* SLICK CONTROLS - ZOOM-PROOF */
/* Arrows */
.prevArrow,
.nextArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(23, 56, 27, 0.6);
    color: #fff;
    border: none;
    z-index: 100;
    padding: 12px 16px;
    cursor: pointer;
    font-size: clamp(18px, 1.5vw, 24px); /* Responsive font size */
    border-radius: 0;
    transition: all 0.3s ease;
}

.prevArrow {
    left: clamp(10px, 2vw, 30px); /* Responsive positioning */
}

.nextArrow {
    right: clamp(10px, 2vw, 30px); /* Responsive positioning */
}

/* Dots - Zoom-proof positioning */
.slick-dots {
    position: absolute;
    bottom: clamp(10px, 2vh, 30px); /* Responsive bottom spacing */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 50;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 clamp(3px, 0.5vw, 6px); /* Responsive spacing */
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: clamp(8px, 1vw, 12px); /* Responsive dot size */
    height: clamp(8px, 1vw, 12px); /* Responsive dot size */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #ffb600;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

/* Tablet */
@media (max-width: 992px) {
    .hero-section {
        height: 450px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-section {
        height: auto;
        min-height: 300px;
    }
    .hero-slider,
    .hero-slider-item {
        height: auto;
    }
    .image-container {
        height: 300px !important;
    }

    /* Mobile-specific controls */
    .prevArrow,
    .nextArrow {
        font-size: 20px;
        padding: 10px 14px;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}

/* Hide/show controls */
.hero-section .prevArrow,
.hero-section .nextArrow,
.hero-section .slick-dots {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hero-section:hover .prevArrow,
.hero-section:hover .nextArrow,
.hero-section:hover .slick-dots {
    opacity: 1;
    visibility: visible;
}

/* FEATURE BLOCKS */
.feature-icon {
    font-size: 50px;
    color: #ffb600;
    display: inline-block;
}

.feature-blocks {
    margin-top: -100px;
    padding-left: 70px;
    padding-top: 80px;
    padding-right: 5%;
    margin-bottom: -100px;
}

@media (max-width: 1400px) {
    .feature-blocks {
        padding-right: 10%;
    }
}

@media (max-width: 1200px) {
    .feature-blocks {
        padding-right: 50px;
        padding-left: 50px;
        padding-top: 50px;
    }
    .feature-blocks h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .feature-blocks {
        margin-top: 60px;
        padding: 50px;
    }
    .feature-blocks h3 {
        font-size: 25px;
    }
}
/* END CAROUSEL */

/* /banner feature */
/* course */
.card-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Set the number of lines before truncating */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 120px; /* Adjust this value to your preference */
}

.flex-basis-33 {
    flex-basis: 33.3333%;
}

.hover-shadow {
    transition: 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
    min-height: 300px;
}

.success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .success-video .play-btn {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.play-btn {
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #ffb600;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.play-btn i {
    line-height: 80px;
}

.play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: 0.3s ease;
    transition-delay: 0.2s;
}

.play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    transform: translate(-50%, -50%);
    background: #ffb600;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: 0.3s ease;
}

.play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s;
}

.play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
    position: absolute;
    background: #ffb600;
    font-family: "futura-bold";
    text-align: center;
    padding: 10px;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}

.card-date span {
    font-size: 40px;
}

.card-event {
    background: #ffb600;
    font-family: "futura-bold";
    text-align: center;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}

.card-event span {
    font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
    width: 70%;
    bottom: 0;
    right: 0;
}

/* /teacher */
/* footer */
.newsletter {
    background-image: linear-gradient(to right, transparent 50%, #ffb600 50%);
    margin-bottom: -170px;
    position: relative;
    z-index: 1;
}

.newsletter-block {
    padding-left: 50px;
}

@media (max-width: 575px) {
    .newsletter-block {
        padding-left: 15px;
    }
}

.input-wrapper {
    position: relative;
}

.input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.form-control {
    height: 60px;
    background: #fff;
    border-radius: 0;
    padding-left: 25px;
}

.form-control:focus {
    border-color: #ffb600;
    box-shadow: none;
}

.newsletter-block .form-control {
    height: 90px;
}

.bg-footer {
    background-color: #17381b;
}

.logo-footer {
    margin-top: -20px;
    display: inline-block;
}

.footer {
    border-color: #494a43 !important;
}

/* /footer */
.filter-controls li {
    cursor: pointer;
    transition: 0.1s ease;
}

.filter-controls li.active {
    font-weight: 600;
    color: #ffb600;
}

.filter-controls li:hover {
    color: #ffb600;
}
/* Location Section Styling */
#location-section-unique {
    background: linear-gradient(
        100deg,
        rgb(255, 255, 255) 100%,
        rgb(255, 255, 255) 100%
    );
    padding: 60px 0;
}

/* Title Styling */
#location-section-unique .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

#location-section-unique .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ffb600;
    display: block;
    margin: 8px auto;
    border-radius: 4px;
}

/* Subtitle Styling */
#location-section-unique .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Map Styling */
#location-section-unique .map-container {
    max-width: 1200px;
    width: 100%;
    max-height: 600px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    #location-section-unique .section-title {
        font-size: 2rem;
    }

    #location-section-unique .section-subtitle {
        font-size: 1rem;
    }
}

/* Ensure All News Cards Have the Same Height */
#news-section-unique .news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#news-section-unique .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

#news-section-unique .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ffb600;
    display: block;
    margin: 8px auto;
    border-radius: 4px;
}

#news-section-unique .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
#news-section-unique .news-card img {
    height: 250px;
    object-fit: cover;
}

/* Make Sure the Card Body Stretches to Fill the Available Space */
#news-section-unique .news-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Ensure "Read More" Button Stays at the Bottom */
#news-section-unique .news-card .btn {
    align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
    #news-section-unique .section-title {
        font-size: 2rem;
    }

    #news-section-unique .news-card img {
        height: 200px;
    }
}

/* event-banners */
.event-horizontal-card {
    display: flex;
    max-width: 600px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    margin: 30px auto;
    font-family: "Arial", sans-serif;
}

.event-horizontal-date {
    background: #f7a600;
    color: white;
    text-align: center;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
}

.event-horizontal-date .day {
    font-size: 36px;
    line-height: 1;
}

.event-horizontal-date .month {
    font-size: 18px;
    letter-spacing: 1px;
}

.event-horizontal-body {
    background: #fff;
    padding: 15px 20px;
    flex-grow: 1;
    border-left: 1px solid #ddd;
}

.event-horizontal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.event-horizontal-desc {
    color: gray;
}

.event-horizontal-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

.event-poster-card {
    max-width: 500px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin: 30px auto;
    font-family: "Arial", sans-serif;
}

.event-poster-header {
    position: relative;
}

.event-poster-header img {
    width: 100%;
    height: auto;
}

.event-poster-banner {
    position: absolute;
    top: 10px;
    left: 0;
    background: #c2185b;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

.event-poster-content {
    background: #f9f9f9;
    text-align: center;
}

.event-poster-content {
    color: #17381b;
    font-weight: bold;
    text-transform: uppercase;
}

.event-poster-content .date {
    font-style: italic;
    margin-top: 10px;
    color: #333;
}

.event-poster-footer {
    display: flex;
    align-items: stretch;
    background: #fff;
}

.event-poster-date-box {
    background: #f7a600;
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-poster-date-box .day {
    font-size: 30px;
    line-height: 1;
}

.event-poster-date-box .month {
    font-size: 18px;
}

.event-poster-description {
    padding: 10px;
    font-size: 14px;
    text-align: center;
    align-items: start;
}

.event-poster-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-poster-card:hover {
    transform: scale(1.02);
    box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.3);
}

/* FACEBOOK POST */
#facebook-section-unique .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

#facebook-section-unique .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ffb600;
    display: block;
    margin: 8px auto;
    border-radius: 4px;
}

/* END FACEBOOK POST */

/* ACADEMICS */

/* Wrapper to center the card */
#academics-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

/* Base style */
#academics.card {
    position: relative;
    width: 500px;
    height: 450px;
    background-color: #f2f2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 0 0 5px #ffffff80;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-direction: column;
    text-align: center;
}

#academics.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image wrapper */
.learn-more-btn:hover {
    background-color: #17381b;
}

.custom-color-green-white {
    background-color: #17381b;
    color: #ffffff;
}

.square-card img {
    top: 0;
    left: 0;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Flip effect */
#academics .card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#academics.card:hover .card__content {
    transform: rotateX(0deg);
}

/* Hide image on hover */
#academics.card:hover .square-card {
    transform: scale(0);
}

/* Title */
#academics .card__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #17381b;
    z-index: 2;
}

/* Description */
#academics .card__description {
    margin: 15px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    text-align: center;
}

/* Button */
.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #17381b;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #17381b;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    #academics.card {
        width: 90%;
        height: auto;
        padding: 20px;
    }

    #academics .card__title {
        font-size: 20px;
    }

    #academics .card__description {
        font-size: 15px;
    }

    .square-card {
        padding-top: 100%; /* 1:1 aspect ratio */
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 480px) {
    #academics.card {
        width: 100%;
        height: auto;
    }

    .square-card {
        width: 80px;
        height: 80px;
    }

    #academics .card__title {
        font-size: 18px;
    }

    #academics .card__description {
        font-size: 14px;
    }
}

/* END ACADEMICS */

.fb-post iframe {
    width: 100% !important;
    max-width: 100% !important;
}

/*# sourceMappingURL=style.css.map */
