@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --school-blue: #0A4D8C;
    --school-dark-blue: #05335E;
    --school-gold: #F0B122;
    --school-light-gold: #FFF9ED;
    --white: #ffffff;
    --text-dark: #111827;
    --text-light: #4B5563;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --t: all 0.3s ease;
    --ts: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    --sh-sm: 0 4px 16px rgba(10, 77, 140, 0.08);
    --sh-md: 0 8px 24px rgba(10, 77, 140, 0.12);
    --sh-lg: 0 12px 32px rgba(10, 77, 140, 0.15);
    --gold-light: #F7CA5A;
    --gold-dark: #C8920E;
    --gold-pale: #FDF5DC;
    --off-white: #F7F5EF;
    --text-mid: #3A4A5C;
    --text-muted: #6B7A8D;
    --ease: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: all 0.48s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-fast: all 0.18s ease;
    --sh-gold: 0 4px 24px rgba(240, 177, 34, 0.22);
    --sh-gold-lg: 0 8px 40px rgba(240, 177, 34, 0.28);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-full: 100px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.mainbag {
    overflow-x: hidden;
}

.heading_sub,
.heading_main,
.heading_mobile {
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

.heading_sub {
    background: var(--school-blue);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    font-family: var(--font-body);
}

.heading_sub::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--school-gold);
}

.heading_sub .container-fluid,
.heading_sub .container {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100%;
}

.heading_sub_left ul {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.heading_sub_left ul li a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    margin-left: 15px;
    transition: var(--t);
    text-decoration: none;
}

.heading_sub_left ul li a:hover {
    color: var(--school-gold);
}

.heading_sub_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-right: 15px;
    flex-wrap: nowrap;
}

.heading_sub_right ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.heading_sub_right>ul>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 600;
    border: 1px solid rgba(240, 177, 34, 0.5);
    padding: 5px 16px;
    border-radius: 100px;
    transition: var(--t);
    white-space: nowrap;
    text-decoration: none;
}

.heading_sub_right>ul>li>a:hover {
    background: var(--school-gold);
    color: var(--school-blue) !important;
    border-color: var(--school-gold);
}

.social-links {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.social-links-list-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white) !important;
    font-size: 13px;
    transition: var(--t);
    text-decoration: none;
}

.social-links-list-link:hover {
    background: var(--school-gold);
    color: var(--school-blue) !important;
    border-color: var(--school-gold);
    transform: translateY(-2px);
}

.heading_main {
    background: var(--white);
    padding: 0;
    box-shadow: var(--sh-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s ease;
    border-bottom: 1px solid rgba(10, 77, 140, 0.05);
    font-family: var(--font-body);
}

.heading_main.fixed-nav {
    box-shadow: var(--sh-lg);
}

.heading_main>.container,
.heading_main>.container-fluid {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100%;
}

.heading_main>.container>.row {
    align-items: center;
    min-height: 86px;
    margin: 0 !important;
}

.heading_main_logo {
    display: flex;
    align-items: center;
}

.heading_main_logo img {
    height: 85px !important;
    max-height: 85px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: all .3s ease;
    margin: 0;
    padding: 5px 0;
    display: block;
}

.heading_main.fixed-nav .heading_main_logo img {
    height: 65px !important;
    max-height: 65px !important;
}

.heading_main_menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.heading_main_menu_list {
    position: relative;
    padding: 0;
}

.heading_main_menu_list_link {
    color: var(--school-blue);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 28px 18px;
    display: block;
    position: relative;
    transition: var(--t);
    white-space: nowrap;
    text-decoration: none;
}

.heading_main_menu_list_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: var(--school-gold);
    border-radius: 3px 3px 0 0;
    transition: var(--ts);
}

.heading_main_menu_list:hover .heading_main_menu_list_link {
    color: var(--school-gold);
    background: var(--school-light-gold);
}

.heading_main_menu_list:hover .heading_main_menu_list_link::after {
    transform: translateX(-50%) scaleX(1);
}

.heading_main_menu_list_dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(10, 77, 140, .05);
    border-top: 3px solid var(--school-gold);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--ts);
    padding: 10px;
    display: flex !important;
    flex-direction: column;
    gap: 4px !important;
    z-index: 999;
}

.heading_main_menu_list:hover .heading_main_menu_list_dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.heading_main_menu_list_dropdown li {
    position: relative;
    width: 100%;
}

.heading_main_menu_list_dropdown li a {
    padding: 10px 16px;
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: var(--t);
    text-decoration: none;
}

.heading_main_menu_list_dropdown li a:hover {
    background: var(--school-light-gold);
    color: var(--school-blue);
    padding-left: 22px;
}

.heading_main_menu_list_dropdown li ul {
    position: absolute;
    top: -3px;
    left: 100%;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--sh-lg);
    border: 1px solid rgba(10, 77, 140, .05);
    border-top: 3px solid var(--school-gold);
    border-radius: 0 8px 8px 8px;
    padding: 10px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--t);
    z-index: 1000;
}

.heading_main_menu_list_dropdown li ul::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    width: 15px;
    background: transparent;
}

.heading_main_menu_list_dropdown li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.heading_main_menu_list_dropdown li ul li a {
    padding: 10px 16px;
}

.heading_main_menu_list_dropdown li ul li a:hover {
    background: var(--school-light-gold);
    color: var(--school-blue);
}

.heading_main_search {
    min-width: 280px;
}

.heading_main_search .input-control {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(10, 77, 140, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--t);
    height: 48px;
}

.heading_main_search .input-control:focus-within {
    border-color: var(--school-gold);
    box-shadow: 0 0 0 4px rgba(240, 177, 34, 0.18);
    background: var(--white);
    transform: translateY(-1px);
}

.heading_main_search .input-control-input {
    border: none;
    background: transparent;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.heading_main_search .input-control-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.heading_main_search .input-control-icon {
    background: var(--school-blue);
    color: var(--white);
    width: 56px;
    border: none;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.heading_main_search .input-control-icon:hover {
    background: var(--school-gold);
    color: var(--school-blue);
}

.heading_mobile {
    display: none;
    background: var(--white);
    padding: 12px 18px;
    box-shadow: var(--sh-sm);
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--school-gold);
}

.heading_mobile_thum {
    font-size: 26px;
    color: var(--school-blue);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--t);
}

.heading_mobile_thum:hover {
    background: var(--school-light-gold);
}

.heading_mobile .heading_logo {
    display: flex;
    align-items: center;
}

.heading_mobile .heading_logo img {
    height: 60px !important;
    max-height: 60px !important;
    width: auto !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
    margin: 0;
}

.heading_mobile .m_s {
    display: none !important;
}

.zeynep {
    z-index: 999 !important;
    background: var(--school-blue) !important;
    width: 280px !important;
    padding: 0 !important;
    overflow-y: auto !important;
    font-family: var(--font-body);
}

.zeynep-opened .bg-shade {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(5, 51, 94, 0.7) !important;
    z-index: 998 !important;
    cursor: pointer !important;
}

.zeynep .zeynep-close,
.heading_mobile_menu .zeynep-close {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 16px 18px !important;
    background: var(--school-dark-blue) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.zeynep .zeynep-close button,
.zeynep-close-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    font-size: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--t) !important;
}

.zeynep .zeynep-close button:hover {
    background: var(--school-gold) !important;
    border-color: var(--school-gold) !important;
    color: var(--school-blue) !important;
}

.heading_mobile_menu.zeynep {
    z-index: 9999 !important;
}

.heading_mobile_menu.zeynep .heading_mobile_menu_top {
    background: var(--school-dark-blue) !important;
    padding: 15px 18px !important;
    border-bottom: 2px solid var(--school-gold) !important;
}

.heading_mobile_menu.zeynep .heading_mobile_menu_top ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.heading_mobile_menu.zeynep .heading_mobile_menu_top ul li a {
    color: var(--school-gold) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-decoration: none;
}

.heading_mobile_menu.zeynep>ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.heading_mobile_menu.zeynep>ul>li>a {
    color: var(--white) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.2s ease !important;
    text-decoration: none;
}

.heading_mobile_menu.zeynep>ul>li>a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--school-gold) !important;
    padding-left: 26px !important;
}

.heading_mobile_menu.zeynep>ul>li>a i {
    color: rgba(240, 177, 34, 0.7) !important;
}

.heading_mobile_menu.zeynep .submenu {
    background: var(--school-dark-blue) !important;
}

.heading_mobile_menu.zeynep .submenu-header {
    background: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.heading_mobile_menu.zeynep .submenu-header a {
    color: var(--school-gold) !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none;
}

.heading_mobile_menu.zeynep .submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.heading_mobile_menu.zeynep .submenu ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 13px 22px 13px 30px !important;
    font-size: 14px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-decoration: none;
    display: block;
}

.heading_mobile_menu.zeynep .submenu ul li a:hover {
    color: var(--school-gold) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.bg-shade {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 77, 140, 0.6) !important;
    z-index: 9998 !important;
    cursor: pointer !important;
    display: none !important;
}

.hero_area_slider {
    width: 100% !important;
}

.hero_area {
    width: 100%;
    position: relative;
}

.hero_area_container_slide_item {
    padding: 0 !important;
}

.hero_area_inner {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    max-height: 600px;
}

.hero_area_inner img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.hero_area_inner:hover img {
    transform: scale(1.03);
}

.hero_area_inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(2, 30, 58, 0.55) 100%);
    pointer-events: none;
}

.owl-nav button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(8px) !important;
    border: 2px solid rgba(240, 177, 34, 0.45) !important;
    color: var(--white) !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--ease) !important;
    z-index: 10 !important;
}

.owl-nav button:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--school-dark-blue) !important;
    box-shadow: var(--sh-gold-lg) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

.owl-nav .owl-prev {
    left: 20px !important;
}

.owl-nav .owl-next {
    right: 20px !important;
}

.owl-dots {
    margin-top: 14px !important;
    text-align: center;
}

.owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(10, 77, 140, 0.25) !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: var(--ease) !important;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: var(--gold) !important;
    width: 24px !important;
    border-radius: 4px !important;
    box-shadow: var(--sh-gold) !important;
}

.notice-section {
    background: linear-gradient(135deg, #0d1b2a, #1b3a4b, #214e60);
    padding: 24px;
    border-radius: 14px;
    max-width: 500px;
    margin: -60px 0 40px 40px;
    position: relative;
    z-index: 100;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.notice-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.notice-board-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-body);
}

.notice-view-all {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.notice-view-all:hover {
    background: rgba(255, 255, 255, 0.25);
}

.notification-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.noticeboard_inner_item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: transform 0.3s ease;
    background: #ffffff;
}

.noticeboard_inner_item:hover {
    transform: translateY(-3px);
}

.notice_date {
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13.5px;
    min-width: 120px;
    font-family: var(--font-body);
}

.notice_date i {
    font-size: 16px;
}

.notice_content {
    padding: 12px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notice_content h5 {
    margin: 0 0 4px 0;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
}

.notice_content p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    font-family: var(--font-body);
}

.noticeboard_inner_item:nth-child(1) .notice_date {
    background: #233454;
}

.noticeboard_inner_item:nth-child(1) .notice_content {
    background: #dce3f0;
}

.noticeboard_inner_item:nth-child(2) .notice_date {
    background: #395c8c;
}

.noticeboard_inner_item:nth-child(2) .notice_content {
    background: #b5c9e2;
}

.noticeboard_inner_item:nth-child(3) .notice_date {
    background: #265f61;
}

.noticeboard_inner_item:nth-child(3) .notice_content {
    background: #b5d6d6;
}

.noticeboard_inner_item:nth-child(4) .notice_date {
    background: #406843;
}

.noticeboard_inner_item:nth-child(4) .notice_content {
    background: #c5dfc4;
}

.about_us {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about_us::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 177, 34, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.about_us::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 77, 140, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.about_us_img {
    position: relative;
}

.about_us_img_inner {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--sh-lg);
}

.about_us_img_inner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about_us_img_inner:hover img {
    transform: scale(1.04);
}

.about_us_img_inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.about_us_img::after {
    content: 'Est. 1993';
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue));
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--sh-md);
    border: 2px solid rgba(240, 177, 34, 0.30);
    z-index: 2;
}

.about_us_inner {
    position: relative;
}

.about_us_inner h3 {
    font-family: var(--font-display) !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.3px !important;
    position: relative;
}

.about_us_inner h3::after {
    content: '';
    display: block;
    margin-top: 14px;
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
}

.about_us_inner p,
.about_us_inner strong {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--text-mid) !important;
    line-height: 1.80 !important;
    font-weight: 400 !important;
}

.about_us_inner ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about_us_inner ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
}

.about_us_inner ul li i {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(240, 177, 34, 0.30);
}

