/* Font Faces */
@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish/Mulish-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

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

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

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

@font-face {
  font-family: 'Mulish';
  src: url('fonts/Mulish/Mulish-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

/* CSS Variables */
:root {
  --bs-font-sans-serif: "Mulish", sans-serif;
  --bs-navbar-color: #2A5D91;
  --bs-secondary: #3c70a3;
  --bs-light: #EEF8FF;
  --bs-gold: #E0B65D;
}

/* Global Styles */
p {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    color: var(--bs-dark);
}

/* Global Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, var(--bs-secondary) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    background-color: var(--bs-primary);
    transition: all 0.4s ease;
    color: white;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 450;
    font-family: "Mulish", sans-serif;
}

.btn:hover {
    background-position: left bottom;
    color: white; 
    border: none;
}

/* =============================================================================
   NAVBAR STYLES - NEW SMOOTH TRANSFORMATION
   ============================================================================= */

.navbar {
    height: 112px;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.navbar.navbar-scrolled {
    height: 88px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed !important;
}

.navbar .logo {
    height: 72px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar-scrolled .logo {
    height: 64px;
}

.navbar-container {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.navbar-scrolled .navbar-container {
    margin-top: 0px !important;
}

.navbar .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
}

.services-dropdown .dropdown-item {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
}

.languages-dropdown .dropdown-item {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
}

.navbar-cta-container {
    border-radius: 0.3rem;
}

.navbar-offcanvas-menu {
    width: 100% !important;
}

.navbar-offcanvas-menu .search-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.navbar-offcanvas-menu .btn-close::before {
    border-radius: 0;
    height: 51px;
    width: 51px;
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
    background-color: var(--bs-primary);
    color: #fff;
}

.navbar-offcanvas-menu .accordion-item {
    border-bottom: 1px solid #eee;
}

.navbar-offcanvas-menu .accordion-wrapper .card-header button {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
}

.navbar-offcanvas-menu .accordion-wrapper .card-header .collapsed {
    color: var(--bs-primary);
}

.navbar-offcanvas-menu .accordion-wrapper .card-header button:before {
    left: unset;
    right: 1.3rem;
    margin-top: 0rem;
    font-size: 1.3rem;
}

.navbar-offcanvas-menu .accordion-wrapper .accordion-collapse .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    color: var(--bs-dark);
}

.navbar-offcanvas-menu .accordion-wrapper .accordion-collapse .nav-link:hover {
    color: var(--bs-primary);
}

.navbar-offcanvas-menu .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    color: var(--bs-primary);
}

/* =============================================================================
   BANNER SECTION
   ============================================================================= */

.banners-section .swiper-container .swiper-slide {
    height: 100vh !important;
}

.banners-section .swiper-container .swiper-controls .swiper-pagination {
    bottom: 1.8rem;    
} 

.banners-section .swiper-container .bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 1s ease;
}

.banners-section .swiper-container .bg-overlay:hover::before {
    opacity: 0.5;
}

.banners-section .banner-video,
.banners-section .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banners-section .banner-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banners-section h1,
.banners-section h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    color: #ffffff;
    padding: 0px 0 0px 40px;
    margin: 0;
    text-transform: uppercase;
    border-left: 10px solid var(--bs-primary);
    margin-bottom: 30px;
}

.banners-section .btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.4s ease;
    color: white;
    border: 2px solid white;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 450;
    font-family: "Mulish", sans-serif;
}

.banners-section .btn:hover {
    background-position: left bottom;
    color: black;
    border-color: white;
}

.banners-section .btn i {
    font-size: 20px;
}

/* =============================================================================
   WELCOME SECTION
   ============================================================================= */

.welcome-section {
    background-color: var(--bs-light);
}

.welcome-section h2 {
    font-size: 25px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
}

.welcome-section .shape {
    background-color: var(--bs-primary);
    position: absolute;
    width: 80%;
    height: 420px;
    left: -124px;
    top: 50px;
}