.about_us_inner_call {
    margin: 20px 0;
}

.about_us_inner_call a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--school-blue) !important;
    transition: var(--ease-fast);
    letter-spacing: 0.3px;
}

.about_us_inner_call a:hover {
    color: var(--gold-dark) !important;
}

.site_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue));
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-md);
}

.site_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: var(--ease);
}

.site_btn span {
    position: relative;
    z-index: 1;
}

.site_btn:hover {
    color: var(--school-dark-blue) !important;
    box-shadow: var(--sh-gold-lg);
    transform: translateY(-2px);
}

.site_btn:hover::before {
    opacity: 1;
}

.section_title {
    text-align: center;
    margin-bottom: 10px;
}

.section_title_meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-pale);
    border: 1px solid rgba(240, 177, 34, 0.30);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section_title_meta::before,
.section_title_meta::after {
    content: '\2022';
    font-size: 7px;
    color: var(--gold);
    opacity: 0.7;
}

.section_title h2 {
    font-family: var(--font-display) !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    letter-spacing: 0.3px !important;
    line-height: 1.25 !important;
    margin: 0 0 12px 0 !important;
    position: relative;
    display: inline-block;
}

.section_title h2::after {
    content: '';
    display: block;
    margin: 12px auto 0;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 4px;
}

.section_title p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section_padding {
    padding: 90px 0;
}

.section_padding_off {
    padding: 0;
}

.section_padding_bottom {
    padding-bottom: 90px;
}

.gallery {
    background: var(--off-white);
    position: relative;
}

.gallery_item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    position: relative;
    margin-bottom: 24px;
}

.gallery_item:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-gold-lg), var(--sh-lg);
}

.gallery_item_img {
    overflow: hidden;
    height: 220px;
    position: relative;
}

.gallery_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery_item:hover .gallery_item_img img {
    transform: scale(1.07);
}

.gallery_item_img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(5, 51, 94, 0.60) 100%);
    opacity: 0;
    transition: var(--ease);
}

.gallery_item:hover .gallery_item_img::after {
    opacity: 1;
}

.gallery_item_inner {
    padding: 16px 18px;
    background: var(--white);
    position: relative;
}

.gallery_item_inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--ease);
}

.gallery_item:hover .gallery_item_inner::before {
    opacity: 1;
}

.gallery_item_inner h4 {
    font-family: var(--font-serif) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    transition: var(--ease-fast);
}

.gallery_item:hover .gallery_item_inner h4 {
    color: var(--school-blue) !important;
}

.single-video-item {
    margin-bottom: 24px;
}

.gallery_item.video {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    position: relative;
}

.gallery_item.video:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-gold-lg), var(--sh-lg);
}

.gallery_item.video .gallery_item_img {
    height: 200px;
    position: relative;
}

.gallery_item.video .gallery_item_img::before {
    content: '\25B6';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    background: rgba(5, 51, 94, 0.45);
    z-index: 2;
    transition: var(--ease);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.40);
}

.gallery_item.video:hover .gallery_item_img::before {
    background: rgba(240, 177, 34, 0.72);
    color: var(--school-dark-blue);
    font-size: 46px;
}

.gallery_item_title {
    font-family: var(--font-serif) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin: 0 0 6px 0 !important;
    transition: var(--ease-fast);
}

.gallery_item.video:hover .gallery_item_title {
    color: var(--school-blue) !important;
}

.gallery_item_desc {
    font-family: var(--font-body) !important;
    font-size: 13.5px !important;
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.home_speech_section {
    background: linear-gradient(135deg, #021E3A 0%, #05335E 60%, #073D70 100%);
    position: relative;
    overflow: hidden;
}

.home_speech_section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 177, 34, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.home_speech_section .section_title h2 {
    color: var(--white) !important;
}

.home_speech_section .section_title_meta {
    color: var(--gold-dark);
    background: rgba(240, 177, 34, 0.12);
    border-color: rgba(240, 177, 34, 0.25);
}

.home_speech_section .owl-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(240, 177, 34, 0.40) !important;
    color: var(--white) !important;
}

.home_speech_section .owl-carousel .owl-nav button:hover {
    background: var(--gold) !important;
    color: var(--school-dark-blue) !important;
}

.single_speech_item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(240, 177, 34, 0.18);
    border-radius: var(--radius);
    padding: 34px 28px;
    text-align: center;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.single_speech_item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 18px;
    font-family: var(--font-serif);
    font-size: 100px;
    color: rgba(240, 177, 34, 0.12);
    line-height: 1;
    pointer-events: none;
}

.single_speech_item:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(240, 177, 34, 0.40);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.speaker_photo {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid rgba(240, 177, 34, 0.45);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: var(--ease);
}

.single_speech_item:hover .speaker_photo {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(240, 177, 34, 0.20), 0 4px 20px rgba(0, 0, 0, 0.30);
}

.speaker_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker_info {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.speech {
    font-family: var(--font-serif);
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.70;
    margin-bottom: 20px;
}

.speech_details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid rgba(240, 177, 34, 0.40);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--gold-glass);
    transition: var(--ease-fast);
}

.speech_details:hover {
    background: var(--gold);
    color: var(--school-dark-blue) !important;
    box-shadow: var(--sh-gold);
}

.teacher {
    background: var(--off-white);
    position: relative;
}

.teacher_wrapper {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(10, 77, 140, 0.06);
    position: relative;
}

.teacher_wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-gold-lg), var(--sh-md);
    border-color: rgba(240, 177, 34, 0.30);
}

.teacher_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--school-blue), var(--gold), var(--school-blue));
    transform: scaleX(0);
    transition: var(--ease);
}

.teacher_wrapper:hover::before {
    transform: scaleX(1);
}

.teacher_wrapper_img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.teacher_wrapper_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher_wrapper:hover .teacher_wrapper_img img {
    transform: scale(1.06);
}

.teacher_wrapper h4 {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin: 16px 16px 4px !important;
    letter-spacing: 0.5px !important;
    transition: var(--ease-fast);
}

.teacher_wrapper:hover h4 {
    color: var(--school-blue) !important;
}

.teacher_wrapper p {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    color: var(--gold-dark) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

.feature {
    background: linear-gradient(135deg, #021E3A 0%, #05335E 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(240, 177, 34, 0.02) 20px, rgba(240, 177, 34, 0.02) 21px);
    pointer-events: none;
}

.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 177, 34, 0.16);
    border-radius: var(--radius);
    transition: var(--ease);
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
    height: calc(100% - 24px);
}

.feature_item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(240, 177, 34, 0.40);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.feature_item_left {
    flex-shrink: 0;
}

.feature_item_icon {
    width: 68px;
    height: 68px;
    background: var(--gold-glass);
    border: 2px solid rgba(240, 177, 34, 0.28);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ease);
    overflow: hidden;
}

.feature_item:hover .feature_item_icon {
    background: rgba(240, 177, 34, 0.18);
    border-color: var(--gold);
    box-shadow: var(--sh-gold);
}

.feature_item_icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.80);
    transition: var(--ease);
}

.feature_item:hover .feature_item_icon img {
    filter: brightness(1) saturate(1.5);
}

.feature_item_inner h4 {
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    margin: 0 0 8px !important;
    letter-spacing: 0.3px !important;
}

.feature_item_inner p {
    font-family: var(--font-body) !important;
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.68) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.course,
.home_course {
    background: var(--white);
    position: relative;
}

.course_item {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    border: 1px solid rgba(10, 77, 140, 0.06);
    margin-bottom: 24px;
}

.course_item:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-gold-lg), var(--sh-lg);
    border-color: rgba(240, 177, 34, 0.28);
}

.course_item_img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course_item_img_inner {
    width: 100%;
    height: 100%;
}

.course_item_img_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course_item:hover .course_item_img_inner img {
    transform: scale(1.07);
}

.course_item_img_status {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.course_item_img_status.orange {
    background: linear-gradient(135deg, #F97316, #DC2626);
}

.course_item_img_status.sunset-orange {
    background: linear-gradient(135deg, #FB923C, #F97316);
}

.course_item_img_status.green {
    background: linear-gradient(135deg, #16A34A, #15803D);
}

.course_item_img_status.blue {
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue));
}

.course_item_inner {
    padding: 18px 20px;
}

.course_item_inner h4 {
    font-family: var(--font-serif) !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    transition: var(--ease-fast);
}

.course_item:hover .course_item_inner h4 {
    color: var(--school-blue) !important;
}

.cta_area {
    background-color: #021E3A !important;
    background-blend-mode: overlay !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.cta_area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 30, 58, 0.90) 0%, rgba(5, 51, 94, 0.85) 60%, rgba(7, 61, 112, 0.90) 100%);
    pointer-events: none;
}

.cta_area .container {
    position: relative;
    z-index: 1;
}

.cta_area .section_title h2 {
    color: var(--white) !important;
    font-size: 36px !important;
}

.cta_area .section_title p,
.cta_area .section_title strong {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    max-width: 720px !important;
    line-height: 1.75 !important;
    display: block;
    margin: 0 auto 28px !important;
    font-family: var(--font-body) !important;
}

.cta_area_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.boxed_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.boxed_btn:first-child {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #021E3A !important;
    box-shadow: var(--sh-gold-lg);
}

.boxed_btn:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 177, 34, 0.45);
}

.boxed_btn:last-child {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.boxed_btn:last-child:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.60);
    transform: translateY(-3px);
}

.funfact {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid rgba(10, 77, 140, 0.06);
}

.funfact_item {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(10, 77, 140, 0.08);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.funfact_item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ease-spring);
}

.funfact_item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-gold-lg);
    border-color: rgba(240, 177, 34, 0.28);
}

.funfact_item:hover::before {
    transform: scaleX(1);
}

.funfact_item h3 {
    font-family: var(--font-display) !important;
    font-size: 44px !important;
    font-weight: 900 !important;
    color: var(--school-blue) !important;
    margin: 0 0 6px !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
}

.funfact_item p {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

.events.index-events {
    background: var(--off-white);
    position: relative;
}

.events_preview_img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    position: relative;
}

.events_preview_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.events_preview_img:hover img {
    transform: scale(1.04);
}

.events_preview_img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 3px solid transparent;
    background: linear-gradient(135deg, rgba(240, 177, 34, 0.6), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}

.events_schedule table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-family: var(--font-body);
}

.events_schedule table tr {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--sh-sm);
    transition: var(--ease-fast);
}

.events_schedule table tr:hover {
    box-shadow: var(--sh-gold);
    transform: translateX(4px);
}

.events_schedule table td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 500;
    border: none;
}

.events_schedule table td:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--gold-dark);
    font-weight: 700;
    background: var(--gold-pale);
}

.events_schedule table td:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--school-blue);
    font-weight: 600;
}

.tesimonials.about {
    background: linear-gradient(135deg, #021E3A 0%, #05335E 100%);
    position: relative;
    overflow: hidden;
}

.tesimonials.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 177, 34, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.tesimonials.about .section_title h2 {
    color: var(--white) !important;
}

.tesimonials.about .section_title_meta {
    background: rgba(240, 177, 34, 0.12);
    border-color: rgba(240, 177, 34, 0.25);
    color: var(--gold-dark);
}

.tesimonials_slider_item {
    text-align: center;
    padding: 50px 40px 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(240, 177, 34, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.tesimonials_slider_item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: var(--font-serif);
    font-size: 120px;
    color: rgba(240, 177, 34, 0.14);
    line-height: 1;
    pointer-events: none;
}

.tesimonials_slider_item_star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.tesimonials_slider_item_star i svg path {
    fill: var(--gold) !important;
}

.tesimonials_slider_item h3 {
    font-family: var(--font-serif) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    font-style: italic !important;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.6 !important;
    margin: 0 0 20px !important;
}

.tesimonials_slider_item p {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.60) !important;
    margin: 0 !important;
}

.tesimonials_slider_item p span {
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.tesimonials_slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px !important;
}

.tesimonials_slider .owl-dot button {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid rgba(240, 177, 34, 0.25) !important;
    transition: var(--ease) !important;
    padding: 0 !important;
    background: none !important;
}

.tesimonials_slider .owl-dot.active button,
.tesimonials_slider .owl-dot:hover button {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(240, 177, 34, 0.25) !important;
    transform: scale(1.12) !important;
}

.tesimonials_slider .owl-dot button img {
    width: 42px !important;
    height: 42px !important;
    object-fit: cover !important;
    display: block !important;
}

.blog.index-blog {
    background: var(--off-white);
}

.blog_item_inner {
    background: var(--white) !important;
    border-radius: var(--radius) !important;
    overflow: hidden !important;
    box-shadow: var(--sh-sm) !important;
    transition: var(--ease) !important;
    border: 1px solid rgba(10, 77, 140, 0.06) !important;
}

.blog_item_inner:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--sh-gold-lg), var(--sh-md) !important;
    border-color: rgba(240, 177, 34, 0.26) !important;
}

.noticeboard {
    background: var(--white);
}

.openning_hours_container {
    background: linear-gradient(135deg, #021E3A, #05335E);
    border-radius: var(--radius);
    padding: 36px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

.openning_hours_container::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 177, 34, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.openning_hours_container .section_title h2 {
    color: var(--white) !important;
    font-size: 26px !important;
    text-align: left;
}

.openning_hours_container .section_title h2::after {
    margin: 10px 0 0 0;
}

.openning_hours_container .section_title p {
    color: rgba(255, 255, 255, 0.60) !important;
    text-align: left;
    font-size: 13.5px;
}

.noticeboard_inner {
    position: relative;
    z-index: 1;
}

.noticeboard_inner_weekinfo {
    list-style: none;
    padding: 0;
    margin: 0;
}

.noticeboard_inner_weekinfo li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--ease-fast);
}

.noticeboard_inner_weekinfo li:last-child {
    border-bottom: none;
}

.noticeboard_inner_weekinfo li:hover {
    color: var(--gold-light);
}

.noticeboard_inner_weekinfo li span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.noticeboard_inner_weekinfo li span:first-child label {
    color: var(--gold);
    cursor: default;
    font-weight: 700;
}

.noticeboard_inner_weekinfo li span:last-child {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 13px;
}

.noticeboard_inner .noticeboard_inner_head {
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue));
    padding: 18px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    overflow: hidden;
}

.noticeboard_inner .noticeboard_inner_head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.noticeboard_inner .noticeboard_inner_head h5 {
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
}

.noticeboard_inner_wrapper {
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(10, 77, 140, 0.08);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    min-height: 200px;
}

section[style*="background-color:rgb(18,93,233)"] {
    background: linear-gradient(135deg, #021E3A 0%, #05335E 50%, #073D70 100%) !important;
    position: relative;
    overflow: hidden;
}

section[style*="background-color:rgb(18,93,233)"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(240, 177, 34, 0.025) 60px, rgba(240, 177, 34, 0.025) 61px);
    pointer-events: none;
    z-index: 0;
}

section[style*="background-color:rgb(18,93,233)"]>.container {
    position: relative;
    z-index: 1;
}

.footer-item {
    padding-right: 20px;
}

.footer-item-logo {
    display: block;
    margin-bottom: 18px;
}

.footer-item-logo img {
    height: 70px;
    object-fit: contain;
    mix-blend-mode: luminosity;
    opacity: 0.92;
    filter: brightness(0) invert(1);
    transition: var(--ease);
}

.footer-item-logo:hover img {
    opacity: 1;
}

.footer-item>p {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.68) !important;
    line-height: 1.75 !important;
}

.footer-item h5 {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 12px;
}

.footer-item h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
}

.footer-item-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-item-links li a {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: var(--ease-fast) !important;
    padding: 3px 0;
}

.footer-item-links li a::before {
    content: '\2192';
    color: var(--gold);
    font-size: 18px;
    line-height: 1;
    opacity: 0.75;
    transition: var(--ease-fast);
}

.footer-item-links li a:hover {
    color: var(--gold-light) !important;
    padding-left: 6px !important;
}

.footer-item-links li a:hover::before {
    opacity: 1;
}

.footer_copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.footer_copyright_inner {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.50);
    display: flex;
    align-items: center;
}

.footer_copyright_social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_copyright_social_list {
    list-style: none;
}

.footer_copyright_social_list_link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(240, 177, 34, 0.22);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 13px;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.footer_copyright_social_list_link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: var(--ease);
}

.footer_copyright_social_list_link i {
    position: relative;
    z-index: 1;
}

.footer_copyright_social_list_link:hover {
    border-color: var(--gold);
    color: var(--school-dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

.footer_copyright_social_list_link:hover::before {
    opacity: 1;
}

.backtop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--school-dark-blue) !important;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--sh-gold-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--ease);
    z-index: 999;
}

.backtop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.backtop:hover {
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue));
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}

.load_more_photo_btn,
.load_more_course_btn {
    display: block;
    margin: 16px auto 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue));
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--ease);
    box-shadow: var(--sh-sm);
}

.load_more_photo_btn:hover,
.load_more_course_btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--school-dark-blue) !important;
    box-shadow: var(--sh-gold-lg);
    transform: translateY(-2px);
}

.pb-themesection {}

.master_header .container {
    padding: 0 !important;
    max-width: 100% !important;
}

.master_header .col-12 {
    padding: 0 !important;
}

@media (min-width:1400px) {
    .heading_main_menu_list_link {
        font-size: 13px;
        padding: 0 20px;
    }

    .section_title h2 {
        font-size: 38px !important;
    }
}

@media (max-width:1280px) {
    .heading_main_menu_list_link {
        font-size: 11.5px;
        padding: 0 13px;
        letter-spacing: 0.6px;
    }

    .heading_main_logo img {
        height: 66px !important;
    }

    .section_title h2 {
        font-size: 30px !important;
    }
}

@media (max-width:1100px) {
    .heading_main_menu_list_link {
        font-size: 11px;
        padding: 0 10px;
    }
}

@media (max-width:991px) {
    .heading_main {
        display: none !important;
    }

    .heading_sub {
        display: none !important;
    }

    .heading_mobile {
        display: flex !important;
    }

    .mobile-none {
        display: none !important;
    }

    .section_padding {
        padding: 60px 0;
    }

    .section_title h2 {
        font-size: 26px !important;
    }

    .about_us_img {
        margin-bottom: 40px;
    }

    .about_us_img_inner img {
        height: 320px;
    }

    .about_us_img::after {
        bottom: -12px;
        right: -8px;
    }

    .hero_area_inner img {
        height: 380px;
    }

    .hero_area_inner {
        max-height: 380px;
    }

    .events_preview_img img {
        height: 280px;
    }

    .funfact_item {
        margin-bottom: 20px;
    }

    .cta_area .section_title h2 {
        font-size: 28px !important;
    }

    .feature_item {
        margin-bottom: 16px;
    }

    .tesimonials_slider_item {
        padding: 36px 24px 28px;
    }

    .openning_hours_container {
        padding: 28px 24px;
    }

    .footer-item {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .heading_mobile_menu.zeynep {
        width: 280px !important;
    }

    .heading_mobile_menu.zeynep .submenu {
        width: 280px !important;
    }

    .notice-section {
        margin: -40px 15px 30px 15px;
        max-width: 100%;
    }
}

@media (max-width:767px) {
    .heading_mobile {
        padding: 8px 14px;
    }

    .heading_mobile .heading_logo img {
        height: 46px !important;
    }

    .heading_mobile_thum {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .heading_sub .container {
        padding: 8px 16px !important;
    }

    .heading_sub_left ul {
        gap: 12px;
    }

    .heading_sub_left ul li a {
        font-size: 12px;
    }

    .hero_area_inner img {
        height: 260px;
    }

    .hero_area_inner {
        max-height: 260px;
    }

    .about_us_img_inner img {
        height: 260px;
    }

    .section_title h2 {
        font-size: 24px !important;
    }

    .section_padding {
        padding: 50px 0;
    }

    .section_padding_bottom {
        padding-bottom: 50px;
    }

    .cta_area_inner {
        flex-direction: column;
    }

    .boxed_btn {
        width: 100%;
        justify-content: center;
    }

    .funfact_item h3 {
        font-size: 36px !important;
    }

    .tesimonials_slider_item {
        padding: 30px 18px 24px;
    }

    .tesimonials_slider_item h3 {
        font-size: 17px !important;
    }

    .events_preview_img {
        margin-bottom: 28px;
    }

    .events_preview_img img {
        height: 220px;
    }

    .openning_hours_container {
        padding: 24px 18px;
    }

    .feature_item_icon {
        width: 54px;
        height: 54px;
    }

    .feature_item_icon img {
        width: 32px;
        height: 32px;
    }

    .single_speech_item {
        padding: 26px 20px;
    }

    .heading_mobile_menu.zeynep {
        width: 268px !important;
    }

    .heading_mobile_menu.zeynep .submenu {
        width: 268px !important;
    }

    .notice-board-title {
        font-size: 15px !important;
    }

    .notice-view-all {
        font-size: 11px;
        padding: 5px 12px;
    }

    .footer_copyright_inner {
        font-size: 12px;
        text-align: center;
    }

    .footer_copyright nav {
        margin-top: 12px;
    }

    .heading_main_menu_list_dropdown li ul {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--school-gold);
        border-radius: 0;
        padding-left: 10px;
        margin-left: 0;
        display: none;
        transform: none;
    }

    .heading_main_menu_list_dropdown li:hover>ul {
        display: block;
    }
}

@media (max-width:480px) {
    .heading_mobile {
        padding: 8px 12px;
    }

    .heading_mobile .heading_logo img {
        height: 42px !important;
    }

    .heading_mobile_thum {
        width: 36px;
        height: 36px;
    }

    .section_title h2 {
        font-size: 22px !important;
    }

    .section_padding {
        padding: 40px 0;
    }

    .funfact_item h3 {
        font-size: 32px !important;
    }

    .site_btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .boxed_btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .heading_mobile_menu.zeynep {
        width: 258px !important;
    }

    .heading_mobile_menu.zeynep .submenu {
        width: 258px !important;
    }

    .hero_area_inner img {
        height: 200px;
    }

    .hero_area_inner {
        max-height: 200px;
    }

    .speaker_photo {
        width: 70px;
        height: 70px;
    }

    .speech {
        font-size: 15px;
    }

    .gallery_item_img {
        height: 180px;
    }

    .course_item_img {
        height: 160px;
    }

    .teacher_wrapper_img {
        height: 180px;
    }
}

@media (max-width:360px) {
    .heading_mobile .heading_logo img {
        height: 38px !important;
    }

    .section_title h2 {
        font-size: 20px !important;
    }

    .heading_mobile_menu.zeynep {
        width: 100vw !important;
    }

    .heading_mobile_menu.zeynep .submenu {
        width: 100vw !important;
    }
}

.heading_mobile_menu.zeynep::-webkit-scrollbar {
    width: 4px;
}

.heading_mobile_menu.zeynep::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.20);
}

.heading_mobile_menu.zeynep::-webkit-scrollbar-thumb {
    background: rgba(240, 177, 34, 0.40);
    border-radius: 4px;
}

.heading_mobile_menu.zeynep::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.zeynep-opened {
    overflow: hidden !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.heading_sub {
    animation: fadeIn 0.5s ease forwards;
}

.heading_main {
    animation: fadeIn 0.5s 0.1s ease both;
}

.hero_area_inner {
    animation: fadeIn 0.8s 0.2s ease both;
}

.about_us {
    animation: fadeUp 0.7s 0.1s ease both;
}

.about_us_img::after {
    content: 'Est. 1993';
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue));
    display: none;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--sh-md);
    border: 2px solid rgba(240, 177, 34, 0.30);
    z-index: 2;
}

.notice-section {
    background: linear-gradient(135deg, #1A365D, #2B6CB0, #2C7A7B);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 16px;
    box-sizing: border-box;
}

.notice-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
}