.welcome-section img {
    width: 90%;
}

.welcome-section .btn {
    background: var(--bs-primary);
    color: white;
    border: 1px solid var(--bs-primary);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 450;
    font-family: "Mulish", sans-serif;
    transition: border-color 0.4s ease;
}

.welcome-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bs-secondary);
    transition: left 0.4s ease; 
    z-index: 1;
}

.welcome-section .btn:hover::before {
    left: 0; 
}

.welcome-section .btn:hover {
    border-color: var(--bs-secondary);
    color: #fff;
}

.welcome-section .btn span,
.welcome-section .btn i {
    position: relative;
    z-index: 2;
}

.welcome-section .btn i {
    font-size: 20px;
}

/* =============================================================================
   DIVIDER SECTION
   ============================================================================= */

.divider-section {
    background-color: var(--bs-light);
}

.divider-section .divider-line {
    display: block;
    width: 4px;
    height: 72px;
    background-color: var(--bs-gold);
    margin: 0 auto 30px auto;
    padding: 0;
}

.divider-section .logo {
    height: 112px;
}

.page-content-section .divider-section {
    background-color: var(--bg-white);
}

.page-content-section .divider-line {
    height: 2px;
    width: 100%;
    margin: 8px auto;
    background-color: var(--bs-gold);
}

.page-content-section .divider-section .logo {
    height: 100%;
    width: 60%;
    object-fit: contain;
}
/* =============================================================================
   GRADES SECTION
   ============================================================================= */

.grades-section {
    background-color: var(--bs-light);
}

.grades-section h2 {
    font-size: 25px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
}

.grades-section .grade-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.grades-section .swiper .swiper-wrapper {
    height: 400px;
}

.grades-section p {
    color: #FFF;
    font-weight: 420;
    line-height: 33px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 18px;
}

.grades-section h3 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 450;
    line-height: 33px;
    text-transform: uppercase;
    margin-bottom: 20px;    
}

.grades-section .btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.4s ease;
    color: white;
    border: 1px solid white;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 450;
    font-family: "Mulish", sans-serif;
    width: 100%;
}

.grades-section .btn:hover {
    background-position: left bottom;
    color: black;
    border-color: white;
}

.grades-section .btn i {
    font-size: 20px;
}

.grades-section .swiper-container .bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.75s ease;
}

.grades-section .swiper-container .bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent -30%, rgba(42, 93, 145, 0.75) 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.75s ease;
}

.grades-section .swiper-container .bg-overlay:hover::before {
    opacity: 0;
}

.grades-section .swiper-container .bg-overlay:hover::after {
    opacity: 1; 
}

/* =============================================================================
   FACTS SECTION
   ============================================================================= */