.notification-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-container ul li {
    display: flex;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.notification-container ul li::before {
    content: attr(data-date);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    width: 120px;
    flex-shrink: 0;
    text-align: center;
    box-sizing: border-box;
}

.notification-container ul li {
    flex: 1;
    padding: 12px 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.notification-container ul li strong {
    margin: 0 0 4px 0;
    color: #1a202c;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.notification-container ul li span {
    margin: 0;
    color: #4a5568;
    font-size: 13px;
    line-height: 1.4;
}

.notification-container ul li.row-1::before {
    background-color: #2D3748;
}

.notification-container ul li.row-1 {
    background-color: #E2E8F0;
}

.notification-container ul li.row-2::before {
    background-color: #4A658E;
}

.notification-container ul li.row-2 {
    background-color: #C3D4E9;
}

.notification-container ul li.row-3::before {
    background-color: #285E61;
}

.notification-container ul li.row-3 {
    background-color: #B2D8D8;
}

.notification-container ul li.row-4::before {
    background-color: #486A47;
}

.notification-container ul li.row-4 {
    background-color: #C6DEB7;
}

.notice-section {
    background: linear-gradient(135deg, #1A365D, #2B6CB0, #2C7A7B) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    margin: 0 auto 40px auto !important;
    width: 100% !important;
    max-width: 750px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    box-sizing: border-box !important;
}

.notice-section .notice-board-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 25px !important;
    width: 100% !important;
    border: none !important;
    padding: 0 !important;
}

.notice-section .notice-board-title {
    color: #ffffff !important;
    font-size: 24px !important;
    margin: 0 !important;
    font-weight: 700 !important;
}

.notice-section .notice-view-all {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.notice-section .notice-view-all:hover {
    background: rgba(255, 255, 255, 0.35) !important;
}

.notice-section .notification-container,
.notice-section .notification-container ul,
.notice-section .notification-container ul li {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.notice-section .notification-container ul li {
    margin-bottom: 15px !important;
}

.notice-section .noticeboard_inner_item {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 65px !important;
}

.notice-section .noticeboard_inner_item p {
    width: 160px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
}

.notice-section .noticeboard_inner_item p span {
    display: none !important;
}

.notice-section .noticeboard_inner_item p::before {
    content: '\1F514';
    margin-right: 8px;
    font-size: 16px;
}

.notice-section .noticeboard_inner_item a.noticeboard_inner_item_title {
    flex: 1 !important;
    margin: 0 !important;
    padding: 15px 20px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-align: left !important;
    border-radius: 0 !important;
}

.notice-section .notification-container ul li:nth-child(4n+1) .noticeboard_inner_item p {
    background-color: #2D3748 !important;
}

.notice-section .notification-container ul li:nth-child(4n+1) .noticeboard_inner_item a {
    background-color: #E2E8F0 !important;
    color: #1a202c !important;
}

.notice-section .notification-container ul li:nth-child(4n+2) .noticeboard_inner_item p {
    background-color: #4A658E !important;
}

.notice-section .notification-container ul li:nth-child(4n+2) .noticeboard_inner_item a {
    background-color: #C3D4E9 !important;
    color: #1a202c !important;
}

.notice-section .notification-container ul li:nth-child(4n+3) .noticeboard_inner_item p {
    background-color: #285E61 !important;
}

.notice-section .notification-container ul li:nth-child(4n+3) .noticeboard_inner_item a {
    background-color: #B2D8D8 !important;
    color: #1a202c !important;
}

.notice-section .notification-container ul li:nth-child(4n+4) .noticeboard_inner_item p {
    background-color: #486A47 !important;
}

.notice-section .notification-container ul li:nth-child(4n+4) .noticeboard_inner_item a {
    background-color: #C6DEB7 !important;
    color: #1a202c !important;
}

@media screen and (max-width:768px) {
    .notice-section {
        padding: 20px 15px !important;
        margin: 0 auto 30px auto !important;
        width: 95% !important;
        max-width: 100% !important;
    }

    .notice-section .noticeboard_inner_item p {
        width: 130px !important;
        font-size: 13px !important;
        padding: 0 10px !important;
    }

    .notice-section .noticeboard_inner_item a.noticeboard_inner_item_title {
        font-size: 14px !important;
        padding: 12px 15px !important;
    }

    .notice-section .notice-board-title {
        font-size: 20px !important;
    }
}

.about_us {
    background: #ffffff !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.about_us_img_inner {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 40, 85, 0.15) !important;
    position: relative;
}

.about_us_img_inner img {
    width: 100% !important;
    height: auto !important;
    min-height: 400px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    transition: transform 0.5s ease !important;
}

.about_us_img_inner:hover img {
    transform: scale(1.05) !important;
}

.about_us_inner h3 {
    color: #002855 !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    position: relative;
}

.about_us_inner h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #D4AF37 !important;
    margin-top: 15px;
    border-radius: 2px;
}

.about_us_inner p,
.about_us_inner p strong {
    color: #4a5568 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    background: transparent !important;
    text-align: justify !important;
}

.about_us_inner ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about_us_inner ul li {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #002855 !important;
}

.about_us_inner ul li i {
    width: 32px !important;
    height: 32px !important;
    background: #D4AF37 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4) !important;
    flex-shrink: 0 !important;
}

.about_us_inner_call {
    margin: 30px 0 !important;
}

.about_us_inner_call a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #002855 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.about_us_inner_call a:hover {
    color: #D4AF37 !important;
}

.about_us_inner_call a svg path {
    fill: #D4AF37 !important;
    stroke: #D4AF37 !important;
    transition: all 0.3s ease !important;
}

.about_us_inner_call a:hover svg path {
    fill: #002855 !important;
    stroke: #002855 !important;
}

.about_us_inner .site_btn {
    background: #002855 !important;
    color: #ffffff !important;
    padding: 14px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid #002855 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    box-shadow: 0 8px 20px rgba(0, 40, 85, 0.2) !important;
    text-decoration: none !important;
}

.about_us_inner .site_btn:hover {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #002855 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4) !important;
}

@media screen and (max-width:991px) {
    .about_us_inner h3 {
        margin-top: 40px !important;
        font-size: 32px !important;
    }

    .about_us_img_inner img {
        min-height: 300px !important;
    }
}

@media screen and (max-width:768px) {
    .about_us {
        padding: 50px 15px !important;
    }

    .about_us_inner h3 {
        font-size: 26px !important;
        margin-top: 30px !important;
    }

    .about_us_inner p,
    .about_us_inner p strong {
        font-size: 15px !important;
    }

    .about_us_inner ul li {
        font-size: 15px !important;
    }

    .about_us_inner_call a {
        font-size: 18px !important;
    }

    .about_us_inner .site_btn {
        width: 100% !important;
        text-align: center !important;
    }
}

.about_us_inner ul li i {
    width: 45px !important;
    height: 45px !important;
    background: linear-gradient(135deg, #D4AF37, #B8860B) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4) !important;
    transition: transform 0.3s ease !important;
}

.about_us_inner ul li i:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.6) !important;
}

.about_us_inner ul li i::before {
    font-family: "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: 18px !important;
}

.about_us_inner ul li i::after {
    display: none !important;
}

.about_us_inner ul li:nth-child(1) i::before {
    content: "\f19d" !important;
}

.about_us_inner ul li:nth-child(2) i::before {
    content: "\f005" !important;
}

.about_us_inner ul li:nth-child(3) i::before {
    content: "\f02d" !important;
}

.feature_item_icon img {
    filter: none !important;
    opacity: 0.9 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.feature_item:hover .feature_item_icon img {
    filter: none !important;
    opacity: 1 !important;
    transform: scale(1.15) !important;
}

.feature_item_icon {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.feature_item:hover .feature_item_icon {
    background: rgba(212, 175, 55, 0.15) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3) !important;
}

.boxed_btn:first-child {
    background: linear-gradient(135deg, var(--gold), #9b8f71);
    color: #ffffff !important;
    box-shadow: var(--sh-gold-lg);
}

.home_speech_section .section_title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 30px !important;
}

.home_speech_section .section_title h2 {
    order: 1 !important;
    margin-bottom: 12px !important;
}

.home_speech_section .section_title_meta {
    order: 2 !important;
    margin-bottom: 0 !important;
}

.speech_details {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.speech_details:hover {
    background: #D4AF37 !important;
    color: #002855 !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-2px) !important;
}

.single_speech_item {
    transform: translateY(0) !important;
    transition: all 0.4s ease-out !important;
    margin-top: 20px !important;
}

.single_speech_item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    border: 1px solid #D4AF37 !important;
}

.section_title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.section_title h2 {
    order: 1 !important;
    margin-bottom: 15px !important;
    display: block !important;
}

.section_title .section_title_meta {
    order: 2 !important;
    margin-bottom: 0 !important;
}

.section_title p {
    order: 3 !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}

.openning_hours_container .section_title,
.events .col-md-7 .section_title {
    align-items: flex-start !important;
    text-align: left !important;
}

.login-form-card,
.auth-card,
div[class*="login"] .card,
.card.login-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(20, 52, 107, .18);
    padding: 48px 44px;
    max-width: 520px;
    width: 100%;
    position: relative;
    z-index: 2;
    border: none;
}

.login-logo,
.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.login-logo img,
.auth-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(20, 52, 107, .18);
    border: 3px solid rgba(77, 181, 230, .25);
}

.login-title,
.auth-card h4,
.login-form-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    margin-bottom: 32px;
}

.login-form-card .form-control,
.auth-card .form-control,
.login-form-card input[type="email"],
.login-form-card input[type="password"],
.login-form-card input[type="text"] {
    border: none !important;
    border-bottom: 1.5px solid rgba(20, 52, 107, .18) !important;
    border-radius: 0 !important;
    padding: 14px 4px !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: transparent !important;
    transition: border-color .25s ease;
    box-shadow: none !important;
    margin-bottom: 8px;
}

.login-form-card .form-control:focus,
.login-form-card input:focus {
    border-bottom-color: var(--sky) !important;
    outline: none !important;
}

.login-form-card label,
.auth-card label {
    font-size: 13px;
    font-weight: 600;
    color: var(--body);
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.login-form-card a.forgot,
.auth-card a[href*="forget"],
.auth-card a[href*="forgot"],
.auth-card a[href*="reset"] {
    color: var(--sky) !important;
    font-size: 13px;
    font-weight: 600;
}

.login-form-card button[type="submit"],
.auth-card button[type="submit"],
.login-form-card .btn-login {
    width: 100%;
    background: #4665f0 !important;
    color: var(--white) !important;
    border: none !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    cursor: pointer;
    transition: var(--t) !important;
    box-shadow: 0 6px 20px rgba(20, 52, 107, 0.3) !important;
    margin-top: 12px;
}

.login-form-card button[type="submit"]:hover,
.auth-card button[type="submit"]:hover {
    background: var(--sky) !important;
    box-shadow: 0 8px 24px rgba(77, 181, 230, 0.4) !important;
    transform: translateY(-2px);
}

.login-form-card .custom-checkbox label,
.auth-card .custom-checkbox label {
    font-size: 13.5px;
    color: var(--body);
}

.login-area,
.login-form-area,
[class*="login"] .col-md-6:first-child,
[class*="login"] .col-lg-6:first-child {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    background: #fff !important;
    padding: 40px !important;
}

.login-form-card,
.auth-card,
form[action*="login"],
.login-form {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
}

.login-logo img,
.auth-logo img,
[class*="login"] .col-md-6:first-child img:first-of-type {
    max-width: 140px !important;
    height: auto !important;
    margin: 0 auto 28px !important;
    display: block !important;
    border-radius: 50% !important;
}

.login-form-card h4,
.auth-card h4,
form[action*="login"] h4,
[class*="login_detail"],
[class*="login"] h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #14346B !important;
    margin-bottom: 28px !important;
    position: relative !important;
    padding-bottom: 14px !important;
}

[class*="login"] h4::after,
.auth-card h4::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 42px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #F0B122, #DE3E2C) !important;
    border-radius: 2px !important;
}

[class*="login"] input[type="email"],
[class*="login"] input[type="password"],
[class*="login"] input[type="text"],
[class*="login"] .form-control {
    width: 100% !important;
    border: none !important;
    border-bottom: 2px solid rgba(20, 52, 107, 0.18) !important;
    border-radius: 0 !important;
    padding: 13px 0 13px 32px !important;
    font-size: 14.5px !important;
    font-family: 'DM Sans', sans-serif !important;
    color: #111827 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    transition: border-color 0.25s ease !important;
    margin-bottom: 8px !important;
    display: block !important;
}

[class*="login"] input[type="email"]:focus,
[class*="login"] input[type="password"]:focus,
[class*="login"] input[type="text"]:focus,
[class*="login"] .form-control:focus {
    border-bottom-color: #14346B !important;
    background: transparent !important;
}

[class*="login"] button[type="submit"],
[class*="login"] input[type="submit"],
[class*="login"] .btn-login,
[class*="login"] button.sign-in {
    width: 100% !important;
    background: #14346B !important;
    color: #fff !important;
    border: none !important;
    padding: 15px !important;
    border-radius: 100px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: 'DM Sans', sans-serif !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 24px rgba(20, 52, 107, 0.28) !important;
    margin-top: 20px !important;
    display: block !important;
}

[class*="login"] button[type="submit"]:hover {
    background: #F0B122 !important;
    color: #14346B !important;
    box-shadow: 0 10px 28px rgba(240, 177, 34, 0.38) !important;
    transform: translateY(-2px) !important;
}

[class*="login"] a[href*="forget"],
[class*="login"] a[href*="forgot"],
[class*="login"] a[href*="password"] {
    color: #4DB5E6 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

[class*="login"] .custom-checkbox,
[class*="login"] .form-check {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 14px 0 !important;
}

[class*="login"] .custom-checkbox label,
[class*="login"] .form-check-label {
    font-size: 13.5px !important;
    color: #4B5563 !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}

[class*="login"] .col-md-6:last-child,
[class*="login"] .col-lg-6:last-child {
    padding: 0 !important;
    overflow: hidden !important;
    min-height: 100vh !important;
}

[class*="login"] .col-md-6:last-child img,
[class*="login"] .col-lg-6:last-child img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.login-logo img,
.auth-logo img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
}

.login-form-card,
.auth-card {
    max-width: 460px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width:767px) {

    .login-form-card,
    .auth-card {
        padding: 28px 18px !important;
    }
}

.login {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    place-content: center;
    height: 100%;
    width: 100%;
}

@media only screen and (max-width:767px) {
    .login {
        place-content: flex-start;
        padding: 50px 40px;
    }
}

@media only screen and (max-width:479px) {
    .login {
        padding: 30px 20px;
        height: auto;
    }
}

.login_wrapper {
    width: 475px;
}

.login_wrapper_logo img {
    height: 70px;
    width: auto;
    max-width: 100%;
}

@media only screen and (max-width:767px) {
    .login_wrapper {
        width: 100%;
    }
}

.login_wrapper_content h4 {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

@media only screen and (max-width:767px) {
    .login_wrapper_content h4 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:479px) {
    .login_wrapper_content h4 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width:767px) {
    .login_wrapper_content_signwith {
        text-align: center;
    }
}

.login_wrapper_content_signwith a {
    display: inline-block;
    background-color: #F7F7F7;
    padding: 12px 30px;
    color: #ffffff;
    font-size: 16px;
}

@media only screen and (max-width:767px) {
    .login_wrapper_content_signwith a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media only screen and (max-width:479px) {
    .login_wrapper_content_signwith a {
        width: 100%;
        text-align: center;
    }
}

.login_wrapper_content_signwith a:first-child {
    background-color: #395799;
}

.login_wrapper_content_signwith a:first-child:hover {
    background-color: #22396d;
}

.login_wrapper_content_signwith a:last-child {
    margin-left: 5px;
    background-color: #03ABF0;
}

.login_wrapper_content_signwith a:last-child:hover {
    background-color: #0181b4;
}

@media only screen and (max-width:767px) {
    .login_wrapper_content_signwith a:last-child {
        margin-left: 3px;
    }
}

@media only screen and (max-width:479px) {
    .login_wrapper_content_signwith a:last-child {
        margin-left: 0;
        margin-top: 5px;
    }
}

.login_wrapper_content_signwith a i {
    margin-right: 10px;
}

@media only screen and (max-width:767px) {
    .login_wrapper_content_signwith a i {
        margin-right: 5px;
    }
}

@media only screen and (max-width:479px) {
    .login_wrapper_content_signwith a i {
        margin-right: 10px;
    }
}

.login_wrapper_content p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    color: #00124E;
}

.login_wrapper_content p a {
    color: #4068FC;
}

.login_wrapper_content p a:hover {
    color: #00124E;
}

.login_wrapper_content p:last-child {
    font-weight: 500;
    color: #555555;
    text-align: center;
}

.login_wrapper_content form {
    margin-top: 45px;
}

@media only screen and (max-width:767px) {
    .login_wrapper_content form {
        margin-top: 35px;
    }
}

@media only screen and (max-width:479px) {
    .login_wrapper_content form {
        margin-top: 25px;
    }
}

.login_wrapper_content .input-control-input {
    border: none;
    border-bottom: 1px solid #E3E3E3;
    padding-left: 30px;
}

.login_wrapper_content .input-control-input:focus {
    border-color: #00124E;
}

.login_wrapper_content .input-control-input[type=submit] {
    margin-top: 60px;
}

@media only screen and (max-width:767px) {
    .login_wrapper_content .input-control-input[type=submit] {
        margin-top: 30px;
    }
}

.login_wrapper_content .input-control-icon {
    width: auto;
    z-index: -1;
}

.login_wrapper_content .input-control-span {
    padding-left: 30px;
    font-size: 14px;
    line-height: 1.5;
}

.login_wrapper_content .input-control-span a {
    text-decoration: underline;
    position: relative;
    z-index: 9;
    color: #4068FC;
}

.login_wrapper_content .input-control-span a:hover {
    color: #00124E;
}

.login_wrapper_content .input-control .checkbox {
    display: inline-block;
}

.login_wrapper_content .input-control .checkbox-title {
    padding-top: 0;
    padding-bottom: 0;
}

@media only screen and (max-width:767px) {
    .login_wrapper_content .input-control .checkbox-title {
        -webkit-line-clamp: 10;
    }
}

.login_wrapper_content .input-control .checkbox-title::before,
.login_wrapper_content .input-control .checkbox-title::after {
    top: 4px;
}

.login_wrapper_content .input-control .checkbox-title a {
    color: #4068FC;
    text-decoration: underline;
}

.login_wrapper_content .input-control .checkbox-title a:hover {
    color: #00124E;
}

.login_wrapper_content .input-control #forget {
    font-size: 14px;
    font-weight: 500;
    color: #4068FC;
}

.login_wrapper_content .input-control #forget:focus {
    color: #F00606;
}

.login_wrapper_content .d-flex {
    align-items: center;
    justify-content: space-between;
}

.login_wrapper .login_wrapper_signup_content {
    transition: opacity 15s ease-in-out;
}

.login_wrapper .login_wrapper_signup_content .checkbox input {
    left: 0;
    transform: translate(0px, -50%);
    width: 45%;
}

@media only screen and (max-width:767px) {
    .login_wrapper .login_wrapper_signup_content .checkbox input {
        width: 50%;
    }
}

@media only screen and (max-width:479px) {
    .login_wrapper .login_wrapper_signup_content .checkbox input {
        width: 65%;
    }
}

.login_wrapper .login_wrapper_signup_content .input-control-input {
    padding-left: 0;
}

.login_wrapper .login_wrapper_signup_content .login_wrapper_content_signwith a {
    padding: 12px 20px;
}

@media only screen and (max-width:767px) {
    .login_wrapper .login_wrapper_signup_content .login_wrapper_content_signwith a {
        padding: 10px 15px;
    }
}

.login_wrapper .saas_school_top_five_link_show .title {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    color: #555555;
}

.login_wrapper .saas_school_top_five_link_show .title::before {
    content: "";
    height: 2px;
    width: 100%;
    flex-grow: 1;
    background: #555555;
}

.login_wrapper .saas_school_top_five_link_show .title::after {
    content: "";
    height: 2px;
    width: 100%;
    flex-grow: 1;
    background: #555555;
}

.login_wrapper .saas_school_top_five_link_show .link_to_school {
    display: block;
    background: #4068FC;
    font-size: 11px;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.login_wrapper_logo img {
    height: 70px;
    width: auto;
    margin-left: 120px;
    max-width: 100%;
}

[class*="login"] h4::after,
.auth-card h4::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    margin-left: 135px;
    bottom: 0 !important;
    width: 42px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #F0B122, #DE3E2C) !important;
    border-radius: 2px !important;
}

@media only screen and (min-width:992px) {

    [class*="login"] h4::after,
    .auth-card h4::after {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        margin-left: 220px;
        bottom: 0 !important;
        width: 42px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #F0B122, #DE3E2C) !important;
        border-radius: 2px !important;
    }

    .login_wrapper_logo img {
        height: 70px;
        width: auto;
        margin-left: 199px;
        max-width: 100%;
    }
}

@media (max-width:767px) {

    [class*="login"] .col-md-6:last-child,
    [class*="login"] .col-lg-6:last-child {
        display: none !important;
    }

    [class*="login"] .col-md-6:first-child,
    [class*="login"] .col-lg-6:first-child {
        padding: 30px 20px !important;
    }
}

.about_us {
    background: #F8F9FA !important;
    padding: 90px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-top: 1px solid #E5E7EB !important;
    border-bottom: 1px solid #E5E7EB !important;
}

.about_us::before,
.about_us::after {
    display: none !important;
}

.about_us_img {
    position: relative !important;
    z-index: 1 !important;
    padding: 0 20px 20px 0 !important;
}

.about_us_img_inner {
    border-radius: 20px !important;
    box-shadow: none !important;
    overflow: visible !important;
    position: relative !important;
}

.about_us_img_inner::before {
    content: '' !important;
    position: absolute !important;
    top: 20px !important;
    left: -15px !important;
    width: 100% !important;
    height: 100% !important;
    background: #0A4D8C !important;
    border-radius: 20px !important;
    z-index: -1 !important;
    border: none !important;
    transition: all 0.5s ease !important;
}

.about_us_img_inner img {
    border-radius: 20px !important;
    width: 100% !important;
    min-height: 400px !important;
    object-fit: cover !important;
    position: relative !important;
    z-index: 2 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: transform 0.5s ease !important;
}

.about_us_img_inner:hover img {
    transform: translate(8px, -8px) !important;
}

.about_us_img_inner:hover::before {
    transform: translate(-8px, 8px) !important;
    background: #F0B122 !important;
}

.about_us_img::after {
    content: 'EST. 1993' !important;
    position: absolute !important;
    top: 40px !important;
    right: -5px !important;
    background: #F0B122 !important;
    color: #0A4D8C !important;
    padding: 12px 8px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    writing-mode: vertical-rl !important;
    transform: rotate(180deg) !important;
    border-radius: 6px !important;
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.15) !important;
    z-index: 3 !important;
}

.about_us_inner {
    padding-left: 30px !important;
    border-left: 4px solid #0A4D8C !important;
    position: relative !important;
}

.about_us_inner h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 40px !important;
    font-weight: 900 !important;
    color: #05335E !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
}

.about_us_inner h3::after {
    display: none !important;
}

.about_us_inner p,
.about_us_inner strong {
    font-size: 15.5px !important;
    color: #4B5563 !important;
    line-height: 1.7 !important;
    font-family: 'DM Sans', sans-serif !important;
}

.about_us_inner ul {
    margin: 25px 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    padding: 0 !important;
    list-style: none !important;
}

.about_us_inner ul li {
    background: #ffffff !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(10, 77, 140, 0.05) !important;
    transition: all 0.3s ease !important;
    font-size: 13.5px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    color: #05335E !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 70px !important;
}

.about_us_inner ul li:hover {
    border-color: #F0B122 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

.about_us_inner ul li i {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    background: rgba(10, 77, 140, 0.08) !important;
    color: #0A4D8C !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about_us_inner ul li i::before {
    font-family: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about_us_inner ul li:hover i {
    background: #0A4D8C !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
}

.about_us_inner_call {
    background: #05335E !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 15px !important;
    box-shadow: 0 6px 15px rgba(5, 51, 94, 0.2) !important;
    transition: transform 0.3s ease !important;
}

.about_us_inner_call:hover {
    transform: translateY(-3px) !important;
    background: #0A4D8C !important;
}

.about_us_inner_call a {
    color: #ffffff !important;
    font-size: 18px !important;
    letter-spacing: 1px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.about_us_inner_call a svg path,
.about_us_inner_call a i {
    fill: #F0B122 !important;
    color: #F0B122 !important;
}

@media (max-width:1100px) {
    .about_us_inner h3 {
        font-size: 34px !important;
    }

    .about_us_inner ul {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width:991px) {
    .about_us_inner {
        border-left: none !important;
        padding-left: 0 !important;
        margin-top: 30px !important;
    }

    .about_us_img {
        padding: 0 15px 15px 0 !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width:767px) {
    .about_us {
        padding: 50px 15px !important;
    }

    .about_us_img::after {
        display: none !important;
    }

    .about_us_inner h3 {
        font-size: 28px !important;
    }

    .about_us_inner_call {
        display: flex !important;
        width: 100% !important;
        padding: 15px 20px !important;
        box-sizing: border-box !important;
    }

    .about_us_inner_call a {
        width: 100% !important;
        justify-content: center !important;
        font-size: 16px !important;
    }
}

.about_us_inner ul li i {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    background: rgb(27 92 151) !important;
    color: #004281 !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.gallery_item {
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    border: 1px solid rgba(10, 77, 140, 0.05) !important;
    position: relative !important;
    background: #ffffff !important;
}

.gallery_item:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 25px 50px rgba(10, 77, 140, 0.15), 0 0 20px rgba(240, 177, 34, 0.1) !important;
    border-color: rgba(240, 177, 34, 0.3) !important;
}

.gallery_item_img {
    position: relative !important;
    overflow: hidden !important;
}

.gallery_item_img img {
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    will-change: transform;
}

.gallery_item:hover .gallery_item_img img {
    transform: scale(1.12) rotate(2.5deg) !important;
}

.gallery_item_img::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 77, 140, 0.8) 100%) !important;
    opacity: 0 !important;
    z-index: 1 !important;
    transition: opacity 0.5s ease !important;
    pointer-events: none !important;
}

.gallery_item:hover .gallery_item_img::before {
    opacity: 1 !important;
}

.gallery_item_img::after {
    content: '\f06e' !important;
    font-family: "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0) !important;
    color: #ffffff !important;
    font-size: 26px !important;
    z-index: 2 !important;
    background: rgba(240, 177, 34, 0.95) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    opacity: 0 !important;
}

.gallery_item:hover .gallery_item_img::after {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
}

.gallery_item_inner {
    position: relative !important;
    z-index: 2 !important;
    background: #ffffff !important;
    transition: all 0.4s ease !important;
    padding: 20px !important;
}

.gallery_item_inner::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 4px !important;
    background: #F0B122 !important;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.gallery_item:hover .gallery_item_inner::after {
    width: 100% !important;
}