.facts-section {
    position: relative;
    background-image: url('../img/facts-background.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.facts-section::before {
    content: "";
    position: absolute;
    inset: 0; 
    background: rgba(54, 73, 118, 0.9);
    z-index: 1;
}

.facts-section > * {
    position: relative;
    z-index: 2;
}

.facts-section .facts-content-container h3 {
    font-size: 40px;
    line-height: 45px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.facts-section .facts-content-container p {
    font-weight: 300;
}

.facts-section .facts-content-container .btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, transparent 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;  
    transition: all 0.4s ease;
    color: var(--bs-primary); 
    border: 1px solid white;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 450;
    font-family: "Mulish", sans-serif;
}

.facts-section .facts-content-container .btn:hover {
    background-position: left bottom;
    color: white; 
    border-color: white;
}

.facts-section .facts-content-container .btn i {
    font-size: 20px;
}

.facts-section .facts-numbers-container .icon {
    min-width: 85px;
    height: 85px;
}

.facts-section .facts-numbers-container .counter {
    color: #FFF;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 70px;
}

.facts-section .facts-numbers-container p {
    color: #FFF;
    font-size: 17px;
    font-weight: 300;
    line-height: 30px;
}

/* =============================================================================
   EVENTS SECTION
   ============================================================================= */

.events-section {
    background-color: var(--bs-light);
}

.events-section h2 {
    font-size: 25px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
}

.events-section .swiper-container .swiper-slide {
    background-color: #fff;
}

.events-section .swiper-container .swiper-slide figure {
    height: 250px;
}

.events-section .swiper-container .swiper-slide figure img {
    height: 100% !important;
    object-fit: cover;
}

.events-section .swiper-container .swiper-slide h3 a {
    color: var(--bs-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
    text-transform: uppercase;
}

.events-section .swiper-container .swiper-slide .arrow {
    font-size: 36px;
    color: var(--bs-primary);
    display: inline-block;
    rotate: 0;
}

/* =============================================================================
   ALBUMS SECTION
   ============================================================================= */

.albums-section {
    position: relative;
    overflow: visible; 
}

.albums-section h2 {
    font-size: 25px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
}

.albums-section .swiper-container .swiper-slide figure {
    height: 350px;
}

.albums-section .swiper-container .swiper-slide figure img {
    height: 100% !important;
    object-fit: cover;
}

.albums-section::before {
    content: "";
    display: block;
    background: url(../img/hash.png) no-repeat;
    width: 350px;
    height: 450px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-40%);
    z-index: -1;
    background-size: 100%;
    background-position: right;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

footer {
    background: linear-gradient(180deg, #C6E6FD 0%, rgba(198, 230, 253, 0.00) 50.05%);
}

footer .logo {
    height: 80px;
}

footer .widget {
    height: 100%;
    border-right: unset;
}

footer .program a {
    color: var(--bs-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

footer .program a:hover {
    color: var(--bs-secondary);
}

footer .widget-title {
    color: var(--bs-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

footer .widget p {
    color: var(--bs-primary);
    margin: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
} 

footer .nav-item a {
    color: var(--bs-primary);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

footer .nav-item a:hover {
    color: var(--bs-secondary);
}

footer .copyright p {
    color: var(--bs-primary);
    margin: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

/* =============================================================================
   PAGE COMPONENTS
   ============================================================================= */

.page-menu-section {
    background-color: var(--bs-light);
}

.page-menu-section .nav-link {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.page-menu-section .nav-link:hover {
    color: var(--bs-secondary);
}

.page-menu-section .nav-link.active {
    color: var(--bs-danger);
}

.page-content-section h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 42px;
    color: var(--bs-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-content-section h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 42px;
    color: var(--bs-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-content-section img {
    max-width: 100%;
}

/* =============================================================================
   STEP INDICATOR
   ============================================================================= */

.step-indicator .step {
    position: relative;
    background: #e9ecef;
    color: #6c757d;
    padding: 12px 20px;
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    display: none; 
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 6px;
    min-width: auto;
}

.step-indicator .step.active {
    display: flex;
    background: var(--bs-secondary);
    color: white;
    font-weight: 600;
}

.step-indicator .step.completed {
    background: var(--bs-primary);
    color: white;
}

.step-indicator .step-number {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 8px;
    line-height: 24px;
    font-size: 12px;
    font-weight: bold;
}

.step-indicator .step:not(.active):not(.completed) .step-number {
    background: rgba(108, 117, 125, 0.2);
}

.step-indicator .step-counter-mobile {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--bs-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* =============================================================================
   VISIT SERVICE COMPONENTS
   ============================================================================= */

.visit-service-container figure {
    height: 350px;
}

.visit-service-container img {
    height: 100% !important;
    object-fit: cover;
}

.visit-service-container h2 {
    font-size: 22px;
}

.visit-service-container .visitor-counter {
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: white;
    height: 48px;
    width: 120px;
    border: 1px solid var(--bs-gray-300);
}

.visit-service-container .visitor-icon {
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
}

.visit-service-container .counter-controls {
    display: flex;
    flex: 1;
}

.visit-service-container .counter-input {
    border: none;
    text-align: center;
    font-weight: 600;
    width: 50px;
    background: transparent;
}

.visit-service-container .counter-buttons {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #dee2e6;
}

.visit-service-container .counter-btn {
    border: 1px solid var(--bs-gray-300);
    background: #f8f9fa;
    width: 24px;
    height: 24px;
    font-size: 10px;
    cursor: pointer;
}

.visit-service-container .counter-btn:hover {
    background: #e9ecef;
}

.visit-service-container .counter-controls .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, var(--bs-primary) 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;  
    transition: all 0.4s ease;
    color: var(--bs-dark); 
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 450;
    border: 1px solid var(--bs-gray-300);
}

.visit-service-container .counter-controls .btn:hover {
    background-position: left bottom;
    color: white; 
    transform: unset;
}

/* Calendar Events */
.visit-service-container .fc-event.available-slot {
    background-color: #198754 !important;
    border-color: #198754 !important;
    cursor: pointer;
}

.visit-service-container .fc-event.available-slot:hover {
    background-color: #157347 !important;
    border-color: #146c43 !important;
}

.visit-service-container .fc-event.insufficient-capacity-slot {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.visit-service-container .fc-event.insufficient-capacity-slot:hover {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
}

.visit-service-container .fc-event.fully-booked-slot {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.visit-service-container .fc-event.fully-booked-slot:hover {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

/* Time Slot Legend */
.visit-service-container .time-slot-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.visit-service-container .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.visit-service-container .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.visit-service-container .legend-available {
    background-color: #198754;
}

.visit-service-container .legend-insufficient {
    background-color: #fd7e14;
}

.visit-service-container .legend-fully-booked {
    background-color: #dc3545;
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

.truncate-3-lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.active {
    color: var(--bs-primary);
}

/* =============================================================================
   ARTICLES & CONTENT
   ============================================================================= */

.articles-container figure {
    height: 350px;
}

.articles-container img {
    height: 100% !important;
    object-fit: cover;
}

.articles-container h2 {
    font-size: 22px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--bs-primary);
}

.articles-container h2 a {
    color: var(--bs-primary);
}

.articles-container h2 a:hover {
    color: var(--bs-secondary);
}

.sidebar .widget-title {
    font-size: 22px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--bs-primary);
}

.popular-articles-container figure {
    height: 85px;
}

.popular-articles-container img {
    height: 100% !important;
    object-fit: cover;
}

/* =============================================================================
   CALENDAR & FORM COMPONENTS
   ============================================================================= */

.fc-daygrid-event {  
    cursor: pointer;
    background-color: #2A5D91;
    color: #fff;
}

.fc-daygrid-event:hover {  
    background-color: #2A5D91;
}

.iti {
    width: 100%;
    display: flex;
}

.iti__flag-container {
    position: relative;
}

.iti__selected-flag {
    width: 64px !important;
    background-color: #fefefe;
    border: 1px solid rgba(8, 60, 130, 0.07);
    justify-content: center;
}

#phoneInput {
    padding: 0.6rem 1rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 1px solid rgba(8, 60, 130, 0.07)
}

.input-group .input-group-text {
    width: 64px !important;
    justify-content: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: 0.4rem;
}

.iti--inline-dropdown .iti__dropdown-content {
    z-index: 9999;
}

/* =============================================================================
   JOBS SECTION
   ============================================================================= */

.jobs-container h2 {
    font-size: 22px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--bs-primary);
}

.jobs-container h2 a {
    color: var(--bs-primary);
}

.jobs-container h2 a:hover {
    color: var(--bs-secondary);
}

.jobs-container .repeatable-section {
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.jobs-container .remove-section {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
}

.jobs-container .add-section-btn {
    border: 2px dashed #2A5D91;
    background: transparent;
    color: #2A5D91;
    padding: 1rem;
    border-radius: 0.375rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.jobs-container .add-section-btn:hover {
    background: rgba(13, 110, 253, 0.1);
}

.jobs-container .skills-container {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.75rem;
    min-height: 100px;
}

.jobs-container .skill-tag {
    display: inline-block;
    background: #2A5D91;
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    margin: 0.25rem;
}

.jobs-container .skill-tag .remove-skill {
    margin-left: 0.5rem;
    cursor: pointer;
}

.jobs-container .step-indicator .step {
    padding: 12px 16px;
    font-size: 12px;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (min-width: 768px) {
    .navbar-cta-container {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 0.3rem;
        border-bottom-right-radius: 0.3rem;
    }
        
    .navbar-offcanvas-menu {
        width: 420px !important;
    }
    
    .welcome-section .shape {
        height: 500px;
    }
}

@media (min-width: 992px) {
    p {
        font-size: 18px;
        line-height: 30px;
    }

    .navbar .logo {
        height: 88px;
    }

    .navbar.navbar-scrolled .logo {
        height: 72px;
    }
    
    .navbar-container {
        margin-top: 40px;
    }
    
    .navbar.navbar-scrolled .navbar-container {
        margin-top: 12px;
    }
    
    .banners-section h1,
    .banners-section h2 {
        font-size: 55px;
        line-height: 52px;
    }

    .welcome-section h2 {
        font-size: 32px;
        line-height: 52px;
    }

    .welcome-section .shape {
        height: 360px;
    }

    .grades-section .swiper .swiper-wrapper {
        height: 500px;
    }

    .grades-section h2 {
        font-size: 36px;
        line-height: 60px;
    }

    .facts-section {
        height: 750px;
    }

    .events-section h2 {
        font-size: 36px;
        line-height: 60px;
    }

    .events-section .swiper-container .swiper-slide h3 a {
        font-size: 25px;
    }

    .albums-section h2 {
        font-size: 36px;
        line-height: 60px;
    }

    .albums-section::before {
        width: 469px;
        height: 666px;
    }

    footer .widget {
        height: 100%;
        width: 100%;
        border-right: 1px solid rgba(26, 63, 121, 0.20);
    }

    .step-indicator .step {
        display: flex; 
        padding: 12px 30px 12px 20px;
        border-radius: 0; 
        min-width: 120px;
    }

    .step-indicator .step:first-child {
        padding-left: 20px;
        border-radius: 6px 0 0 6px;
    }

    .step-indicator .step:last-child {
        padding-right: 20px;
        border-radius: 0 6px 6px 0;
    }

    .step-indicator .step:last-child::after {
        display: none;
    }

    .step-indicator .step::after {
        content: '';
        position: absolute;
        top: 0;
        right: -12px;
        width: 0;
        height: 0;
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
        border-left: 12px solid #e9ecef;
        transition: border-left-color 0.3s ease;
        z-index: 2;
    }

    .step-indicator .step.active::after {
        border-left-color: var(--bs-secondary);
    }

    .step-indicator .step.completed::after {
        border-left-color: var(--bs-primary);
    }

    .step-indicator .step-counter-mobile {
        display: none;
    }
}

@media (min-width: 1200px) {
    p {
        font-size: 20px;
    }

    .welcome-section h2 {
        font-size: 48px;
        line-height: 60px;
    }

    .grades-section h2 {
        font-size: 48px;
        line-height: 60px;
    }

    .welcome-section .shape {
        height: 420px;
    }

    .facts-section .facts-content-container h3 {
        font-size: 55px;
        line-height: 70px;
    }

    .events-section h2 {
        font-size: 48px;
        line-height: 60px;
    }

    .albums-section h2 {
        font-size: 48px;
        line-height: 60px;
    }
}

@media (min-width: 1400px) {
    .welcome-section .shape {
        height: 500px;
    }
}