.gallery_item_inner h4 {
    transition: color 0.3s ease !important;
}

.gallery_item:hover .gallery_item_inner h4 {
    color: #0A4D8C !important;
}

.section_title h2 {
    transition: transform 0.4s ease !important;
}

.section_title:hover h2 {
    transform: scale(1.03) !important;
    color: #0A4D8C !important;
}

.section_title_meta {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    cursor: default;
}

.section_title:hover .section_title_meta {
    background: #F0B122 !important;
    color: #ffffff !important;
    border-color: #F0B122 !important;
    box-shadow: 0 4px 15px rgba(240, 177, 34, 0.4) !important;
    transform: translateY(-2px) !important;
}

.section_title:hover .section_title_meta::before,
.section_title:hover .section_title_meta::after {
    color: #ffffff !important;
}

@media (max-width:767px) {
    .section_title_meta {
        animation: pulseBadge 2.5s infinite ease-in-out !important;
    }

    @keyframes pulseBadge {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(240, 177, 34, 0.4);
        }

        50% {
            transform: scale(1.06);
            box-shadow: 0 0 12px 6px rgba(240, 177, 34, 0.15);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(240, 177, 34, 0);
        }
    }

    .gallery_item_img img {
        animation: slowPan 12s infinite alternate ease-in-out !important;
        will-change: transform;
    }

    @keyframes slowPan {
        0% {
            transform: scale(1.1) translate(0, 0);
        }

        100% {
            transform: scale(1.1) translate(-3%, 3%);
        }
    }

    .gallery_item:active {
        transform: scale(0.96) !important;
        box-shadow: 0 5px 15px rgba(10, 77, 140, 0.1) !important;
        border-color: #F0B122 !important;
        transition: transform 0.1s ease !important;
    }

    .gallery_item:active .gallery_item_img::before {
        opacity: 1 !important;
    }

    .gallery_item:active .gallery_item_img::after {
        transform: translate(-50%, -50%) scale(1) !important;
        opacity: 1 !important;
        transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    }

    .gallery_item:active .gallery_item_inner::after {
        width: 100% !important;
        transition: width 0.2s ease !important;
    }

    .gallery_item:active .gallery_item_inner h4 {
        color: #0A4D8C !important;
    }
}

.gallery_item_inner {
    text-align: center;
    position: relative !important;
    z-index: 2 !important;
    background: #ffffff !important;
    transition: all 0.4s ease !important;
    padding: 20px !important;
}

.gallery_item_img::after {
    content: '\f06e' !important;
    font-family: "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0) !important;
    color: #ffffff !important;
    font-size: 24px !important;
    z-index: 2 !important;
    background: rgb(0 123 249 / 58%) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    opacity: 0 !important;
}

.zeynep,
.heading_mobile_menu.zeynep,
.heading_mobile_menu.zeynep .submenu {
    width: 280px !important;
    max-width: 80vw !important;
}

@media (max-width:360px) {

    .heading_mobile_menu.zeynep,
    .heading_mobile_menu.zeynep .submenu {
        width: 250px !important;
        max-width: 80vw !important;
    }
}

.reg_wrapper_item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.reg_wrapper_item h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark, #333);
    text-align: center;
}

.reg_wrapper_item label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

.reg_wrapper_item input,
.reg_wrapper_item select,
.reg_wrapper_item textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reg_wrapper_item input:focus,
.reg_wrapper_item select:focus,
.reg_wrapper_item textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
    outline: none;
}

.reg_wrapper_item button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reg_wrapper_item button:hover {
    background: #0056b3;
}

@media (max-width:768px) {
    .reg_wrapper_item {
        padding: 20px;
    }

    .reg_wrapper_item h2 {
        font-size: 20px;
    }
}

.gallery-section-premium {
    background: linear-gradient(135deg, #fdfbf7 0%, #f0f4f8 100%) !important;
    padding: 80px 0 !important;
}

.premium-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 15px;
    max-width: 1250px;
    margin: 0 auto;
}

.gallery_item {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 12px !important;
    position: relative !important;
    border: 1px solid rgba(240, 177, 34, 0.4) !important;
    box-shadow: 0 10px 30px rgba(5, 51, 94, 0.08), inset 0 0 0 6px #ffffff, inset 0 0 0 8px rgba(10, 77, 140, 0.08) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex;
    flex-direction: column;
}

.gallery_item:hover {
    transform: translateY(-12px) !important;
    border-color: #F0B122 !important;
    box-shadow: 0 25px 50px rgba(5, 51, 94, 0.15), 0 0 25px rgba(240, 177, 34, 0.2), inset 0 0 0 6px #ffffff, inset 0 0 0 8px #F0B122 !important;
}

.gallery_item_img {
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    height: 260px !important;
}

.gallery_item_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.gallery_item:hover .gallery_item_img img {
    transform: scale(1.12) rotate(2deg) !important;
}

.gallery_item_img::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, transparent 20%, rgba(5, 51, 94, 0.9) 100%) !important;
    opacity: 0 !important;
    z-index: 1 !important;
    transition: opacity 0.5s ease !important;
}

.gallery_item:hover .gallery_item_img::before {
    opacity: 1 !important;
}

.gallery_item_img::after {
    content: '\f06e' !important;
    font-family: "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0) !important;
    color: #05335E !important;
    font-size: 22px !important;
    z-index: 2 !important;
    background: #F0B122 !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    opacity: 0 !important;
}

.gallery_item:hover .gallery_item_img::after {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
}

.gallery_item_inner {
    text-align: center !important;
    padding: 24px 10px 10px !important;
    background: transparent !important;
    z-index: 2 !important;
}

.gallery_item_inner h4 {
    font-family: 'Playfair Display', serif !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #05335E !important;
    margin: 0 !important;
    transition: color 0.3s ease !important;
}

.gallery_item:hover .gallery_item_inner h4 {
    color: #C8920E !important;
}

@media (max-width:768px) {
    .gallery-section-premium {
        padding: 50px 0 !important;
    }

    .premium-gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }

    .gallery_item {
        padding: 10px !important;
        border-radius: 20px !important;
    }

    .gallery_item_img {
        height: 230px !important;
        border-radius: 12px !important;
    }

    .gallery_item_inner h4 {
        font-size: 17px !important;
    }
}

.gallery_item_img {
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    height: 185px !important;
}

.section_padding {
    padding: 40px 0;
}

.openning_hours_container {
    background: linear-gradient(135deg, #021E3A, #05335E);
    border-radius: var(--radius);
    padding: 36px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

.openning_hours_container .section_title {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
}

.openning_hours_container .section_title h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

.openning_hours_container .section_title p {
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
    line-height: 1.6;
}

.openning_hours_container .section_title button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--school-gold, #f0c040);
    color: #021E3A;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.openning_hours_container .section_title button:hover {
    background: #d4a020;
}

@media (max-width:768px) {
    .openning_hours_container .section_title {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .openning_hours_container .section_title h2,
    .openning_hours_container .section_title p,
    .openning_hours_container .section_title button {
        text-align: left !important;
    }
}

.openning_hours_container .section_title h2::after {
    margin: 13px 0px 1px 99px;
}

.heading_sub,
.heading_main,
.heading_mobile {
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

.notice-section .notification-container,
.notice-section .notification-container ul,
.notice-section .notification-container ul li {
    background: transparent !important;
    padding: 0px 0px 0px 0px !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

@media screen and (min-width:992px) {
    .about_us_inner .site_btn {
        background: #002855 !important;
        color: #ffffff !important;
        padding: 12px 30px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        font-size: 15px !important;
        margin: 0px 0px -11px 10px;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        border: 2px solid #002855 !important;
        transition: all 0.3s ease !important;
        display: inline-block !important;
        box-shadow: 0 8px 20px rgba(0, 40, 85, 0.2) !important;
        text-decoration: none !important;
    }
}

.gallery_item_img::after {
    content: '\f06e' !important;
    font-family: "Font Awesome 5 Free", "FontAwesome" !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0) !important;
    color: #ffffff !important;
    font-size: 22px !important;
    z-index: 2 !important;
    background: #009dff96 !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    opacity: 0 !important;
}

.course_item {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 12px !important;
    position: relative !important;
    border: 1px solid rgba(240, 177, 34, 0.4) !important;
    box-shadow: 0 10px 30px rgba(5, 51, 94, 0.08), inset 0 0 0 6px #ffffff, inset 0 0 0 8px rgba(10, 77, 140, 0.08) !important;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: block;
    margin-bottom: 24px;
}

.course_item:hover {
    transform: translateY(-12px) !important;
    border-color: #F0B122 !important;
    box-shadow: 0 25px 50px rgba(5, 51, 94, 0.15), 0 0 25px rgba(240, 177, 34, 0.2), inset 0 0 0 6px #ffffff, inset 0 0 0 8px #F0B122 !important;
}

.course_item_img {
    position: relative !important;
    height: 220px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

.course_item_img_inner {
    width: 100%;
    height: 100%;
}

.course_item_img_inner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.course_item:hover .course_item_img_inner img {
    transform: scale(1.12) rotate(2deg) !important;
}

.course_item_img_status {
    top: 16px !important;
    left: 16px !important;
    z-index: 2 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.course_item_inner {
    padding: 24px 12px 12px !important;
    text-align: left !important;
}

.course_item_inner h4 {
    transition: color 0.3s ease !important;
    margin-bottom: 8px !important;
}

.course_item:hover .course_item_inner h4 {
    color: #0A4D8C !important;
}

@media only screen and (max-width:767px) {
    .about_us_inner h3 {
        font-size: 25px !important;
        text-align: center;
    }
}

@media (max-width:768px) {

    .events .col-md-7 .section_title,
    .events .col-md-7 .events_schedule {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
}

@media (max-width:768px) {
    .events .col-md-7 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .events .col-md-7 .section_title,
    .events .col-md-7 .events_schedule {
        text-align: center !important;
        margin: 0 auto !important;
    }
}

.heading_sub_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-right: 46px;
    flex-wrap: nowrap;
}

.heading_sub_left ul li a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    margin-left: 29px;
    transition: var(--t);
    text-decoration: none;
}

.heading_main_search .input-control {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(10, 77, 140, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: var(--t);
    height: 48px;
    margin-right: 29px;
}

.heading_main_logo img {
    height: 85px !important;
    max-height: 85px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    mix-blend-mode: multiply !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: all .3s ease;
    margin: 0;
    margin-left: 0;
    padding: 5px 0;
    display: block;
}

.pb-themesection {
    padding-bottom: 0 !important;
}

@media (max-width:767px) {
    .footer_copyright_social {
        display: flex;
        align-items: center;
        list-style: none;
        justify-content: center;
        margin: 0;
        gap: 16px;
        padding: 0;
    }

    .footer-item-logo img {
        height: 70px;
        object-fit: contain;
        mix-blend-mode: luminosity;
        opacity: 0.92;
        margin-left: 66px;
        filter: brightness(0) invert(1);
        transition: var(--ease);
    }

    .footer-item>p {
        font-family: var(--font-body) !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.68) !important;
        text-align: center;
        line-height: 1.75 !important;
    }
}

.notice-section {
    border-radius: 16px !important;
    padding: 30px !important;
    margin: 32px auto 40px auto !important;
    width: 100% !important;
    max-width: 750px !important;
    margin-top: 11px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    box-sizing: border-box !important;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea,
.contact-form .form-control,
form .form-control {
    width: 100% !important;
    background: #F8F9FA !important;
    border: 2px solid rgba(10, 77, 140, 0.08) !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    color: #111827 !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
}

textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
.contact-form .form-control:focus,
form .form-control:focus {
    background: #ffffff !important;
    border-color: #F0B122 !important;
    box-shadow: 0 0 0 4px rgba(240, 177, 34, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    outline: none !important;
    transform: translateY(-2px) !important;
}

form label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #05335E !important;
    margin-bottom: 8px !important;
    display: block !important;
    letter-spacing: 0.3px !important;
}

button[type="submit"],
input[type="submit"],
.contact-form button,
form button {
    background: linear-gradient(135deg, #0A4D8C, #05335E) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 8px 20px rgba(10, 77, 140, 0.25) !important;
    width: auto !important;
    min-width: 200px !important;
    display: inline-block !important;
    margin-top: 10px !important;
    text-align: center !important;
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.contact-form button:hover,
form button:hover {
    background: linear-gradient(135deg, #F0B122, #C8920E) !important;
    color: #05335E !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 25px rgba(240, 177, 34, 0.4) !important;
}

@media (max-width:767px) {

    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    textarea,
    .contact-form .form-control,
    form .form-control {
        padding: 12px 16px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    button[type="submit"],
    input[type="submit"],
    .contact-form button,
    form button {
        width: 100% !important;
        padding: 15px 20px !important;
        font-size: 15px !important;
        border-radius: 12px !important;
    }
}

.heading_main_search .input-control-icon {
    background: #0A4D8C !important;
    border: none !important;
    width: 60px !important;
    height: 50px !important;
    min-width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0% !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: none !important;
}

.about_us_img {
    position: relative !important;
    z-index: 1 !important;
    width: 100%;
    padding: 0 20px 20px 0 !important;
}

.google_map {
    height: 405px !important;
    margin-bottom: 30px;
}

.about_us_img {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px 20px 0;
}

.about_us_img_inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about_us_img_inner img {
    width: 100%;
    height: auto;
    max-height: 420px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.about_us_img_inner img:hover {
    transform: scale(1.05);
}

@media (max-width:992px) {
    .about_us_img_inner img {
        max-height: 320px;
        min-height: 180px;
    }
}

@media (max-width:576px) {
    .about_us_img_inner img {
        max-height: 240px;
        min-height: 150px;
    }
}

.notice-section .notification-container ul li:nth-child(n+4) {
    display: none !important;
}

@media screen and (min-width:992px) {
    .notice-section {
        border-radius: 16px !important;
        padding: 30px !important;
        margin: 32px auto 40px auto !important;
        width: 100% !important;
        max-width: 1500px !important;
        margin-top: 11px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
        box-sizing: border-box !important;
    }
}

.notice-section {
    border-radius: 16px !important;
    padding: 30px !important;
    margin: 0px auto 0px auto !important;
    width: 100% !important;
    max-width: 1225px !important;
    margin-top: 30px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    box-sizing: border-box !important;
}

.notice-section .notification-container ul li {
    margin-bottom: 0px !important;
    list-style: none !important;
}

.about_us_img_inner {
    width: auto !important;
}

.about_us_img_inner img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

.noticeboard_inner_wrapper {
    padding: 0px 0px;
    background: var(--white);
    border: 1px solid rgba(10, 77, 140, 0.08);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog.index-blog {
    background: linear-gradient(180deg, #f0f4f8 0%, #fdfbf7 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.blog.index-blog::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 177, 34, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.blog.index-blog::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 77, 140, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.blog_item {
    background: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 30px rgba(10, 77, 140, 0.09), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: 1px solid rgba(240, 177, 34, 0.18) !important;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.blog_item:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 24px 48px rgba(10, 77, 140, 0.16), 0 0 24px rgba(240, 177, 34, 0.14) !important;
    border-color: rgba(240, 177, 34, 0.45) !important;
}

.blog_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--school-blue), var(--school-gold), var(--school-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

.blog_item:hover::before {
    transform: scaleX(1);
}

.blog_item_img {
    position: relative;
    overflow: hidden;
    height: 210px;
    flex-shrink: 0;
}

.blog_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog_item:hover .blog_item_img img {
    transform: scale(1.1);
}

.blog_item_img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(5, 51, 94, 0.65) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.blog_item:hover .blog_item_img::after {
    opacity: 1;
}

.blog_item_inner {
    padding: 22px 24px 24px !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    position: relative;
}

.blog_item_inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--school-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog_item:hover .blog_item_inner::before {
    opacity: 1;
}

.blog_item_meta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: var(--gold-dark) !important;
    background: var(--gold-pale) !important;
    border: 1px solid rgba(240, 177, 34, 0.30) !important;
    padding: 5px 12px !important;
    border-radius: var(--radius-full) !important;
    width: fit-content !important;
}

.blog_item_meta::before {
    content: '\f073';
    font-family: "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    font-size: 10px;
    color: var(--gold-dark);
}

.blog_item_title {
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    line-height: 1.45 !important;
    display: block !important;
    transition: color 0.25s ease !important;
    text-decoration: none !important;
}

.blog_item:hover .blog_item_title {
    color: var(--school-blue) !important;
}

.blog_item_readmore {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: var(--school-blue) !important;
    text-decoration: none !important;
    padding: 8px 18px !important;
    border: 1.5px solid rgba(10, 77, 140, 0.22) !important;
    border-radius: var(--radius-full) !important;
    transition: all 0.28s ease !important;
    margin-top: 4px !important;
    width: fit-content !important;
}

.blog_item_readmore i {
    font-size: 14px !important;
    transition: transform 0.28s ease !important;
}

.blog_item:hover .blog_item_readmore,
.blog_item_readmore:hover {
    background: linear-gradient(135deg, var(--school-blue), var(--school-dark-blue)) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(10, 77, 140, 0.28) !important;
}

.blog_item:hover .blog_item_readmore i,
.blog_item_readmore:hover i {
    transform: translateX(4px) !important;
}

@media (max-width:991px) {
    .blog.index-blog {
        padding: 60px 0 !important;
    }

    .blog_item_img {
        height: 180px;
    }
}

@media (max-width:767px) {
    .blog.index-blog {
        padding: 50px 0 !important;
    }

    .blog_item {
        border-radius: 16px !important;
    }

    .blog_item_img {
        height: 200px;
    }

    .blog_item_inner {
        padding: 18px 20px 20px !important;
    }

    .blog_item_title {
        font-size: 16px !important;
    }
}

@media (max-width:480px) {
    .blog.index-blog {
        padding: 40px 0 !important;
    }

    .blog_item_img {
        height: 180px;
    }
}

.home_speech_section .owl-item {
    display: flex !important;
}

.home_speech_section .owl-item .col-lg-4,
.home_speech_section .owl-item [class*='col-'] {
    width: 100% !important;
    flex: 1 !important;
}

.home_speech_section .owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.home_speech_section .owl-carousel .owl-item {
    display: flex !important;
    align-items: stretch !important;
}

.single_speech_item {
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.noticeboard {
    background: linear-gradient(135deg, #f0f4f8 0%, #fdfbf7 100%) !important;
    padding: 70px 0 !important;
}

.noticeboard_inner {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(10, 77, 140, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(240, 177, 34, 0.2) !important;
}

.noticeboard_inner_head {
    background: linear-gradient(135deg, #05335E 0%, #0A4D8C 60%, #0d5fa8 100%) !important;
    padding: 22px 32px !important;
    border-radius: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-bottom: 3px solid #F0B122 !important;
}

.noticeboard_inner_head::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 177, 34, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.noticeboard_inner_head h5 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.noticeboard_inner_head h5::before {
    content: '\f0f6';
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 18px;
    color: #F0B122;
}

.noticeboard_inner_wrapper {
    padding: 0 !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    border: none !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.noticeboard_inner_item {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(10, 77, 140, 0.07) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.noticeboard_inner_item:last-child {
    border-bottom: none !important;
}

.noticeboard_inner_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0A4D8C, #F0B122);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 0;
}

.noticeboard_inner_item:hover::before {
    opacity: 1 !important;
}

.noticeboard_inner_item:hover {
    background: linear-gradient(90deg, rgba(10, 77, 140, 0.03) 0%, transparent 100%) !important;
}

.noticeboard_inner_item_title {
    flex: 1 !important;
    padding: 16px 20px 16px 24px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #05335E !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    transition: color 0.25s ease !important;
}

.noticeboard_inner_item_title:hover {
    color: #0A4D8C !important;
}

.noticeboard_inner_item p {
    margin: 0 !important;
    padding: 16px 14px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #6B7A8D !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.noticeboard_inner_item p::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 11px;
    color: #F0B122;
}

.site_btn_border {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 16px !important;
    border: 1.5px solid rgba(10, 77, 140, 0.22) !important;
    border-radius: 50px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #0A4D8C !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    margin-right: 20px !important;
    transition: all 0.28s ease !important;
}

.site_btn_border i {
    font-size: 12px !important;
}

.site_btn_border:hover {
    background: #0A4D8C !important;
    color: #ffffff !important;
    border-color: #0A4D8C !important;
    box-shadow: 0 4px 14px rgba(10, 77, 140, 0.28) !important;
}

@media (max-width:767px) {
    .noticeboard {
        padding: 50px 0 !important;
    }

    .noticeboard_inner_head {
        padding: 18px 22px !important;
    }

    .noticeboard_inner_head h5 {
        font-size: 18px !important;
    }

    .noticeboard_inner_item_title {
        font-size: 14px !important;
        padding: 14px 16px 14px 20px !important;
    }

    .noticeboard_inner_item p {
        display: none !important;
    }

    .site_btn_border {
        margin-right: 14px !important;
        padding: 6px 12px !important;
    }
}

@media (max-width:480px) {
    .noticeboard_inner_item {
        flex-wrap: wrap !important;
    }

    .noticeboard_inner_item_title {
        padding: 14px 16px 8px !important;
        font-size: 13.5px !important;
    }

    .site_btn_border {
        margin: 0 16px 12px !important;
        width: calc(100% - 32px) !important;
        justify-content: center !important;
    }
}

.about_us_img_flex {
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
    height: 480px !important;
}

.about_us_img_flex_right {
    flex: 1.4 !important;
    order: 1 !important;
}

.about_us_img_flex_right .about_us_img_item {
    height: 100% !important;
}

.about_us_img_flex_right .large-img {
    height: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 36px rgba(10, 77, 140, 0.18) !important;
}

.about_us_img_flex_right .large-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.6s ease !important;
}

.about_us_img_flex_right .large-img:hover img {
    transform: scale(1.05) !important;
}

.about_us_img_flex_left {
    flex: 1 !important;
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.about_us_img_flex_left .about_us_img_item {
    flex: 1 !important;
}

.about_area_img_medium,
.about_us_img_item_img.small-img {
    height: 100% !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(10, 77, 140, 0.13) !important;
    border: 3px solid rgba(240, 177, 34, 0.25) !important;
    transition: all 0.4s ease !important;
}

.about_area_img_medium:hover,
.about_us_img_item_img.small-img:hover {
    border-color: rgba(240, 177, 34, 0.55) !important;
    box-shadow: 0 12px 32px rgba(240, 177, 34, 0.18) !important;
}

.about_area_img_medium img,
.about_us_img_item_img.small-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.about_area_img_medium:hover img,
.about_us_img_item_img.small-img:hover img {
    transform: scale(1.06) !important;
}

@media (max-width:991px) {
    .about_us_img_flex {
        height: 400px !important;
        gap: 10px !important;
    }
}

@media (max-width:767px) {
    .about_us_img_flex {
        height: auto !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .about_us_img_flex_right,
    .about_us_img_flex_left {
        flex: none !important;
        order: unset !important;
    }

    .about_us_img_flex_right {
        height: 260px !important;
    }

    .about_us_img_flex_left {
        flex-direction: row !important;
        height: 160px !important;
    }

    .about_us_img_flex_left .about_us_img_item {
        flex: 1 !important;
    }
}

.noticeboard_inner_wrapper {
    padding: 16px !important;
    gap: 10px !important;
}

.noticeboard_inner_item {
    border-bottom: none !important;
    border-radius: 12px !important;
    background: #f8fafc !important;
    border: 1px solid rgba(10, 77, 140, 0.08) !important;
    margin-bottom: 0 !important;
}

.noticeboard_inner_item:hover {
    background: #f0f6ff !important;
    border-color: rgba(10, 77, 140, 0.18) !important;
    box-shadow: 0 4px 16px rgba(10, 77, 140, 0.08) !important;
}

.noticeboard_inner_item::before {
    border-radius: 12px 0 0 12px !important;
}

.bradcrumb_area {
    position: relative !important;
    z-index: 10 !important;
    background: #f8fafc !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(10, 77, 140, 0.06) !important;
    margin-top: 140px !important;
    background-image: none !important;
}

.bradcrumb_area::before {
    display: none !important;
}

.bradcrumb_area_inner {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.bradcrumb_area_inner h1 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #64748b !important;
    font-family: 'DM Sans', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    display: block !important;
}

.bradcrumb_area_inner h1 span {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.bradcrumb_area_inner h1 span a {
    color: var(--school-blue) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.bradcrumb_area_inner h1 span a:hover {
    color: var(--school-gold) !important;
}

@media (max-width: 991px) {
    .bradcrumb_area {
        margin-top: 80px !important;
        padding: 12px 0 !important;
    }
}

@media (max-width: 767px) {
    .bradcrumb_area {
        margin-top: 76px !important;
        padding: 10px 0 !important;
    }

    .bradcrumb_area_inner h1,
    .bradcrumb_area_inner h1 span {
        font-size: 12.5px !important;
    }
}

section.pb-themesection.header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    z-index: 1 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.home_speech_section {
    overflow: visible !important;
}

.home_speech_section .owl-carousel {
    padding: 15px 0 !important;
    overflow: visible !important;
}

.home_speech_section .owl-stage-outer {
    padding: 25px 0 !important;
    margin: -25px 0 !important;
    overflow: hidden !important;
}

.single_speech_item {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 100% !important;
    min-height: auto !important;
    box-sizing: border-box !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(240, 177, 34, 0.18) !important;
    border-radius: 16px !important;
    padding: 35px 25px !important;
}

.single_speech_item .speech {
    font-family: var(--font-body) !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    margin: 15px 0 25px 0 !important;
    text-align: center !important;
    flex-grow: 1 !important;
    overflow: visible !important;
}

.single_speech_item .speech_details {
    margin-top: auto !important;
    align-self: center !important;
}

@media (max-width: 767px) {

    .events_schedule table,
    .events_schedule tbody,
    .events_schedule tr,
    .events_schedule td {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .events_schedule table {
        border-spacing: 0 !important;
    }

    .events_schedule table tr {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-bottom: 20px !important;
        position: relative !important;
        border: 1px solid rgba(10, 77, 140, 0.1) !important;
        padding-bottom: 12px !important;
    }

    .events_schedule table td {
        padding: 8px 15px !important;
        text-align: left !important;
    }

    .events_schedule table td:first-child {
        width: 100% !important;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
        text-align: center !important;
        padding: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
    }

    .events_schedule_date {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 6px !important;
    }

    .events_schedule_date h3,
    .events_schedule_date p {
        margin: 0 !important;
        padding: 0 !important;
    }

    .events_schedule table td:nth-child(2) {
        width: 100% !important;
        padding-top: 15px !important;
    }

    .events_schedule table td:nth-child(2) a.event_title h4 {
        max-width: 100% !important;
        white-space: normal !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
    }

    .events_schedule table td:nth-child(3),
    .events_schedule table td:nth-child(4) {
        width: 100% !important;
        padding: 4px 15px !important;
    }

    .events_schedule table td:nth-child(3) p,
    .events_schedule table td:nth-child(4) p {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-size: 13.5px !important;
    }

    .events_schedule table td:last-child {
        position: absolute !important;
        top: 12px !important;
        right: 15px !important;
        width: auto !important;
        background: transparent !important;
        padding: 0 !important;
    }
}

@media (max-width: 767px) {
    .home-app-download-stack {
        transform: scale(0.85) !important;
        transform-origin: right top !important;
    }

    .home-app-download-wrap {
        transform: translateX(112px) !important;
    }

    .home-app-download-wrap:active,
    .home-app-download-wrap:focus-within {
        transform: translateX(0) !important;
    }
}

body,
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

.heading_sub,
.heading_main,
.heading_mobile {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.about_us_img {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.about_us_img_inner img {
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
}

.heading_main_logo img {
    height: auto !important;
    max-height: 80px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    padding: 10px 0 !important;
    margin-left: 0 !important;
}

.heading_mobile .heading_logo img {
    height: auto !important;
    max-height: 50px !important;
    max-width: 200px !important;
    object-fit: contain !important;
}

@media (max-width: 767px) {

    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }

    .about_us_inner,
    .notice-section {
        padding: 15px !important;
    }

    .notice-section {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .events_schedule table,
    .events_schedule tbody,
    .events_schedule tr,
    .events_schedule td {
        display: block !important;
        width: 100% !important;
    }
}

.footer_copyright {
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
}

.footer_copyright_social {
    margin-bottom: 0 !important;
}

.archive_btns {
    margin-top: 30px;
    text-align: left;
}

.archive_btns .load_more_archive_btn {
    background: var(--brand, #00529b) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    padding: 12px 30px !important;
    border-radius: 5px !important;
    display: inline-block !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.archive_btns .load_more_archive_btn:hover {
    background: var(--gold, #f0b122) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.archive_card_wrapper_content>a:last-child {
    background: transparent !important;
    color: var(--brand, #00529b) !important;
    border: 1.5px solid var(--brand, #00529b) !important;
    padding: 8px 20px !important;
    border-radius: 4px !important;
    display: inline-block !important;
    margin-top: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1;
}

.archive_card_wrapper_content>a:last-child:hover {
    background: var(--brand, #00529b) !important;
    color: #fff !important;
}

.archive_card_wrapper_content>a:last-child::before,
.archive_card_wrapper_content>a:last-child::after {
    display: none !important;
}

.archive_widget_search {
    position: relative !important;
    z-index: 1;
    display: flex;
    align-items: center;
}

.archive_widget_search_icon {
    position: absolute !important;
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #666;
    font-size: 16px;
    pointer-events: none;
}

.archive_widget_search .input-control-input,
.archive_widget_search input#archiveAllContentSearch {
    padding: 15px 20px !important;
    padding-left: 50px !important;
    width: 100% !important;
    border: 1px solid #E3E3E3 !important;
    border-radius: 5px !important;
}

@media only screen and (max-width: 767px) {

    .events .row,
    .index-events .row,
    .section_padding.events .row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }

    .events .row>div[class*='col-'],
    .index-events .row>div[class*='col-'],
    .section_padding.events .row>div[class*='col-'] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        display: block !important;
    }

    .events_preview_img {
        width: 100% !important;
        height: auto !important;
        min-height: 250px !important;
        max-height: 350px !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 767px) {
   
    .heading_main .container,
    .heading_main .container-fluid,
    .heading_mobile .container,
    .hero_area .container,
    .hero_area .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

  
    .heading_main,
    .heading_mobile {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    
    .hero_area_inner {
        border-radius: 0 !important; 
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .heading_mobile {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important; /* Устанавливаем равные отступы по бокам */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .heading_mobile .heading_logo {
        margin-left: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .heading_mobile .heading_logo img {
        height: 45px !important; 
        width: auto !important;
        max-width: 180px !important;
    }


    .heading_mobile_thum {
        margin-right: 0 !important;
        padding: 5px !important;
    }
}


@media (max-width: 767px) {
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Удаляем все отступы у всех контейнеров в шапке */
    .heading_mobile > .container, 
    .heading_mobile > .container-fluid {
        padding-right: 0 !important;
        margin-right: 0 !important;
    }
}


.noticeboard_inner {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(10, 77, 140, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    border: 0px solid rgba(240, 177, 34, 0.2) !important;
}












.noticeboard .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important; /* Height equal karne ke liye */
}

/* Dono sides ke columns ko poori height lene par force karna */
.noticeboard .row > div[class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}

/* 2. Opening Hours aur Notice Board box dono ki height 100% karna */
.noticeboard .openning_hours_container,
.noticeboard .noticeboard_inner {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important; /* Extra space hatane ke liye */
}

/* 3. Notice Board ke andar ka content wrapper poori bachi hui height cover kare */
.noticeboard .noticeboard_inner_wrapper {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* Items ko barabar space me distribute karega */
    gap: 16px !important;
    padding: 24px !important;
    background: #ffffff !important;
}

/* 4. Strictly sirf 3 notices dikhane ke liye (Aapki image ke mutabik) */
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item:nth-child(n+4) {
    display: none !important;
}

/* 5. Ek individual Notice Card ka layout (Jaise image me hai) */
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 20px 24px !important;
    background: #f4f7fe !important; /* Soft light-blue background */
    border-radius: 8px !important;
    border: none !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    flex: 1 !important; /* Card vertical space barabar baant lenge */
}

/* 6. Title and Date Alignment */
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item a.noticeboard_inner_item_title {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0a4d8c !important; /* Blue color heading */
    text-decoration: none !important;
    line-height: 1.4 !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
    background: transparent !important;
}

.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item p {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    color: #718096 !important; /* Gray color date text */
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    background: transparent !important;
    display: block !important;
    text-align: left !important;
    width: auto !important;
}

/* Date ke purane icons ko hatane ke liye */
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item p::before {
    display: none !important;
}

/* 7. Read More Pill Button Design Match */
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item .site_btn_border {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 8px 20px !important;
    background: #ffffff !important;
    border: 1.5px solid #0a4d8c !important;
    color: #0a4d8c !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    margin: 0 !important;
}

.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item .site_btn_border:hover {
    background: #0a4d8c !important;
    color: #ffffff !important;
}

/* 8. LEFT HAND SIDE COLORED STRIPS (Borders) */
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item:nth-child(1) {
    border-left: 4px solid #38bdf8 !important; /* Sky Blue */
}
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item:nth-child(2) {
    border-left: 4px solid #0a4d8c !important; /* Deep Blue */
}
.noticeboard .noticeboard_inner_wrapper .noticeboard_inner_item:nth-child(3) {
    border-left: 4px solid #06b6d4 !important; /* Ocean Cyan */
}

/* Mobile responsive alignment update */
@media (max-width: 991px) {
    .noticeboard .row {
        flex-direction: column !important;
    }
    .noticeboard .openning_hours_container {
        margin-bottom: 30px !important;
    }
}
.mt-5 {
    margin-top: 0rem!important;
}


/* ==========================================================================
   KEWAL MOBILE PHONES KE LIYE FOOTER FIX (767px & BELOW)
   ========================================================================== */
@media only screen and (max-width: 767px) {
    
    /* 1. Pure copyright box ko center karna aur flex reset karna */
    .footer_copyright_inner {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    /* 2. Text elements ko aapas me ek line me laane ke liye inline force karna */
    .footer_copyright_inner p,
    .footer_copyright_inner span,
    .footer_copyright_inner div {
        display: inline !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: normal !important;
    }

    /* 3. "SK EduSoft Pro" wale text/link ko "Made By" ke sath jodna */
    .footer_copyright_inner a,
    .footer_copyright_inner strong,
    .footer_copyright_inner [class*="right"] {
        display: inline !important;
        margin-left: 4px !important; /* Made By ke baad thoda gap */
        padding: 0 !important;
    }

    /* 4. Social media icons ko text ke upar overlap hone se rokna */
    .footer_copyright_social {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 15px !important; /* Text se niche gap dene ke liye */
        padding: 0 !important;
    }
}

.master_header .container {
  max-width: 100%;       /* full width */
  padding: 0 0px;       /* thoda horizontal padding, equal left-right */
}

.master_header .row {
  margin-left: 0;
  margin-right: 0;       /* row ke negative margin reset */
}

.master_header .col-12 {
  padding-left: 0;
  padding-right: 0;      /* column ke andar extra padding hata diya */
}

.master_header .heading {
  width: 100%;           /* full width occupy kare */
  text-align: center;    /* content center ho jaye */
}





.blog.index-blog .row,
.gallery .row,
.premium-gallery-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important; /* Yeh sabhi cards ki height equal rakhega */
}

/* 2. Grid ke andar ke columns ko full height container lene ke liye force karna */
.blog.index-blog .row > div[class*="col-"],
.gallery .row > div[class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}

/* 3. Main Item Card Blueprint Layout (Hamesha full space lega) */
.blog_item,
.gallery_item,
.course_item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important; /* Card full automatic space lega */
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
    margin-bottom: 28px !important; /* Bottom spacing control */
}

/* 4. Image Wrapper to keep uniform dimensions */
.blog_item_img,
.gallery_item_img,
.course_item_img {
    width: 100% !important;
    height: 210px !important; /* Sabhi images ki fix wrapper height */
    min-height: 210px !important;
    max-height: 210px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important; /* Image ko dabne se rokega */
}

.blog_item_img img,
.gallery_item_img img,
.course_item_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 5. Card Body Inner Layout (Yeh text box bachi hui space auto-fill kar dega) */
.blog_item_inner,
.gallery_item_inner,
.course_item_inner {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important; /* Text bacha hua space barabar distribute karega */
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    padding: 22px 24px !important;
}

/* Titles and subtext margin control taaki buttons ya tags hamesha bottom aligned rahein */
.blog_item_title,
.gallery_item_inner h4,
.course_item_inner h4 {
    margin: 0 0 8px 0 !important;
    flex-shrink: 0 !important;
}

.blog_item_desc,
.gallery_item_desc {
    margin: 0 0 16px 0 !important;
    flex-grow: 1 !important; /* Desc text short hone par bhi card body stretched rahegi */
}

/* Mobile compatibility safeguard alignment */
@media (max-width: 767px) {
    .blog_item_img,
    .gallery_item_img {
        height: 180px !important;
        min-height: 180px !important;
    }
}



.noticeboard .noticeboard_inner_wrapper {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 5px !important;
    padding: 5px !important;
    background: #ffffff !important;
}




