/*=====================================================
PODAR ORT INTERNATIONAL SCHOOL - WORLI
=====================================================*/

/*=========================================
GLOBAL RESET & BASE STYLES
=========================================*/
:root {
    --primary:#5b4775;
    --secondary:#f0c94b;
    --white:#ffffff;
    --text:#555555;
    --transition:.30s ease;
    --container:1320px;
    --header-height: 120px;
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    font-family:'Poppins',sans-serif;
    font-size:15px;
    color:var(--text);
    overflow-x:hidden;
}

img {
    max-width:100%;
    display:block;
}

a {
    text-decoration:none;
    transition:var(--transition);
}

ul {
    margin:0;
    padding:0;
    list-style:none;
}

.container-custom {
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}

p {
    line-height: 1.6;
}

/*=========================================
TOPBAR
=========================================*/
.topbar {
    background:#5b4775;
    color:#fff;
}

.topbar .container-custom {
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:48px;
}

.topbar-left p {
    margin:0;
    font-size:0.8125rem;
    font-weight:400;
    color:#fff;
}

.topbar-right {
    display:flex;
    align-items:center;
    gap:30px;
}

.top-links {
    display:flex;
    align-items:center;
    gap:24px;
}

.top-links a {
    color:#fff;
    font-size:0.8125rem;
    font-weight:400;
}

.top-links a:hover {
    color:#f0c94b;
}

.social-icons {
    display:flex;
    align-items:center;
    gap:6px;
}

.social-icons a {
    width:30px;
    height:30px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#000;
    font-size:13px;
    background-color: #fff;
}

.social-icons a:hover {
    background:#fff;
    color:#5b4775;
}

/* =========================================================
Topbar Social Icons Hover
========================================================= */
.topbar-social a {
    transition:all .35s ease;
}

/* Facebook */
.topbar-social .social-facebook:hover {
    background:#3b5a9a;
    color:#ffffff;
}

/* Instagram */
.topbar-social .social-instagram:hover {
    background:linear-gradient(
        45deg,
        #405DE6 0%,
        #833AB4 35%,
        #E1306C 60%,
        #F77737 80%,
        #FFDC80 100%
    );
    color:#FFFFFF;
}

/* X (Twitter) */
.topbar-social .social-x:hover {
    background:#000000;
    color:#FFFFFF;
}

/* YouTube */
.topbar-social .social-youtube:hover {
    background:#FF0000;
    color:#ffffff;
}

/* LinkedIn */
.topbar-social .social-linkedin:hover {
    background:#0A66C2;
    color:#ffffff;
}

/*=========================================
HEADER
=========================================*/
.main-header {
    position:relative;
    background:#543c72;
    height:72px;
    z-index:999;
}

.header-wrapper {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:72px;
}

/*=========================================
LOGO
=========================================*/
.header-logo {
    position:absolute;
    left:50%;
    top:-18px;
    transform:translateX(-50%);
    z-index:100;
}

.header-logo img {
    width:145px;
    height:auto;
}

.mobile-logo img {
    width:90px;
    height:auto;
}

/*=========================================
LEFT & RIGHT MENUS
=========================================*/
.menu-left,
.menu-right {
    flex:0 0 42%;
}

.menu-left>ul,
.menu-right>ul {
    display:flex;
    align-items:center;
    min-height:72px;
}

.menu-left>ul {
    justify-content:flex-start;
}

.menu-right>ul {
    justify-content:flex-end;
}

.menu-left>ul>li,
.menu-right>ul>li {
    position:relative;
}

.menu-left>ul>li {
    margin-right:32px;
}

.menu-right>ul>li {
    margin-left:32px;
}

.menu-left>ul>li:last-child {
    margin-right:0;
}

.menu-right>ul>li:first-child {
    margin-left:0;
}

.menu-left>ul>li>a,
.menu-right>ul>li>a {
    font-family:'Open Sans',sans-serif;
    display:block;
    height:72px;
    line-height:72px;
    color:#ffffff;
    font-size:0.8125rem;
    font-weight:400;
    white-space:nowrap;
}

.menu-left>ul>li>a:hover,
.menu-right>ul>li>a:hover {
    color:#ffcc2a;
}

/*=========================================
DROPDOWN
=========================================*/
.has-dropdown {
    position:relative;
}

.has-dropdown>a {
    position:relative;
    z-index:10;
}

.dropdown-menu {
    position:absolute;
    left:0;
    top:55px;
    min-width:240px;
    background:#7a4d95;
    border-top:3px solid #ffcc2a;
    display:block;
    padding:0;
    margin:0;
    border-radius:0;
    box-shadow:0 10px 20px rgba(0,0,0,.18);
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .25s ease;
}

.has-dropdown:hover>.dropdown-menu {
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li {
    border-bottom:1px solid rgba(255,255,255,.08);
}

.dropdown-menu li:last-child {
    border-bottom:none;
}

.dropdown-menu a {
    font-family: Open Sans,sans-serif;
    display:block;
    padding:10px 22px;
    color:#ffffff;
    font-size:0.89rem;
    font-weight:400;
    line-height:1.5;
    white-space:normal;
}

.dropdown-menu a:hover {
    background:#8654a1;
    color:#ffcc2a;
}

/*=========================================
MENU ARROW
=========================================*/
.has-dropdown>a::after {
    content:"\f107";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:0.625rem;
    margin-left:0.5rem;
    display:inline-block;
    vertical-align:middle;
    transition:transform .25s ease;
}

/*=========================================
STICKY HEADER
=========================================*/
.main-header.fixed {
    position:fixed;
    left:0;
    top:0;
    width:100%;
    animation:headerDown .35s ease;
}

/*=========================================
DESKTOP / MOBILE VISIBILITY
=========================================*/
.desktop-header {
    display:block;
}

.mobile-header {
    display:none;
}

.mobile-menu {
    display:none;
}

@keyframes headerDown {
    from {
        top:-80px;
    }

    to {
        top:0;
    }
}

/*=========================================
MOBILE
=========================================*/
.mobile-toggle {
    display:none;
    border:0;
    background:none;
    padding:0;
    outline:none;
    box-shadow:none;
}

/* =========================================================
Hero Slider
========================================================= */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: calc(100vh - var(--header-height));
}

.hero-slider .carousel-item picture,
.hero-slider .carousel-item picture img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slider .carousel-item picture img {
    object-fit: cover;
    object-position: center center;
}

/* =========================================================
Hero Caption
========================================================= */
.hero-slider .carousel-caption {
    left: 50%;
    right: auto;
    bottom: 10%;
    transform: translateX(-50%);
    width: auto;
    padding: 0;
}

.hero-caption {
    display: inline-block;
    background: rgba(0, 0, 0, 0.25);
    padding: 14px 40px;
}

.hero-caption h2 {
    margin: 0;
    color: #ffffff;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}

/* =========================================================
Carousel Indicators
========================================================= */

/* =========================================================
Watch Portis in Action
========================================================= */
.watch-portis {
    background: #483248;
    padding: 25px 0;
}

.watch-portis-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    color: #ffffff;
    text-decoration: none;
    transition: all .3s ease;
}

.watch-portis-link:hover {
    color: #ffffff;
}

.watch-portis-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-portis-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.watch-portis-icon svg {
    width: 70px;
    height: 70px;
    display: block;
    transition: transform .3s ease;
}

.watch-portis-link:hover .watch-portis-icon svg {
    transform: scale(1.08);
}

.watch-portis-title {
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.watch-portis-divider {
    width: 2px;
    height: 70px;
    background: #ffffff;
}

.watch-portis-click {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Hover Effects */
.watch-portis-link:hover .watch-portis-icon i {
    transform: scale(1.1);
}

/* =========================================================
Common Home Sections
========================================================= */
.home-section {
    width:100%;
}

.section-content {
    height: 100%;
    padding: 65px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-light {
    background: #f4f4f4;
}

.section-primary {
    background: var(--primary-color);
    color: #fff;
}

.section-dark {
    background: #222;
    color: #fff;
}

.section-heading {
    margin:0;
    color:#804b9a;
    font-size:3rem;
    font-weight:700;
    line-height:1;
    letter-spacing:-0.2rem;
}

.section-divider {
    width:80px;
    height:8px;
    background:#ffc927;
    margin:18px 0 25px;
}

.section-subheading {
    margin:0 0 22px;
    color:#804b9a;
    font-size:2.4rem;
    font-weight:700;
    line-height:1.35;
    letter-spacing:-0.1rem;
}

.section-content p {
    margin-bottom:18px;
    color:#818898;
    font-size:1.1rem;
    font-weight:400;
    line-height:1.55;
}

.section-image {
    height:100%;
}

.section-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================================
Section CTA Link
========================================================= */
.section-link {
    display: inline-block;
    align-self: flex-start;
    margin-top: 10px;
    padding: 8px 18px;
    background: #804a9a;
    border: 1px solid #804a9a;
    border-radius: 20px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-link:hover,
.section-link:focus {
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid #804a9a;
}

/* =========================================================
Holistic Experience
========================================================= */
.section-purple {
    background:#804a9a;
}

.section-heading-white {
    color:#ffffff;
}

.section-text-white {
    color:#ffffff !important;
}

.section-link-white {
    display:inline-block;
    align-self:flex-start;
    margin-top:10px;
    padding:8px 18px;
    background:#ffffff;
    border:1px solid #ffffff;
    border-radius:20px;
    color:#804a9a;
    text-decoration:none;
    font-size:1rem;
    font-weight:400;
    transition:all .3s ease;
}

.section-link-white:hover {
    background:transparent;
    color:#ffffff;
    border-color:#ffffff;
}

/* ===============================
Carousel
================================ */
#holisticCarousel,
#holisticCarousel .carousel-inner,
#holisticCarousel .carousel-item {
    height:100%;
}

#holisticCarousel img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================================
Bootstrap Carousel Themes
========================================================= */

/* Common Indicators */
.carousel-theme-light .carousel-indicators,
.carousel-theme-dark .carousel-indicators {
    margin-bottom:18px;
}

.carousel-theme-light .carousel-indicators button,
.carousel-theme-dark .carousel-indicators button {
    width:14px;
    height:14px;
    margin:0 6px;
    border-radius:50%;
    opacity:1;
    transition:all .3s ease;
}

/* ===================================
Light Theme
=================================== */
.carousel-theme-light .carousel-indicators button {
    background:#ffffff;
    border:2px solid #ffffff;
}

.carousel-theme-light .carousel-indicators button:hover {
    background:var(--primary-color);
    border-color:var(--primary-color);
}

.carousel-theme-light .carousel-indicators .active {
    background:var(--primary-color);
    border-color:var(--primary-color);
}

/* ===================================
Dark Theme
=================================== */
.carousel-theme-dark .carousel-indicators button {
    background:#5d2f73;
    border:none;
}

.carousel-theme-dark .carousel-indicators button:hover {
    background:#ffffff;
}

.carousel-theme-dark .carousel-indicators .active {
    background:#ffffff;
}

/* =========================================================
Enquiry Form
========================================================= */
.enquiry-form {
    margin-top:25px;
}

.enquiry-form .row {
    margin-bottom:5px;
}

.enquiry-form .form-group {
    margin-bottom:5px;
}

.enquiry-form label {
    display:block;
    margin-bottom:8px;
    color:#7f8796;
    font-size:1rem;
    font-weight:500;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    height:46px;
    border:1px solid #dddddd;
    border-radius:0;
    box-shadow:none;
    font-size:1rem;
    color:#999999;
    padding:10px 15px;
    transition:all .3s ease;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color:var(--primary-color);
    box-shadow:none;
}

.enquiry-form .form-control::placeholder {
    color:#aaaaaa;
}

.error-message {
    display:block;
    margin-top:8px;
    color:#d60000;
    font-size:1rem;
    min-height:18px;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color:#d60000;
}

.enquiry-submit {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100px;
    height:32px;
    background:#6a80a9;
    border: none;
    border-radius:30px;
    color:#ffffff;
    text-decoration:none;
    font-size:1rem;
    font-weight:400;
    transition:all .3s ease;
}

.enquiry-submit:hover {
    background:#61759a;
    color:#ffffff;
}

.section-intro {
    margin-bottom:25px;
    color:#7d7d7d;
    font-size:1.35rem;
    line-height:1.7;
}

/* =========================================================
Form Status
========================================================= */
.form-status {
    display:none;
    margin-top:20px;
    padding:15px;
    font-size:1rem;
    line-height:1.6;
    border-radius:0;
}

.form-status.show {
    display:block;
}

.form-status.success {
    background:#eef9ef;
    border:1px solid #4caf50;
    color:#2e7d32;
}

.form-status.error {
    /* background:#fff8d7; */
    border:2px solid #f2d675;
    color:#666666;
}

.enquiry-submit:disabled {
    opacity:.7;
    cursor:not-allowed;
}

.enquiry-form .form-control.is-invalid,
.enquiry-form .form-select.is-invalid {
    border-color:#d60000;
}

.enquiry-form .form-control.is-valid,
.enquiry-form .form-select.is-valid {
    border-color:#dddddd;
}

/* =========================================================
Gallery Section
========================================================= */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

/* =========================================================
Header
========================================================= */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.gallery-header .section-link {
    margin-top: 8px;
}

.gallery-viewall-mobile {
    display: none;
}

/* =========================================================
Swiper
========================================================= */
.gallery-slider {
    position: relative;
    padding: 0 45px;
}

.gallerySwiper {
    position: relative;
    overflow: hidden;
}

.gallerySwiper .swiper-wrapper {
    align-items: stretch;
}

.gallerySwiper .swiper-slide {
    height: auto;
}

/* =========================================================
Gallery Card
========================================================= */
.gallery-card-link {
    display: block;
    text-decoration: none;
}

.gallery-card {
    background: #ffffff;
    height: 100%;
    transition: all .35s ease;
}

.gallery-image {
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-content {
    background: #804a9a;
    padding: 18px 22px;
    min-height: 78px;
    display: flex;
    align-items: center;
}

.gallery-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

/* =========================================================
Navigation Arrows
========================================================= */
.gallery-prev,
.gallery-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
    color: #b7b7b7;
    font-size: 3.2rem;
    cursor: pointer;
    transition: .3s;
    user-select: none;
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

.gallery-prev:hover,
.gallery-next:hover {
    color: #804a9a;
}

/* =========================================================
Hide Swiper Default Buttons
========================================================= */
.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

/* =========================================================
Tablet
========================================================= */
@media (max-width:991px) {
    .gallery-section {
        padding:70px 0;
    }

    .gallery-header {
        flex-direction:column;
        gap:25px;
    }

    .gallery-header .section-link {
        align-self:flex-start;
    }

    .gallery-slider {
        padding:0 18px;
    }

    .gallery-image img {
        height:320px;
    }

    .gallery-prev {
        left:-2px;
    }

    .gallery-next {
        right:-2px;
    }
}

/* =========================================================
Mobile
========================================================= */
@media (max-width:767px) {
    .gallery-section {
        padding:60px 0;
    }

    .gallery-header {
        margin-bottom:30px;
    }

    .gallery-header .section-link {
        display:none;
    }

    .gallery-slider {
        padding:0 12px;
    }

    .gallery-image img {
        height:250px;
    }

    .gallery-content {
        padding:16px 18px;
    }

    .gallery-content h3 {
        font-size:1.2rem;
    }

    .gallery-prev,
.gallery-next {
        font-size:2rem;
        top:40%;
    }

    .gallery-prev {
        left:0;
    }

    .gallery-next {
        right:0;
    }

    .gallery-viewall-mobile {
        display:flex;
        justify-content:center;
        margin-top:30px;
    }
}

/* =========================================================
Voices from the Community
========================================================= */

/* =========================================================
Voices from the Community
========================================================= */
.community-section {
    padding:10px 0 40px 0;
    background:#ffffff;
}

.community-video {
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    border-radius:0;
}

.community-video iframe {
    display:block;
    width:100%;
    height:100%;
    border:0;
}

.community-video:hover {
    transform:translateY(-3px);
    transition:.3s ease;
}

@media (max-width:991px) {
    .community-section {
        padding:70px 0;
    }
}

@media (max-width:767px) {
    .community-section {
        padding:60px 0;
    }
}

/* =========================================================
Memberships & Alliances
========================================================= */
.memberships-section {
    background:#804a9a;
    padding:80px 0;
    overflow:hidden;
}

/* =========================================================
Heading
========================================================= */
.memberships-heading {
    color:#ffffff;
    font-size:3rem;
    font-weight:700;
    margin-bottom:12px;
}

/* =========================================================
Swiper
========================================================= */
.membershipsSwiper {
    margin-top:50px;
    overflow:hidden;
}

.membershipsSwiper .swiper-wrapper {
    align-items:center;
}

.membershipsSwiper .swiper-slide {
    height:auto;
}

/* =========================================================
Logo Card
========================================================= */
.membership-card {
    background:#ffffff;
    border-radius:0;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:5px;
    transition:all .35s ease;
}

.membership-card img {
    max-width:100%;
    max-height:70px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:transform .35s ease;
}

.membership-card:hover {
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.membership-card:hover img {
    transform:scale(1.05);
}

/* =========================================================
Tablet
========================================================= */
@media (max-width:991px) {
    .memberships-section {
        padding:70px 0;
    }

    .memberships-heading {
        font-size:3.4rem;
    }

    .membership-card {
        height:110px;
        padding:18px;
    }

    .membership-card img {
        max-height:60px;
    }
}

/* =========================================================
Mobile
========================================================= */
@media (max-width:767px) {
    .memberships-section {
        padding:60px 0;
    }

    .memberships-heading {
        font-size:2.8rem;
    }

    .membershipsSwiper {
        margin-top:35px;
    }

    .membership-card {
        height:95px;
        padding:15px;
    }

    .membership-card img {
        max-height:48px;
    }
}

/* =========================================================
Pre Footer
========================================================= */
.pre-footer {
    background:#804a9a;
    padding:50px 0 30px;
}

/* =========================================================
Quick Links
========================================================= */
.pre-footer-links {
    margin:0;
    padding:0;
    list-style:none;
}

.pre-footer-links li {
    margin-bottom:10px;
}

.pre-footer-links li:last-child {
    margin-bottom:0;
}

.pre-footer-links a {
    color:#ffffff;
    font-size:1.12rem;
    font-weight:400;
    line-height:12px;
    text-decoration:none;
    transition:all .3s ease;
}

.pre-footer-links a:hover {
    color:#ffcc29;
}

/* =========================================================
Contact
========================================================= */
.pre-footer-title {
    color:#ffffff;
    font-size:1.3rem;
    font-weight:700;
    margin-bottom:18px;
}

.pre-footer-address {
    color:#ffffff;
    font-size:0.9rem;
    font-style:normal;
    line-height:1.8;
    margin-bottom:25px;
}

.pre-footer-map {
    display:inline-block;
    padding:5px 12px;
    background:#ffffff;
    color:#804a9a;
    border:1px solid #ffffff;
    border-radius:30px;
    font-size:0.75rem;
    font-weight:400;
    text-decoration:none;
    transition:all .3s ease;
    margin-bottom:28px;
}

.pre-footer-map:hover {
    background:transparent;
    color:#ffffff;
}

.pre-footer-contact p {
    margin-bottom:5px;
    color:#ffffff;
    font-size:0.9rem;
}

.pre-footer-contact a {
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.pre-footer-contact a:hover {
    color:#ffcc29;
}

/* =========================================================
Logo
========================================================= */
.pre-footer-logo {
    max-width:120px;
    width:100%;
    height:auto;
    opacity:.9;
}

/* =========================================================
Divider
========================================================= */
.pre-footer-divider {
    width:100%;
    height:2px;
    background:#5d3272;
    margin-top:55px;
}

/* =========================================================
Tablet
========================================================= */
@media(max-width:991px) {
    .pre-footer {
        padding:70px 0 30px;
    }

    .pre-footer-title {
        margin-top:10px;
    }

    .pre-footer-logo {
        max-width:150px;
        margin:0 auto;
        display:block;
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .pre-footer {
        padding:60px 0 25px;
        text-align:left;
    }

    .pre-footer-links {
        margin-bottom:10px;
    }

    .pre-footer-links li {
        margin-bottom:16px;
    }

    .pre-footer-links a {
        font-size:1.2rem;
    }

    .pre-footer-title {
        font-size:1.4rem;
        margin-top:15px;
        margin-bottom: 5px;
    }

    .pre-footer-address {
        font-size:1rem;
        margin-bottom: 10px;
    }

    .pre-footer-map {
        margin-left:auto;
        margin-right:auto;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .pre-footer-contact {
        margin-top:10px;
    }

    .pre-footer-logo {
        margin-top:20px;
        max-width:140px;
    }

    .pre-footer-divider {
        margin-top:40px;
    }
}

/* =========================================================
Footer
========================================================= */
.footer {
    background:#804a9a;
    padding:10px 0 25px 0;
}

.footer-top {
    margin-bottom:20px;
}

/* =========================================================
Logos
========================================================= */
.footer-logos {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
}

.footer-logos img {
    height:35px;
    width:auto;
    display:block;
}

/* =========================================================
Social
========================================================= */
.footer-social {
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    height:100%;
}

.footer-social a {
    width:26px;
    height:26px;
    border-radius:50%;
    background:#ffffff;
    color:#92799e;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1rem;
    text-decoration:none;
    transition:.3s ease;
}

.footer-social a:hover {
    color:#4d3a63;
    transform:translateY(-3px);
}

/* =========================================================
Copyright
========================================================= */
.footer-copy {
    margin-top:5px;
    color:#ffffff;
    font-size:0.8rem;
    line-height:1.7;
}

/* =========================================================
Tablet
========================================================= */
@media(max-width:991px) {
    .footer-logos {
        justify-content:center;
    }

    .footer-social {
        justify-content:center;
        margin-top:30px;
    }

    .footer-copy {
        text-align:center;
        margin-top:25px;
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .footer {
        padding:20px 0;
    }

    .footer-logos {
        gap:10px;
    }

    .footer-logos img {
        height:42px;
    }

    .footer-social a {
        width:38px;
        height:38px;
        font-size:1.6rem;
    }

    .footer-copy {
        font-size:1rem;
    }
}

/* =========================================================
Floating Contact
========================================================= */
.floating-contact {
    position:fixed;
    right:25px;
    bottom:125px;
    width:70px;
    height:70px;
    border:4px solid #804a9a;
    border-radius:50%;
    background:#ffffff;
    color:#804a9a;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2.2rem;
    cursor:pointer;
    transition:all .35s ease;
    z-index:9998;
    /* box-shadow:0 6px 18px rgba(0,0,0,.18); */
}

.floating-contact:hover {
    /* background:#804a9a; 
    color:#ffffff;
    transform:translateY(-3px);*/
}

.floating-contact:focus {
    outline:none;
    box-shadow:0 0 0 4px rgba(128,74,154,.25);
}

.floating-contact i{
        transform: rotate(180deg);
}

/* =========================================================
Contact Modal
========================================================= */
.contact-modal {
    background:#804a9a;
    border:none;
    border-radius:8px;
    overflow:visible;
    color:#ffffff;
    position:relative;
}

/* Close Button */
.contact-modal-close {
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    width:30px;
    height:30px;
    border:none;
    background:#111111;
    color:#ffffff;
    font-size:1.4rem;
    cursor:pointer;
    transition:.3s ease;
    z-index:10;
}

.contact-modal-close:hover {
    background:#000000;
}

/* Body */
.contact-modal .modal-body {
    padding:45px 35px 35px;
}

/* =========================================================
Contact Item
========================================================= */
.contact-item {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:35px;
}

.contact-item:last-child {
    margin-bottom:0;
}

.contact-item i {
    width:32px;
    text-align:center;
    font-size:1rem;
    color:#ffffff;
}

.contact-item a {
    color:#ffffff;
    font-size:1rem;
    font-weight:500;
    text-decoration:none;
    transition:.3s ease;
}

.contact-item a:hover {
    color:#ffcc29;
}

/* =========================================================
Download Heading
========================================================= */
.contact-download-title {
    font-size:2.2rem;
    font-weight:600;
    margin:10px 0 35px;
    color:#ffffff;
}

/* =========================================================
Bootstrap Modal
========================================================= */
.modal-backdrop.show {
    opacity:.75;
}

#contactModal .modal-dialog {
    max-width:400px;
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .floating-contact {
        width:46px;
        height:46px;
        right:15px;
        bottom:75px;
        font-size:1.8rem;
    }

    .contact-modal .modal-body {
        padding:45px 25px 30px;
    }

    .contact-modal-close {
        width:42px;
        height:42px;
        top:-22px;
        font-size:2rem;
    }

    .contact-item {
        gap:10px;
        margin-bottom:25px;
    }

    .contact-item i {
        font-size:1rem;
    }

    .contact-item a {
        font-size:1rem;
        word-break:break-word;
    }

    .contact-download-title {
        font-size:1.9rem;
        margin:5px 0 25px;
    }
}

/* =========================================================
Back To Top
========================================================= */
.back-to-top {
    position:fixed;
    right:10px;
    bottom:0;
    width:49px;
    height:48px;
    background:rgba(64, 64, 64, 0.75);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border: none;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .35s ease;
    z-index:9999;
}

.back-to-top.show {
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover {
    background:rgba(64, 64, 64, 0.75);
}

.back-to-top i {
    transition:.3s;
}

.back-to-top:hover i {
    color: #0A66C2;
    transform:translateY(-2px);
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .back-to-top {
        width:48px;
        height:48px;
        right:15px;
        bottom:15px;
        font-size:1.7rem;
    }
}

/* =========================================================
Page Banner
========================================================= */
.page-banner {
    position:relative;
    overflow:hidden;
}

.page-banner img {
    width:100%;
    height: 100%;
    display:block;
    height:auto;
}

/* Desktop */
@media (min-width:992px) {
    .page-banner {
        height:420px;
    }
}

/* Tablet */
@media (min-width:768px) and (max-width:991px) {
    .page-banner {
        height:320px;
    }
}

/* Mobile */
@media(max-width:767px) {
    .page-banner {
        height: 100vh;
    }

    .page-banner img {
        height: 100%;
        object-fit: cover;
    }
}

/*=====================================================
MISSION, VISION & VALUES - PODAR ORT INTERNATIONAL SCHOOL
Scoped styles for the inner content only.
Relies on existing global tokens from style.css:
--primary, --secondary, --white, --text, --transition, --container
and the existing global .section-divider class.
=====================================================*/

/* =========================================================
Vision / Mission / Values Rows
========================================================= */
.mvv-wrap {
    overflow:hidden;
}

.mvv-row + .mvv-row {
    border-top:1px solid #eeeeee;
}

.mvv-content {
    height:100%;
    padding:55px 50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.mvv-heading {
    margin:0;
    font-size:1.8rem;
    font-weight:800;
    color:#2e353e;
}

.mvv-content p {
    margin:0;
    font-size:1.1rem;
    line-height:1.9;
    color:var(--text);
}

/* =========================================================
Values List
========================================================= */
.mvv-values-list {
    list-style:none;
    margin:0;
    padding:0;
}

.mvv-values-list li {
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:1.05rem;
    line-height:1.6;
    color:var(--text);
}

.mvv-values-list li + li {
    margin-top:14px;
}

.mvv-values-list li i {
    color:#804a9a;
    font-size:1rem;
    margin-top:5px;
}

/* =========================================================
Images
========================================================= */
.mvv-image {
    height:100%;
    min-height:320px;
    overflow:hidden;
}

.mvv-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================================
Holistic Learning Strategy
========================================================= */
.mvv-strategy {
    background:var(--primary);
    padding:70px 0;
}

.mvv-strategy .section-divider {
    margin-left:0;
}

.mvv-strategy-heading {
    margin:0;
    font-size:2rem;
    font-weight:700;
    color:var(--white);
}

.mvv-strategy-intro {
    margin:0 0 30px;
    font-size:1.1rem;
    line-height:1.9;
    color:#ffffffcc;
    max-width:1050px;
}

.mvv-strategy-list {
    list-style:none;
    margin:0 0 30px;
    padding:0;
}

.mvv-strategy-list li {
    position:relative;
    padding-left:24px;
    margin-bottom:22px;
    font-size:1rem;
    line-height:1.9;
    color:#ffffffe6;
}

.mvv-strategy-list li:last-child {
    margin-bottom:0;
}

.mvv-strategy-list li::before {
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--secondary);
}

.mvv-strategy-list li strong {
    color:var(--secondary);
    font-weight:700;
}

.mvv-strategy-closing {
    margin:0;
    font-size:1.1rem;
    line-height:1.9;
    color:var(--white);
    max-width:1200px;
}

/* =========================================================
Tablet
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .mvv-content {
        padding:40px 35px;
    }

    .mvv-heading {
        font-size:1.7rem;
    }

    .mvv-image {
        min-height:280px;
    }

    .mvv-strategy {
        padding:55px 0;
    }

    .mvv-strategy-heading {
        font-size:1.7rem;
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .mvv-content {
        padding:35px 25px;
    }

    .mvv-heading {
        font-size:1.5rem;
    }

    .mvv-content p,
    .mvv-values-list li {
        font-size:1rem;
    }

    .mvv-image {
        min-height:240px;
    }

    .mvv-strategy {
        padding:45px 0;
    }

    .mvv-strategy-heading {
        font-size:1.5rem;
    }

    .mvv-strategy-intro,
    .mvv-strategy-closing {
        font-size:1rem;
    }

    .mvv-strategy-list li {
        font-size:0.95rem;
    }
}

/* =========================================================
Banner Caption
========================================================= */
.page-banner-caption {
    position:absolute;
    left:0;
    right:0;
    bottom:50px;
}

.page-banner-title {
    display:inline-block;
    padding:12px 28px;
    background:#00000047;
    color:#ffffff;
    font-size:1.3rem;
    font-weight:600;
    line-height:1.2;
}

/* =========================================================
Section Navigation
========================================================= */
.section-navigation {
    background:#804a9a;
    border-bottom:1px solid #ededed;
}

.section-navigation ul {
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:left;
    align-items:center;
    flex-wrap:wrap;
}

.section-navigation li {
    margin:0;
}

.section-navigation a {
    display:block;
    padding:16px 10px;
    color:#dfdfdf;
    font-size:1rem;
    font-weight:500;
    text-decoration:none;
    border-bottom:5px solid transparent;
    transition:.3s;
}

.section-navigation a:hover {
    color:#ffffff;
    border-bottom-color: #FFC926;
}

.section-navigation a.active {
    color:#ffffff;
    border-bottom-color: #FFC926;
    font-weight:600;
}

/* =========================================================
Breadcrumb
========================================================= */
.breadcrumb-section {
    padding:30px;
    background: #fcf9fd;
}

.breadcrumb {
    margin:0;
}

.breadcrumb-item {
    font-size:1rem;
}

.breadcrumb-item a {
    color:#804a9a;
    text-decoration:none;
}

.breadcrumb-item a:hover {
    text-decoration:none;
}

.breadcrumb-item.active {
    color:#777;
}

/* =========================================================
Breadcrumb Separator
========================================================= */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color:#666666;
    padding:0 8px;
}

/* =========================================================
Legacy Page Content
========================================================= */
.legacy-content {
    padding:50px 0 0;
}

/* =========================================================
Heading
========================================================= */
.page-title {
    margin:0;
    font-size:2rem;
    font-weight:700;
    color:#333333;
}

.page-subtitle {
    margin:25px 0 20px;
    font-size:1.3rem;
    font-weight:700;
    color:#333333;
}

/* =========================================================
Paragraphs
========================================================= */
.legacy-content p {
    margin-bottom:18px;
    font-size:1rem;
    line-height:1.9;
    color:#666666;
}

.legacy-content p:last-child {
    margin-bottom:0;
}

.legacy-link {
    color:#804a9a;
    text-decoration:none;
}

.legacy-link:hover {
    text-decoration:underline;
}

/* =========================================================
Highlight Section
========================================================= */
.legacy-highlight {
    margin-top:45px;
    background:#f3f3f3;
}

.legacy-highlight-content {
    height:100%;
    padding:55px 50px;
}

.legacy-highlight-content p {
    margin-bottom:20px;
    font-size:1rem;
    line-height:1.9;
    color:#666666;
}

.legacy-highlight-content p:last-child {
    margin-bottom:0;
}

/* =========================================================
Image
========================================================= */
.legacy-image {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================================
Responsive
========================================================= */
@media (max-width:991px) {
    .legacy-content {
        padding-top:40px;
    }

    .page-title {
        font-size:1.8rem;
    }

    .page-subtitle {
        margin:20px 0 18px;
        font-size:1.2rem;
    }

    .legacy-highlight {
        margin-top:35px;
    }

    .legacy-highlight-content {
        padding:35px;
    }
}

@media (max-width:767px) {
    .legacy-content {
        padding-top:30px;
    }

    .page-title {
        font-size:1.6rem;
    }

    .page-subtitle {
        margin:18px 0 15px;
        font-size:1.1rem;
    }

    .legacy-content p {
        font-size:0.95rem;
        line-height:1.8;
    }

    .legacy-highlight {
        margin-top:25px;
    }

    .legacy-highlight-content {
        padding:25px 20px;
    }

    .legacy-highlight-content p {
        font-size:0.95rem;
    }

    .legacy-image {
        min-height:260px;
    }
}

/*=====================================================
CREATE THE DIFFERENCE - PODAR ORT INTERNATIONAL SCHOOL
Scoped styles for the inner content only.
Relies on existing global tokens from style.css:
--primary, --secondary, --white, --text, --transition, --container
and the existing global .section-divider class.
=====================================================*/

/* =========================================================
Layout Wrap
========================================================= */
.ctd-wrap {
    overflow:hidden;
}

.ctd-row {
    align-items:stretch;
}

/* =========================================================
Content Column
========================================================= */
.ctd-content {
    height:100%;
    padding:55px 50px;
}

.ctd-heading {
    margin:0;
    font-size:2.6rem;
    font-weight:800;
    color:#2e353e;
    letter-spacing:-0.05rem;
}

.ctd-subheading {
    margin:0 0 20px;
    font-size:1.3rem;
    font-weight:700;
    color:#804a9a;
}

/* =========================================================
Bullet List
========================================================= */
.ctd-list {
    list-style:none;
    margin:0;
    padding:0;
}

.ctd-list li {
    position:relative;
    padding-left:22px;
    margin-bottom:8px;
    font-size:1.05rem;
    line-height:1.7;
    color:var(--text);
}

.ctd-list li:last-child {
    margin-bottom:0;
}

.ctd-list li::before {
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--primary);
}

/* =========================================================
Image Column
========================================================= */
.ctd-image {
    position:relative;
    height:100%;
    min-height:420px;
    overflow:hidden;
}

.ctd-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================================
Floating Call Button (over image)
========================================================= */
.ctd-call-btn {
    position:absolute;
    top:30px;
    right:30px;
    width:56px;
    height:56px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255, 255, 255, 0.92);
    border-radius:50%;
    box-shadow:0 6px 18px rgba(0,0,0,0.18);
    color:var(--primary);
    font-size:1.3rem;
    transition:var(--transition);
    z-index:5;
}

.ctd-call-btn:hover {
    background:var(--primary);
    color:#ffffff;
    transform:scale(1.06);
}

/* =========================================================
Tablet
========================================================= */
@media (max-width:991px) {
    .ctd-content {
        padding:40px 30px;
    }

    .ctd-heading {
        font-size:2.1rem;
    }

    .ctd-image {
        min-height:340px;
    }
}

/* =========================================================
Mobile
========================================================= */
@media (max-width:767px) {
    .ctd-content {
        padding:35px 20px;
    }

    .ctd-heading {
        font-size:1.7rem;
    }

    .ctd-subheading {
        font-size:1.1rem;
    }

    .ctd-list li {
        font-size:0.95rem;
    }

    .ctd-image {
        min-height:280px;
    }

    .ctd-call-btn {
        width:48px;
        height:48px;
        top:18px;
        right:18px;
        font-size:1.1rem;
    }
}

/*=====================================================
ACCREDITATIONS - PODAR ORT INTERNATIONAL SCHOOL
Scoped styles for the inner content only.
Relies on existing global tokens from style.css:
--primary, --secondary, --white, --text, --transition, --container
and the existing global .page-title / .section-divider classes.
=====================================================*/

/* =========================================================
Layout
========================================================= */
.acc-section {
    padding:30px 0 30px 0;
}

.acc-content {
    padding-right:20px;
}

.acc-heading {
    margin:0;
    font-size:2.6rem;
    font-weight:700;
    color:#1a1a1a;
    line-height:1.2;
    margin-top: 20px;
}

.acc-subheading {
    margin:0 0 25px;
    font-size:1.4rem;
    font-weight:700;
    color:var(--primary);
    line-height:1.4;
}

/* =========================================================
Accreditation List
========================================================= */
.acc-list {
    list-style:none;
    margin:0;
    padding:0;
}

.acc-list li {
    display:flex;
    align-items:center;
    gap:14px;
    font-size:1.05rem;
    color:var(--text);
}

.acc-list li + li {
    margin-top:22px;
}

.acc-list li i {
    flex-shrink:0;
    color:var(--primary);
    font-size:1.1rem;
}

/* =========================================================
Logo Grid
========================================================= */
.acc-logos {
    display:flex;
    flex-direction:column;
    gap:35px;
    margin-top: 30px;
}

.acc-logo-row {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:35px;
}

.acc-logo-row img {
    max-height:70px;
    width:auto;
    object-fit:contain;
}

.acc-logo-row--split {
    align-items:center;
}

.acc-logo-row--split img {
    max-height:90px;
}

.acc-logo-divider {
    width:1px;
    height:70px;
    background:#d9d9d9;
}

.acc-logo-row--mixed {
    align-items:flex-start;
}

.acc-logo-tall {
    max-height:190px !important;
}

.acc-logo-stack {
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* =========================================================
Memberships & Alliances
========================================================= */
.acc-memberships {
    background:var(--primary);
    padding:60px 0;
}

.acc-memberships .section-divider {
    margin-left:0;
}

.acc-memberships-heading {
    margin:0;
    font-size:2.4rem;
    font-weight:700;
    color:var(--white);
}

.acc-memberships-grid {
    display:grid;
    grid-template-columns:repeat(8, 1fr);
    gap:20px;
}

.acc-membership-item {
    aspect-ratio:1 / 1;
    background:#ffffff;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

.acc-membership-item img {
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

/* =========================================================
Tablet
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .acc-content {
        padding-right:0;
        margin-bottom:45px;
    }

    .acc-heading {
        font-size:2.1rem;
    }

    .acc-memberships-grid {
        grid-template-columns:repeat(4, 1fr);
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .acc-section {
        padding:45px 0;
    }

    .acc-content {
        padding-right:0;
        margin-bottom:40px;
    }

    .acc-heading {
        font-size:1.8rem;
    }

    .acc-subheading {
        font-size:1.2rem;
    }

    .acc-list li {
        font-size:1rem;
    }

    .acc-logo-row {
        gap:22px;
    }

    .acc-logo-row img {
        max-height:55px;
    }

    .acc-logo-row--split img {
        max-height:70px;
    }

    .acc-logo-tall {
        max-height:150px !important;
    }

    .acc-memberships {
        padding:45px 0;
    }

    .acc-memberships-heading {
        font-size:1.8rem;
    }

    .acc-memberships-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

/*=====================================================
CHAIRMAN'S MESSAGE - PODAR ORT INTERNATIONAL SCHOOL
Scoped styles for the inner content only.
Relies on existing global tokens from style.css:
--primary, --secondary, --white, --text, --transition, --container
and the existing global .section-divider class.
=====================================================*/
.chm-wrap {
    padding:70px 0;
}

.chm-heading {
    margin:0;
    font-size:2.6rem;
    font-weight:700;
    color:#1a1a1a;
    line-height:1.2;
}

.chm-content {
    max-width:100%;
}

.chm-content p {
    margin:0 0 24px;
    font-size:1.1rem;
    line-height:1.8;
    color:var(--text);
}

.chm-content ul,ol li {
    margin:0 0 10px;
    font-size:1.1rem;
    line-height:1.8;
    color:var(--text);
}

.chm-content p:last-child {
    margin-bottom:0;
}

.chm-signature {
    font-size: 1.3rem !important;
    font-weight:700;
    color:#000000 !important;
    line-height:1.2 !important;
}

/* =========================================================
Tablet
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .chm-wrap {
        padding:55px 0;
    }

    .chm-heading {
        font-size:2.1rem;
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .chm-wrap {
        padding:45px 0;
    }

    .chm-heading {
        font-size:1.8rem;
    }

    .chm-content p {
        font-size:1rem;
        margin-bottom:20px;
    }
}

/*=====================================================
PORTIS AT A GLANCE - PODAR ORT INTERNATIONAL SCHOOL
Scoped styles for the inner content only.
Relies on existing global tokens from style.css:
--primary, --secondary, --white, --text, --transition, --container
and the existing global .section-divider class.
=====================================================*/
.pat-wrap {
    padding:70px 0;
}

.pat-heading {
    margin:0;
    font-size:2.6rem;
    font-weight:700;
    color:#1a1a1a;
    line-height:1.2;
}

/* =========================================================
Stat Grid
========================================================= */
.pat-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    margin-top:40px;
}

.pat-card {
    border:1px solid #e2e2e2;
    border-radius:6px;
    padding:30px;
}

.pat-card h3 {
    margin:0 0 22px;
    font-size:1.6rem;
    font-weight:800;
    color:#5d5d5d;
    line-height:1.2;
}

.pat-stat {
    font-size:5.2rem;
    font-weight:800;
    color:#804b9a;
    line-height:1;
    display:flex;
    align-items:baseline;
    flex-wrap:wrap;
    gap:8px;
}

.pat-stat-label {
    font-size:1.1rem;
    font-weight:600;
    color:#1a1a1a;
}

.pat-stat--list {
    font-size:1.6rem;
    font-weight:800;
    color:var(--primary);
    line-height:1.5;
}

/* =========================================================
Highlight Row (Masters/Examiners + Chart)
========================================================= */
.pat-highlight-grid {
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:24px;
    margin-top:24px;
}

.pat-stacked {
    display:flex;
    flex-direction:column;
    gap:24px;
}

/* =========================================================
Pie Chart
========================================================= */
.pat-chart-card h3 {
    margin-bottom:30px;
}

.pat-chart-split {
    color:var(--primary);
    font-weight:800;
}

.pat-chart-wrap {
    display:flex;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.pat-pie {
    width:350px;
    height:350px;
    border-radius:50%;
    flex-shrink:0;
    background:conic-gradient(
        #637ed5 0% calc(var(--male) * 1%),
        #f8c67a calc(var(--male) * 1%) 100%
    );
    transform:rotate(-120deg) scale(.6);
    opacity:0;
    transition:transform 1s ease, opacity 1s ease;
}

.pat-pie.is-visible {
    transform:rotate(0deg) scale(1);
    opacity:1;
}

.pat-chart-legend {
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.pat-chart-legend li {
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.05rem;
    color:var(--text);
}

.pat-legend-dot {
    width:14px;
    height:14px;
    border-radius:50%;
    display:inline-block;
}

.pat-legend-dot--male {
    background:#637ed5;
}

.pat-legend-dot--female {
    background:#f8c67a;
}

/* =========================================================
Tablet
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .pat-wrap {
        padding:55px 0;
    }

    .pat-heading {
        font-size:2.1rem;
    }

    .pat-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .pat-highlight-grid {
        grid-template-columns:1fr;
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .pat-wrap {
        padding:45px 0;
    }

    .pat-heading {
        font-size:1.8rem;
    }

    .pat-grid {
        grid-template-columns:1fr;
        margin-top:30px;
    }

    .pat-highlight-grid {
        grid-template-columns:1fr;
    }

    .pat-card {
        padding:25px;
    }

    .pat-stat {
        font-size:2.6rem;
    }

    .pat-pie {
        width:180px;
        height:180px;
    }
}

/*=====================================================
IB EARLY YEARS PROGRAMME - PODAR ORT INTERNATIONAL SCHOOL
Scoped styles for the inner content only.
Relies on existing global tokens from style.css:
--primary, --secondary, --white, --text, --transition, --container
and the existing global .section-divider class.
=====================================================*/
.ieyp-wrap {
    padding:50px 0 70px;
}

.ieyp-programme-logo {
    height:60px;
    width:auto;
    margin-bottom:25px;
}

.ieyp-heading {
    margin:0;
    font-size:2.6rem;
    font-weight:700;
    color:#804b9a;
    line-height:1.2;
}

/* =========================================================
Tabs
========================================================= */
.ieyp-tabs {
    display:flex;
    background-color: #f4f4f4;
    margin-bottom:0px;
}

.ieyp-tab-btn {
    width: 50%;
    background:none;
    border:none;
    cursor:pointer;
    padding:10px 15px;
    font-family:inherit;
    font-size:1rem;
    font-weight:300;
    color:#6a80a9;

    /* border-bottom:3px solid transparent; */
    border-top:3px solid #eeeeee;
    border-left: 1px solid #efefef;
    border-right: 1px solid #efefef;
    transition:var(--transition);
}

.ieyp-tab-btn:hover {
    color:var(--primary);
}

.ieyp-tab-btn.is-active {
    color:var(--primary);
    border-top: 3px solid #6a80a9;
    background-color: #ffffff;
}

.ieyp-tab-panel {
    display:none;
    padding: 20px;
    border-left: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    border-right: 1px solid #efefef;
}

.ieyp-tab-panel.is-active {
    display:block;
}

/* =========================================================
Shared Content / Image blocks
========================================================= */
.ieyp-content p {
    margin:0 0 20px;
    font-size:1.1rem;
    line-height:1.85;
    color:#818898;
}

.ieyp-content p:last-child {
    margin-bottom:0;
}

.ieyp-content--full {
    max-width:100%;
    margin-bottom:55px;
}

.ieyp-intro-row {
    margin-bottom:55px;
}

.ieyp-image img {
    width:100%;
    height:auto;
    display:block;
    border-radius:6px;
}

/* =========================================================
Diagrams
========================================================= */
.ieyp-diagram-row {
    margin-bottom:55px;
}

.ieyp-diagram {
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:340px;
    border-radius:6px;
}

.ieyp-diagram img {
    max-width:100%;
    height:auto;
    display:block;
}

/* =========================================================
Video Grid
========================================================= */
.ieyp-video-grid {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
    margin-top:45px;
}

.ieyp-video-card {
    position:relative;
    display:block;
    border-radius:6px;
    overflow:hidden;
    aspect-ratio:16 / 9;
    background:#111;
}

.ieyp-video-card img {
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.85;
}

.ieyp-video-title {
    position:absolute;
    top:0;
    left:0;
    right:0;
    padding:14px 18px;
    background:rgba(0,0,0,.55);
    color:#ffffff;
    font-size:1.05rem;
    font-weight:700;
}

.ieyp-video-title small {
    display:block;
    margin-top:4px;
    font-size:.7rem;
    font-weight:600;
    letter-spacing:.03em;
    color:#e2e2e2;
}

.ieyp-video-play {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:64px;
    height:64px;
    border-radius:50%;
    background:#ff0000;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.6rem;
}

.ieyp-video-watch {
    position:absolute;
    bottom:14px;
    right:14px;
    background:rgba(0,0,0,.6);
    color:#ffffff;
    font-size:.85rem;
    font-weight:600;
    padding:6px 14px;
    border-radius:20px;
}

.ieyp-video-share {
    position:absolute;
    bottom:14px;
    left:14px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:rgba(0,0,0,.5);
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.85rem;
}

/* =========================================================
Learning Stories Tab
========================================================= */
.ieyp-story-icon {
    text-align:center;
    margin-bottom:20px;
}

.ieyp-story-icon img {
    height:280px;
    width:auto;
    margin:0 auto;
}

.ieyp-story-title {
    text-align:center;
    font-size:3rem;
    font-weight:700;
    color:#7a3ca3;
    margin:0 0 8px;
}

.ieyp-story-subtitle {
    text-align:center;
    font-size:2rem;
    font-weight:400;
    color:#9a5fc0;
    margin:0 0 35px;
}

.ieyp-story-text {
    font-size:1.05rem;
    line-height:1.85;
    color:#818898;
    margin:0;
}

.ieyp-text-center {
    text-align:center;
    max-width:820px;
    margin:0 auto 25px;
}

.ieyp-story-focus {
    text-align:center;
    font-weight:500;
    font-size:1.4rem;
    color:#2e353e;
    margin:0 0 25px;
}

.ieyp-story-row {
    margin-bottom:45px;
}

.ieyp-section-title {
    text-align:center;
    font-size:1.6rem;
    font-weight:700;
    color:#1a1a1a;
    margin:0 0 25px;
}

/* =========================================================
Photo Grids
========================================================= */
.ieyp-photo-grid {
    display:grid;
    gap:20px;
    margin-bottom:45px;
}

.ieyp-photo-grid--3col {
    grid-template-columns:repeat(3, 1fr);
}

.ieyp-photo-grid--2col {
    grid-template-columns:repeat(2, 1fr);
}

.ieyp-photo-grid--5col {
    grid-template-columns:repeat(5, 1fr);
    margin-bottom:0;
}

.ieyp-photo-grid--stacked {
    grid-template-columns:1fr;
}

.ieyp-photo-item {
    margin:0;
}

.ieyp-photo-item img {
    width:100%;
    height:300px;
    aspect-ratio:4 / 3;
    object-fit:cover;
    border-radius:6px;
    display:block;
}

.ieyp-photo-caption {
    font-size:.85rem;
    font-weight:700;
    color:#1a1a1a;
    text-align:center;
    margin-bottom:10px;
}

.ieyp-photo-caption small {
    display:block;
    font-weight:400;
    color:var(--text);
}

/* =========================================================
Tablet
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .ieyp-heading {
        font-size:2.1rem;
    }

    .ieyp-video-grid {
        grid-template-columns:1fr;
    }

    .ieyp-photo-grid--5col {
        grid-template-columns:repeat(3, 1fr);
    }

    .ieyp-photo-grid--3col {
        grid-template-columns:repeat(2, 1fr);
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .ieyp-wrap {
        padding:35px 0 45px;
    }

    .ieyp-heading {
        font-size:1.8rem;
    }

    .ieyp-tabs {
        overflow-x:auto;
    }

    .ieyp-tab-btn {
        padding:14px 18px;
        white-space:nowrap;
        font-size:.9rem;
    }

    .ieyp-content p,
    .ieyp-story-text {
        font-size:1rem;
    }

    .ieyp-diagram {
        min-height:auto;
    }

    .ieyp-video-grid {
        grid-template-columns:1fr;
    }

    .ieyp-story-title {
        font-size:1.5rem;
    }

    .ieyp-story-subtitle {
        font-size:1.1rem;
    }

    .ieyp-photo-grid--3col,
    .ieyp-photo-grid--2col {
        grid-template-columns:1fr;
    }

    .ieyp-photo-grid--5col {
        grid-template-columns:repeat(2, 1fr);
    }
}

/*=====================================================
IB PRIMARY YEARS PROGRAMME - PODAR ORT INTERNATIONAL SCHOOL
Scoped styles for the inner content only.
Relies on existing global tokens from style.css:
--primary, --secondary, --white, --text, --transition, --container
and the existing global .section-divider class.
=====================================================*/
.ipyp-wrap {
    padding:50px 0 70px;
}

.ipyp-programme-logo {
    height:60px;
    width:auto;
    margin-bottom:25px;
}

.ipyp-heading {
    margin:0;
    font-size:2.6rem;
    font-weight:700;
    color:#804b9a;
    line-height:1.2;
}

/* =========================================================
Tabs
========================================================= */
.ipyp-tabs {
    display:flex;
    background-color:#f4f4f4;
    margin-bottom:0px;
}

.ipyp-tab-btn {
    width:33.333%;
    background:none;
    border:none;
    cursor:pointer;
    padding:10px 15px;
    font-family:inherit;
    font-size:1rem;
    font-weight:300;
    color:#6a80a9;
    border-top:3px solid #eeeeee;
    border-left:1px solid #efefef;
    border-right:1px solid #efefef;
    transition:var(--transition);
}

.ipyp-tab-btn:hover {
    color:var(--primary);
}

.ipyp-tab-btn.is-active {
    color:var(--primary);
    border-top:3px solid #6a80a9;
    background-color:#ffffff;
}

.ipyp-tab-panel {
    display:none;
    padding:20px;
    border-left:1px solid #efefef;
    border-bottom:1px solid #efefef;
    border-right:1px solid #efefef;
}

.ipyp-tab-panel.is-active {
    display:block;
}

/* =========================================================
Content
========================================================= */
.ipyp-row {
    margin-bottom:40px;
}

.ipyp-subheading {
    margin:0 0 18px;
    font-size:1.5rem;
    font-weight:500;
    color:#804b9a;
}

.ipyp-subheading--sm {
    font-size:1.3rem;
}

.ipyp-content p {
    margin:0 0 18px;
    font-size:1.05rem;
    line-height:1.85;
    color:var(--text);
}

.ipyp-content p:last-child {
    margin-bottom:0;
}

.ipyp-content--full {
    max-width:100%;
    margin-bottom:40px;
}

.ipyp-rule {
    border:none;
    border-top:1px solid #d9c6e6;
    margin:0 0 40px;
}

.ipyp-theme-list {
    margin:0 0 18px;
    padding-left:22px;
    color:var(--text);
}

.ipyp-theme-list li {
    font-size:1.05rem;
    line-height:1.9;
}

/* =========================================================
Images / Slider
========================================================= */
.ipyp-image img {
    width:100%;
    height:auto;
    display:block;
}

.ipyp-slider {
    width:100%;
}

.ipyp-slider .swiper-slide img {
    width:100%;
    height:auto;
    display:block;
}

.ipyp-slider .swiper-pagination {
    position:relative;
    margin-top:15px;
}

.ipyp-slider .swiper-pagination-bullet {
    background:var(--primary);
    opacity:.3;
}

.ipyp-slider .swiper-pagination-bullet-active {
    opacity:1;
}

/* =========================================================
PYP Learning Stories - The Art Trail
========================================================= */
.ipyp-story-title {
    text-align:center;
    font-size:2.2rem;
    font-weight:500;
    color:#804b9a;
    margin:10px 0 30px;
}

.ipyp-story-quote {
    margin:0 0 30px;
    padding:0;
    border:none;
    font-size:1.3rem;
    font-weight:500;
    /* font-style:italic; */
    color:#1a1a1a;
    line-height:1.6;
}

.ipyp-story-quote span {
    display:inline-block;
    font-style:normal;
    font-weight:400;
    color:var(--text);
}

.ipyp-story-text {
    margin:0 0 25px;
    font-size:1.05rem;
    line-height:1.85;
    color:var(--text);
}

.ipyp-caption-photo-row {
    margin-bottom:35px;
}

.ipyp-caption-photo {
    position:relative;
    overflow:hidden;
    border-radius:4px;
}

.ipyp-caption-photo img {
    width:100%;
    height:auto;
    display:block;
}

.ipyp-caption-bar {
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    background:var(--primary);
    color:#ffffff;
    font-weight:200;
    font-size:1.25rem;
    letter-spacing:.03em;
    padding:12px 20px;
}

.ipyp-story-strip {
    margin-bottom:35px;
}

.ipyp-story-strip img {
    width:100%;
    height:auto;
    display:block;
}

/* =========================================================
Tablet
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .ipyp-heading {
        font-size:2.1rem;
    }

    .ipyp-subheading {
        font-size:1.3rem;
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .ipyp-wrap {
        padding:35px 0 45px;
    }

    .ipyp-heading {
        font-size:1.7rem;
    }

    .ipyp-tabs {
        overflow-x:auto;
    }

    .ipyp-tab-btn {
        padding:14px 18px;
        white-space:nowrap;
        font-size:.9rem;
    }

    .ipyp-subheading {
        font-size:1.25rem;
    }

    .ipyp-content p,
    .ipyp-theme-list li {
        font-size:1rem;
    }

    .ipyp-image,
    .ipyp-slider {
        margin-top:25px;
    }

    .ipyp-story-title {
        font-size:1.6rem;
    }

    .ipyp-story-quote {
        font-size:1.1rem;
    }

    .ipyp-story-text {
        font-size:1rem;
    }

    .ipyp-caption-photo-row .col-md-6 {
        margin-bottom:20px;
    }
}

/* =========================================================
PYP Exhibition Tab
========================================================= */
.ipyp-exh-bar {
    margin:0 0 25px;
    padding:12px 20px;
    background:#804b9a;
    color:#ffffff;
    text-align:center;
    font-size:1.25rem;
    font-weight:500;
    border-radius:4px;
}

.ipyp-exh-bar--main {
    margin-bottom:35px;
    font-size:1.3rem;
}

.ipyp-exh-bar--mentor {
    font-size:1.05rem;
    font-weight:500;
}

.ipyp-exh-gallery {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
    margin:0 0 40px;
}

.ipyp-exh-gallery img {
    width:100%;
    height:auto;
    display:block;
    border-radius:4px;
}

/* =========================================================
Tablet
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .ipyp-exh-bar {
        font-size:1.05rem;
    }

    .ipyp-exh-bar--main {
        font-size:1.2rem;
    }
}

/* =========================================================
Mobile
========================================================= */
@media(max-width:767px) {
    .ipyp-exh-bar {
        font-size:1rem;
        padding:10px 15px;
    }

    .ipyp-exh-bar--main {
        font-size:1.1rem;
    }

    .ipyp-exh-gallery {
        grid-template-columns:1fr;
    }
}

/*=====================================================*
* IB MIDDLE YEARS PROGRAMME
* PODAR ORT INTERNATIONAL SCHOOL
*
* Scoped styles for:
* - IB MYP tab
* - MYP Community Project tab
* - MYP Learning Stories tab
*
* This section uses the existing global styles from
* style.css for:
* - body font
* - .container
* - --primary
* - --secondary
* - --text
* - --transition
* - .section-divider
*
* IMPORTANT:
* Replace the previous MYP-specific CSS with this block.
*=====================================================*/

/*=====================================================*
* MAIN MYP WRAPPER
*=====================================================*/
.imyp-wrap {
    padding: 42px 0 70px;
}

/*=====================================================*
* PROGRAMME LOGO
*=====================================================*/
.imyp-programme-logo {
    width: auto;
    height: 60px;
    display: block;
    margin-bottom: 48px;
}

/*=====================================================*
* MAIN PAGE HEADING
*=====================================================*/
.imyp-heading {
    margin: 0;
    color: #804b9a;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
}

/*=====================================================*
* TABS
*=====================================================*/
.imyp-tabs {
    display: flex;
    width: 100%;
    margin-top: 42px;
    background: #f5f5f5;
    border: 1px solid #eeeeee;
    border-bottom:none;
}

.imyp-tab-btn {
    flex: 1;
    min-width: 0;
    padding: 11px 15px;
    margin: 0;
    border: 0;
    border-top: 2px solid transparent;
    border-right: 1px solid #eeeeee;
    border-bottom: none;
    background: #f5f5f5;
    color: #6f80a4;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.imyp-tab-btn:last-child {
    border-right: 0;
}

.imyp-tab-btn:hover {
    color: #804b9a;
    background: #ffffff;
}

.imyp-tab-btn.is-active {
    color: #6f80a4;
    background: #ffffff;
    border-top-color: #6f80a4;
}

/*=====================================================*
* TAB PANELS
*=====================================================*/
.imyp-tab-panel {
    display: none;

    /* padding: 30px 10px 10px; */
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
    background: #ffffff;
}

.imyp-tab-panel.is-active {
    display: block;
}

/*=====================================================*
* TAB 1
*
* "What the IB Middle Years Programme offers?"
*=====================================================*/
#imyp-panel-myp {
    padding-top: 30px;
}

/*-----------------------------------------------------*
* Intro Row
*-----------------------------------------------------*/
.imyp-intro-row {
    margin: 0;
    align-items: center;
}

/*-----------------------------------------------------*
* Intro Content
*-----------------------------------------------------*/
.imyp-content {
    width: 100%;
}

.imyp-content p {
    margin: 0 0 16px;
    color: #818898;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
}

.imyp-content p:last-child {
    margin-bottom: 0;
}

/*-----------------------------------------------------*
* MYP Section Headings
*-----------------------------------------------------*/
.imyp-subheading {
    margin: 0 0 18px;
    color: #804b9a;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.3;
}

.imyp-subheading::after {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    margin-top: 15px;
    background: #ffc629;
}

/*-----------------------------------------------------*
* MYP Intro Heading
*
* The heading in the PHP should use:
*
* <h2 class="imyp-subheading">
*     What the IB Middle Years Programme offers?
* </h2>
*-----------------------------------------------------*/
#imyp-panel-myp .imyp-content .imyp-subheading {
    margin-bottom: 25px;
}

/*-----------------------------------------------------*
* Framework Diagram
*-----------------------------------------------------*/
.imyp-image {
    width: 100%;
    text-align: center;
}

.imyp-image img {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    margin: 0 auto;
}

/*=====================================================*
* HOW IB MYP WORKS
* PURPLE SECTION
*=====================================================*/
.imyp-purple-section {
    margin-top: 35px;
    padding: 32px 30px 35px;
    background: #804b9a;
}

/*-----------------------------------------------------*
* Purple Section Heading
*-----------------------------------------------------*/
.imyp-section-title {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 200;
    line-height: 1.4;
    text-align: center;
}

/*=====================================================*
* IB MYP
* HOW IB MIDDLE YEARS PROGRAMME WORKS
* FEATURE GRID
*=====================================================*/
.imyp-purple-section .imyp-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 25px;
    margin: 0;
}

/*-----------------------------------------------------*
* Feature Item
*-----------------------------------------------------*/
.imyp-feature {
    width: 100%;
    padding: 5px 8px;
    text-align: center;
}

/*-----------------------------------------------------*
* Feature Icon
*-----------------------------------------------------*/
.imyp-feature-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imyp-feature-icon img {
    display: block;
    width: 88px;
    height: 88px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 50% !important;
    background-color: #543c72;
    padding: 10px;
}

/*-----------------------------------------------------*
* Feature Title
*-----------------------------------------------------*/
.imyp-feature-title {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

/*=====================================================*
* TAB 2
*
* MYP COMMUNITY PROJECT
*=====================================================*/
#imyp-panel-community {
    padding: 30px 10px 35px;
}

/*-----------------------------------------------------*
* Community Top Row
*-----------------------------------------------------*/
#imyp-panel-community > .row {
    align-items: center;
    margin: 0;
}

/*=====================================================*
* COMMUNITY PROJECT SLIDER
*=====================================================*/
.imypCommunitySwiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.imypCommunitySwiper .swiper-wrapper {
    align-items: center;
}

.imypCommunitySwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.imypCommunitySwiper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/*-----------------------------------------------------*
* Slider Pagination
*-----------------------------------------------------*/
.imypCommunitySwiper .swiper-pagination {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 12px;
    text-align: center;
}

.imypCommunitySwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    opacity: 1;
    background: #cfcfcf;
}

.imypCommunitySwiper .swiper-pagination-bullet-active {
    background: #804b9a;
}

/*=====================================================*
* COMMUNITY PROJECT RIGHT CONTENT
*=====================================================*/
#imyp-panel-community .imyp-content {
    padding: 5px 20px 5px 25px;
}

#imyp-panel-community .imyp-subheading {
    margin-bottom: 25px;
    font-size: 1.45rem;
}

/*-----------------------------------------------------*
* Community Intro Paragraph
*-----------------------------------------------------*/
.imyp-community-intro {
    margin-bottom: 20px;
}

/*=====================================================*
* COMMUNITY PROJECT STAR LIST
*=====================================================*/
.imyp-community-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.imyp-community-list li {
    position: relative;
    margin: 0 0 17px;
    padding-left: 27px;
    color: #818898;
    font-size: 1rem;
    line-height: 1.65;
}

.imyp-community-list li::before {
    content: "\f005";
    position: absolute;
    top: 3px;
    left: 0;
    color: #804b9a;
    font-family: "Font Awesome 6 Free";
    font-size: .7rem;
    font-weight: 900;
}

/*=====================================================*
* WATCH VIDEO BUTTON
*=====================================================*/
.imyp-btn-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 18px;
    border: 1px solid #804b9a;
    border-radius: 20px;
    background: #804b9a;
    color: #ffffff;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: var(--transition);
}

.imyp-btn-video:hover {
    background: #ffffff;
    border: 1px solid #804b9a;
    color: #804b9a;
}

.imyp-btn-video i {
    font-size: .85rem;
}

/*=====================================================*
* COMMUNITY PROJECT LOWER CONTENT
*
* Points 2–5 appear below the slider/content row.
*=====================================================*/
.imyp-community-text {
    margin-top: 28px;
}

.imyp-community-text > p {
    margin: 0 0 16px;
    color: #818898;
    font-size: 1rem;
    line-height: 1.65;
}

/*-----------------------------------------------------*
* Numbered Points
*-----------------------------------------------------*/
.imyp-number-block {
    display: block;
    margin: 0 0 12px;
}

.imyp-number {
    display: none;
}

.imyp-number-content {
    width: 100%;
}

.imyp-number-content p {
    margin: 0;
    color: #818898;
    font-size: 1rem;
    line-height: 1.65;
}

/*-----------------------------------------------------*
* Hide duplicate Community Heading
*
* The top row already contains the heading.
*-----------------------------------------------------*/
.imyp-community-text > .imyp-subheading {
    /* display: none; */
}

/*-----------------------------------------------------*
* Community Bullet List inside Point 1
*-----------------------------------------------------*/
.imyp-number-content ul {
    margin: 12px 0 18px;
    padding: 0;
    list-style: none;
}

.imyp-number-content li {
    position: relative;
    margin-bottom: 13px;
    padding-left: 27px;
    color: #818898;
    font-size: 1rem;
    line-height: 1.65;
}

.imyp-number-content li::before {
    content: "\f005";
    position: absolute;
    top: 4px;
    left: 0;
    color: #804b9a;
    font-family: "Font Awesome 6 Free";
    font-size: .7rem;
    font-weight: 900;
}

/*=====================================================*
* TAB 3
*
* MYP LEARNING STORIES
*=====================================================*/
#imyp-panel-stories {
    padding: 30px 15px 40px;
}

/*-----------------------------------------------------*
* Story Heading
*-----------------------------------------------------*/
.imyp-story-title {
    margin: 0 0 12px;
    color: #804b9a;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/*-----------------------------------------------------*
* Story Subtitle
*-----------------------------------------------------*/
.imyp-story-subtitle {
    max-width: 850px;
    margin: 0 auto 25px;
    color: #818898;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    text-align: center;
    text-decoration: underline;
}

/*-----------------------------------------------------*
* Story Content
*-----------------------------------------------------*/
.imyp-story-content {
    width: 100%;
}

.imyp-story-content .row {
    display: flex;
    flex-direction: column;
    margin: 0;
}

/*-----------------------------------------------------*
* Story Text
*-----------------------------------------------------*/
.imyp-story-content .imyp-content {
    width: 100%;
    padding: 0;
}

.imyp-story-content .imyp-content p {
    margin: 0 0 12px;
    color: #818898;
    font-size: 1rem;
    line-height: 1.65;
}

.imyp-story-content .imyp-content p:last-child {
    margin-bottom: 0;
}

.imyp-story-content .imyp-content strong {
    color: #6e7788;
    font-weight: 700;
}

/*-----------------------------------------------------*
* Story Image
*
* Screenshot shows the image below the text,
* centered rather than beside it.
*-----------------------------------------------------*/
.imyp-story-content .imyp-image {
    order: 2;
    margin-top: 25px;
    text-align: center;
}

.imyp-story-content .imyp-image img {
    width: auto;
    max-width: 60%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/*-----------------------------------------------------*
* Make Text Column Appear First
*-----------------------------------------------------*/
.imyp-story-content .row > .col-lg-6:first-child {
    order: 2;
}

.imyp-story-content .row > .col-lg-6:last-child {
    order: 1;
}

/*=====================================================*
* TABLET
* 768px – 991px
*=====================================================*/
@media (min-width: 768px) and (max-width: 991px) {
    /*-------------------------------------------------*
    * Main Wrapper
    *-------------------------------------------------*/
    .imyp-wrap {
        padding: 40px 0 60px;
    }

    /*-------------------------------------------------*
    * Heading
    *-------------------------------------------------*/
    .imyp-heading {
        font-size: 2.15rem;
    }

    .imyp-programme-logo {
        height: 55px;
        margin-bottom: 35px;
    }

    /*-------------------------------------------------*
    * Tabs
    *-------------------------------------------------*/
    .imyp-tab-btn {
        font-size: .9rem;
        padding: 11px 12px;
    }

    /*-------------------------------------------------*
    * Intro
    *-------------------------------------------------*/
    .imyp-content p {
        font-size: .95rem;
        line-height: 1.65;
    }

    .imyp-image img {
        max-width: 380px;
    }

    /*-------------------------------------------------*
    * Purple Section
    *-------------------------------------------------*/
    .imyp-purple-section {
        padding: 30px 20px;
    }

    .imyp-purple-section .imyp-feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 15px;
    }

    .imyp-feature-icon {
        width: 78px;
        height: 78px;
    }

    .imyp-feature-icon img {
        width: 78px;
        height: 78px;
    }

    .imyp-feature-title {
        font-size: .85rem;
    }

    /*-------------------------------------------------*
    * Community
    *-------------------------------------------------*/
    #imyp-panel-community .imyp-content {
        padding-left: 15px;
        padding-right: 10px;
    }

    .imypCommunitySwiper img {
        max-height: 320px;
        object-fit: contain;
    }

    .imyp-community-text p,
    .imyp-number-content p,
    .imyp-number-content li {
        font-size: .95rem;
    }

    /*-------------------------------------------------*
    * Learning Stories
    *-------------------------------------------------*/
    .imyp-story-content .imyp-image img {
        max-width: 65%;
    }
}

/*=====================================================*
* MOBILE
* Up to 767px
*=====================================================*/
@media (max-width: 767px) {
    /*-------------------------------------------------*
    * Main Wrapper
    *-------------------------------------------------*/
    .imyp-wrap {
        padding: 30px 0 45px;
    }

    /*-------------------------------------------------*
    * Programme Logo
    *-------------------------------------------------*/
    .imyp-programme-logo {
        height: 48px;
        margin-bottom: 28px;
    }

    /*-------------------------------------------------*
    * Main Heading
    *-------------------------------------------------*/
    .imyp-heading {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    /*-------------------------------------------------*
    * Tabs
    *-------------------------------------------------*/
    .imyp-tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .imyp-tabs::-webkit-scrollbar {
        display: none;
    }

    .imyp-tab-btn {
        flex: 0 0 auto;
        min-width: 33.333%;
        padding: 10px 12px;
        font-size: .78rem;
        white-space: nowrap;
    }

    /*-------------------------------------------------*
    * Tab Panel
    *-------------------------------------------------*/
    .imyp-tab-panel {
        padding: 22px 12px 28px;
    }

    /*-------------------------------------------------*
    * Intro
    *-------------------------------------------------*/
    #imyp-panel-myp .imyp-intro-row {
        display: flex;
        flex-direction: column;
    }

    #imyp-panel-myp .imyp-intro-row > div {
        width: 100%;
    }

    #imyp-panel-myp .imyp-image {
        margin-top: 25px;
    }

    .imyp-content p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .imyp-subheading {
        font-size: 1.25rem;
    }

    /*-------------------------------------------------*
    * Framework Image
    *-------------------------------------------------*/
    .imyp-image img {
        max-width: 330px;
    }

    /*-------------------------------------------------*
    * Purple Section
    *-------------------------------------------------*/
    .imyp-purple-section {
        margin-top: 30px;
        margin-left: -12px;
        margin-right: -12px;
        padding: 28px 12px 30px;
    }

    .imyp-section-title {
        font-size: 1.15rem;
        margin-bottom: 25px;
    }

    /*-------------------------------------------------*
    * Feature Grid
    *-------------------------------------------------*/
    .imyp-purple-section .imyp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .imyp-feature {
        padding: 3px 2px;
    }

    .imyp-feature-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 9px;
    }

    .imyp-feature-icon img {
        width: 72px;
        height: 72px;
    }

    .imyp-feature-title {
        font-size: .78rem;
        line-height: 1.35;
    }

    /*-------------------------------------------------*
    * Community Project
    *-------------------------------------------------*/
    #imyp-panel-community {
        padding: 22px 12px 30px;
    }

    #imyp-panel-community > .row {
        display: flex;
        flex-direction: column;
    }

    #imyp-panel-community > .row > div {
        width: 100%;
    }

    .imypCommunitySwiper {
        margin-bottom: 25px;
    }

    .imypCommunitySwiper img {
        max-height: 310px;
        object-fit: contain;
    }

    #imyp-panel-community .imyp-content {
        padding: 0;
    }

    #imyp-panel-community .imyp-subheading {
        font-size: 1.25rem;
        margin-bottom: 22px;
    }

    .imyp-community-list li {
        font-size: .95rem;
        line-height: 1.65;
        padding-left: 24px;
    }

    .imyp-btn-video {
        font-size: .85rem;
        padding: 8px 16px;
    }

    /*-------------------------------------------------*
    * Community Lower Text
    *-------------------------------------------------*/
    .imyp-community-text {
        margin-top: 20px;
    }

    .imyp-community-text > p,
    .imyp-number-content p,
    .imyp-number-content li {
        font-size: .95rem;
        line-height: 1.7;
    }

    /*-------------------------------------------------*
    * Learning Stories
    *-------------------------------------------------*/
    #imyp-panel-stories {
        padding: 25px 10px 35px;
    }

    .imyp-story-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .imyp-story-subtitle {
        font-size: .9rem;
        line-height: 1.55;
        margin-bottom: 25px;
    }

    .imyp-story-content .imyp-content p {
        font-size: .9rem;
        line-height: 1.7;
    }

    .imyp-story-content .imyp-image {
        margin-top: 22px;
    }

    .imyp-story-content .imyp-image img {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================================
CAMBRIDGE IGCSE PAGE
Podar ORT International School, Worli
========================================================= */

/* =========================================================
IGCSE MAIN CONTENT
========================================================= */
.igcse-wrap {
    padding: 70px 0 80px;
    background: #ffffff;
}

/* =========================================================
IGCSE LOGO
========================================================= */
.igcse-logo {
    width: auto;
    height: 60px;
    display: block;
    margin-bottom: 48px;
}

/* .igcse-logo img {
max-width: 210px;
width: 100%;
height: auto;
display: inline-block;
} */

/* =========================================================
IGCSE PAGE HEADING
========================================================= */
.igcse-heading {
    margin: 0;
    color: #804b9a;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
}

/* =========================================================
IGCSE INTRODUCTION
========================================================= */
.igcse-intro-row {
    display: flex;
    align-items: stretch;
    margin-top: 45px;
}

/* =========================================================
LEFT CONTENT
========================================================= */
.igcse-intro-content {
    width: 58%;
    padding: 5px 55px 5px 0;
}

.igcse-intro-content h2 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #818898;
}

.igcse-intro-content h2:not(:first-child) {
    margin-top: 38px;
}

.igcse-intro-content p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: #555555;
}

.igcse-intro-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
RIGHT IMAGE / DIAGRAM
========================================================= */
.igcse-intro-image {
    width: 42%;
    padding: 5px 0 5px 55px;
    border-left: 1px solid #d8d8d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.igcse-intro-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.igcse-source {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: #777777;
    text-align: center;
}

.igcse-source a {
    color: #555555;
    text-decoration: none;
}

.igcse-source a:hover {
    text-decoration: underline;
}

/* =========================================================
IGCSE SUBJECT OFFERINGS
========================================================= */
.igcse-subjects {
    padding: 65px 0 75px;
    background: #804a9a;
}

.igcse-subjects-heading {
    margin: 0 0 40px;

    /* text-align: center; */
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #ffffff;
}

/* =========================================================
SUBJECT GRID
========================================================= */
.igcse-subject-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1050px;
    margin: 0 auto;
}

.igcse-subject-column {
    padding: 10px 40px;

    /* border-right: 1px solid #dddddd; */
}

.igcse-subject-column:first-child {
    padding-left: 0;
}

.igcse-subject-column:last-child {
    padding-right: 0;
    border-right: none;
}

.igcse-subject-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.igcse-subject-column li {
    position: relative;
    margin: 0 0 17px;
    padding-left: 23px;
    font-size: 16px;
    line-height: 1.55;
    color: #ffffff;
}

.igcse-subject-column li:last-child {
    margin-bottom: 0;
}

.igcse-subject-column li::before {
    content: "\f005";
    position: absolute;
    top: 3px;
    left: 0;
    color: #ffffff;
    font-family: "Font Awesome 6 Free";
    font-size: .7rem;
    font-weight: 900;
}

/* =========================================================
SUBJECT CHOICE FORM
========================================================= */
.igcse-form-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.igcse-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.igcse-form-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #804b9a;
    line-height: 60px;
}

.igcse-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    padding: 12px 24px;
    border: 1px solid rgb(128, 74, 154);
    background: rgb(128, 74, 154);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 50px;
}

.igcse-download-btn:hover {
    background: none;
    border: 1px solid rgb(128, 74, 154);
    color: rgb(128, 74, 154);
}

/* =========================================================
SUBJECT CHOICE FORM VIEWER
========================================================= */
.igcse-form-viewer {
    width: 100%;
    text-align: center;
    padding: 25px;
    border: 10px solid rgb(128, 74, 154);
    background: #fafafa;
}

.igcse-form-viewer img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: inline-block;
}

/* =========================================================
COMMON IMAGE SAFETY
========================================================= */
.igcse-wrap img,
.igcse-form-section img {
    max-width: 100%;
    height: auto;
}

/* =========================================================
IGCSE TABLET
========================================================= */
@media (max-width: 991.98px) {
    .igcse-wrap {
        padding: 55px 0 65px;
    }

    .igcse-heading {
        font-size: 30px;
    }

    .igcse-intro-row {
        margin-top: 35px;
    }

    .igcse-intro-content {
        width: 55%;
        padding-right: 35px;
    }

    .igcse-intro-image {
        width: 45%;
        padding-left: 35px;
    }

    .igcse-intro-content h2 {
        font-size: 23px;
    }

    .igcse-intro-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .igcse-subjects {
        padding: 55px 0 65px;
    }

    .igcse-subjects-heading {
        font-size: 27px;
    }

    .igcse-subject-column {
        padding: 10px 25px;
    }

    .igcse-subject-column li {
        font-size: 15px;
    }

    .igcse-form-section {
        padding: 55px 0 65px;
    }

    .igcse-form-header h2 {
        font-size: 27px;
    }
}

/* =========================================================
IGCSE MOBILE
========================================================= */
@media (max-width: 767.98px) {
    .igcse-wrap {
        padding: 45px 0 50px;
    }

    .igcse-logo {
        margin-bottom: 20px;
    }

    .igcse-logo img {
        max-width: 175px;
    }

    .igcse-heading {
        font-size: 26px;
    }

    .igcse-intro-row {
        display: block;
        margin-top: 30px;
    }

    .igcse-intro-content,
    .igcse-intro-image {
        width: 100%;
    }

    .igcse-intro-content {
        padding: 0;
    }

    .igcse-intro-content h2 {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .igcse-intro-content h2:not(:first-child) {
        margin-top: 32px;
    }

    .igcse-intro-content p {
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .igcse-intro-image {
        margin-top: 35px;
        padding: 35px 0 0;
        border-left: none;
        border-top: 1px solid #d8d8d8;
    }

    .igcse-intro-image img {
        max-width: 520px;
    }

    .igcse-source {
        margin-top: 15px;
        font-size: 12px;
    }

    /* =====================================================
    SUBJECT OFFERINGS - MOBILE
    ====================================================== */
    .igcse-subjects {
        padding: 45px 0 50px;
    }

    .igcse-subjects-heading {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .igcse-subject-grid {
        display: block;
    }

    .igcse-subject-column,
    .igcse-subject-column:first-child,
    .igcse-subject-column:last-child {
        width: 100%;
        padding: 0;
        margin-bottom: 25px;
        border-right: none;
    }

    .igcse-subject-column:last-child {
        margin-bottom: 0;
    }

    .igcse-subject-column li {
        margin-bottom: 13px;
        font-size: 15px;
    }

    /* =====================================================
    SUBJECT CHOICE FORM - MOBILE
    ====================================================== */
    .igcse-form-section {
        padding: 45px 0 50px;
    }

    .igcse-form-header {
        display: block;
        margin-bottom: 25px;
    }

    .igcse-form-header h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .igcse-download-btn {
        min-width: 145px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .igcse-form-viewer {
        padding: 12px;
    }
}

/* =========================================================
IGCSE SMALL MOBILE
========================================================= */
@media (max-width: 575.98px) {
    .igcse-heading {
        font-size: 23px;
    }

    .igcse-intro-content h2 {
        font-size: 20px;
    }

    .igcse-intro-content p {
        font-size: 14px;
    }

    .igcse-subjects-heading {
        font-size: 22px;
    }

    .igcse-subject-column li {
        font-size: 14px;
    }

    .igcse-form-header h2 {
        font-size: 22px;
    }
}

/*=====================================================
IB DIPLOMA PROGRAMME - PODAR ORT INTERNATIONAL SCHOOL

Scoped styles for:
- IB Diploma Programme
- Theory of Knowledge tab
- IBDP Learning Stories tab

Uses existing global styles/tokens from style.css.
=====================================================*/

/* =========================================================
MAIN IBDP WRAPPER
========================================================= */
.idp-wrap {
    padding:42px 0 70px;
}

/* =========================================================
PROGRAMME LOGO
========================================================= */
.idp-programme-logo {
    width:auto;
    height:60px;
    display:block;
    margin-bottom:48px;
}

/* =========================================================
MAIN PAGE HEADING

Keep this consistent with EYP / PYP / MYP.
========================================================= */
.idp-heading {
    margin:0;
    color:#804b9a;
    font-size:2.6rem;
    font-weight:700;
    line-height:1.15;
}

/* =========================================================
INTRODUCTION
========================================================= */
.idp-intro {
    margin-bottom:20px;
}

.idp-intro p {
    margin:0 0 18px;
    color:#818898;
    font-size:1rem;
    font-weight:400;
    line-height:1.65;
}

.idp-intro p:last-child {
    margin-bottom:0;
}

.idp-intro strong {
    font-weight:700;
}

/* =========================================================
TABS
========================================================= */
.idp-tabs {
    display:flex;
    width:100%;
    margin-top:20px;
    background:#f5f5f5;
    border:1px solid #eeeeee;
    border-bottom:none;
}

.idp-tab-btn {
    flex:1;
    min-width:0;
    padding:11px 15px;
    margin:0;
    border:0;
    border-top:2px solid transparent;
    border-right:1px solid #eeeeee;
    border-bottom:none;
    background:#f5f5f5;
    color:#6f80a4;
    font-family:inherit;
    font-size:.95rem;
    font-weight:400;
    line-height:1.4;
    text-align:center;
    cursor:pointer;
    transition:var(--transition);
}

.idp-tab-btn:last-child {
    border-right:0;
}

.idp-tab-btn:hover {
    color:#804b9a;
    background:#ffffff;
}

.idp-tab-btn.is-active {
    color:#6f80a4;
    background:#ffffff;
    border-top-color:#6f80a4;
}

/* =========================================================
TAB PANELS
========================================================= */
.idp-tab-panel {
    display:none;
    border-right:1px solid #eeeeee;
    border-bottom:1px solid #eeeeee;
    border-left:1px solid #eeeeee;
    background:#ffffff;
}

.idp-tab-panel.is-active {
    display:block;
}

/* =========================================================
THEORY OF KNOWLEDGE PANEL
========================================================= */
#idp-panel-tok {
    padding:35px 10px 35px;
}

/* =========================================================
HOW THE IBDP WORKS
========================================================= */
.idp-works-row {
    display:grid;
    grid-template-columns:1fr 1fr;
    margin:0;
}

/* =========================================================
LEFT COLUMN
========================================================= */
.idp-works-left {
    padding:0 35px 0 0;
    border-right:1px solid #eeeeee;
}

.idp-works-left .idp-subheading {
    margin-bottom:20px;
}

/* =========================================================
RIGHT COLUMN
========================================================= */
.idp-works-right {
    padding:0 0 0 35px;
}

.idp-works-right .idp-subheading {
    margin-bottom:20px;
}

/* =========================================================
IBDP SUBHEADINGS
========================================================= */
.idp-subheading {
    margin:0;
    color:#804b9a;
    font-size:1.45rem;
    font-weight:500;
    line-height:1.3;
}

/* =========================================================
IBDP SUBHEADING YELLOW DIVIDER
========================================================= */
.idp-subheading::after {
    content:"";
    display:block;
    width:42px;
    height:5px;
    margin-top:15px;
    background:#ffc629;
}

/* =========================================================
IBDP FRAMEWORK DIAGRAM
========================================================= */
.idp-diagram {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.idp-diagram img {
    display:block;
    width:100%;
    max-width:430px;
    height:auto;
    margin:0 auto;
}

/* =========================================================
RIGHT COLUMN INTRO TEXT
========================================================= */
.idp-works-right > p {
    margin:0 0 25px;
    color:#818898;
    font-size:1rem;
    font-weight:400;
    line-height:1.65;
}

/* =========================================================
IBDP FEATURE / POINTER LIST
========================================================= */
.idp-feature-list {
    margin:0;
    padding:0;
    list-style:none;
}

.idp-feature-list li {
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin:0 0 20px;
    color:#818898;
    font-size:1rem;
    font-weight:400;
    line-height:1.65;
}

.idp-feature-list li:last-child {
    margin-bottom:0;
}

.idp-feature-list li i {
    flex:0 0 15px;
    margin-top:5px;
    color:#804b9a;
    font-size:.75rem;
}

.idp-feature-list li span {
    flex:1;
}

/* =========================================================
LOWER CONTENT
SUBJECT OFFERING + VIDEO
========================================================= */
.idp-lower-row {
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:35px;
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid #eeeeee;
}

/* =========================================================
SUBJECT OFFERING
========================================================= */
.idp-subject-offering {
    padding-right:10px;
}

.idp-subject-offering h3 {
    margin:0 0 5px;
    color:#818898;
    font-size:1rem;
    font-weight:700;
    line-height:1.4;
}

.idp-subject-offering p {
    margin:0;
    color:#818898;
    font-size:.95rem;
    font-weight:400;
    line-height:1.5;
}

.idp-subject-offering strong {
    font-weight:700;
}

/* =========================================================
FINAL SUBJECT SELECTION NOTE
========================================================= */
.idp-subject-note {
    margin-top:3px !important;
    font-weight:700 !important;
    color:#6f7785 !important;
}

/* =========================================================
CAS BUTTON
========================================================= */
.idp-cas-button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:30px;
    padding:9px 25px;
    border:1px solid #804b9a;
    border-radius:25px;
    background:#804b9a;
    color:#ffffff;
    font-size:1rem;
    font-weight:400;
    line-height:1;
    text-decoration:none;
    transition:var(--transition);
}

.idp-cas-button:hover {
    background:#6e3f86;
    border-color:#6e3f86;
    color:#ffffff;
}

/* =========================================================
YOUTUBE VIDEO
========================================================= */
.idp-video {
    width:100%;
    display:flex;
    align-items:flex-start;
    justify-content:center;
}

.idp-video-frame {
    position:relative;
    width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    background:#111111;
}

.idp-video-frame iframe {
    display:block;
    width:100%;
    height:100%;
    border:0;
}

/* =========================================================
IBDP LEARNING STORIES
Currently intentionally blank.
========================================================= */
#idp-panel-stories {
    min-height:120px;
}

/* =========================================================
TABLET
========================================================= */
@media (min-width:768px) and (max-width:991px) {
    .idp-heading {
        font-size:2.1rem;
    }

    .idp-works-row {
        grid-template-columns:1fr;
        gap:35px;
    }

    .idp-works-left {
        padding:0 0 35px;
        border-right:none;
        border-bottom:1px solid #eeeeee;
    }

    .idp-works-right {
        padding:0;
    }

    .idp-lower-row {
        grid-template-columns:1fr;
    }

    .idp-video {
        margin-top:10px;
    }
}

/* =========================================================
MOBILE
========================================================= */
@media(max-width:767px) {
    .idp-wrap {
        padding:35px 0 45px;
    }

    /* Programme Logo */
    .idp-programme-logo {
        height:48px;
        margin-bottom:28px;
    }

    /* Main Heading */
    .idp-heading {
        font-size:1.8rem;
        line-height:1.2;
    }

    /* Introduction */
    .idp-intro p {
        font-size:1rem;
        line-height:1.75;
    }

    /* Tabs */
    .idp-tabs {
        overflow-x:auto;
    }

    .idp-tab-btn {
        padding:14px 18px;
        white-space:nowrap;
        font-size:.9rem;
    }

    /* TOK Panel */
    #idp-panel-tok {
        padding:25px 15px 30px;
    }

    /* Main content */
    .idp-works-row {
        display:block;
    }

    .idp-works-left {
        padding:0 0 30px;
        border-right:none;
        border-bottom:1px solid #eeeeee;
    }

    .idp-works-right {
        padding:30px 0 0;
    }

    .idp-subheading {
        font-size:1.3rem;
    }

    .idp-diagram {
        margin-top:10px;
    }

    .idp-diagram img {
        max-width:360px;
    }

    /* Pointer list */
    .idp-feature-list li {
        font-size:1rem;
        line-height:1.7;
        margin-bottom:16px;
    }

    /* Subject + video */
    .idp-lower-row {
        display:block;
        margin-top:30px;
        padding-top:25px;
    }

    .idp-subject-offering {
        padding-right:0;
    }

    .idp-subject-offering p {
        font-size:.95rem;
        line-height:1.6;
    }

    .idp-video {
        margin-top:30px;
    }

    .idp-cas-button {
        margin-top:25px;
    }
}


/* =========================================================
   HOUSE SYSTEM - PODAR ORT INTERNATIONAL SCHOOL
   Scoped styles for the House System page content.
   
   Uses existing global styles for:
   - .container
   - .page-banner
   - .section-navigation
   - .breadcrumb-section
   - .section-divider
   - --primary
   - --secondary
   - --text
========================================================= */


/* =========================================================
   House System Content
========================================================= */

.house-system-content {
    padding: 45px 0 70px;
    background:#ffffff;
}


/* =========================================================
   Page Heading
========================================================= */

.house-system-heading {
    text-align:center;
    margin-bottom:65px;
}

.house-system-heading h1 {
    margin:0;
    font-size:2rem;
    font-weight:700;
    color:#2e353e;
    line-height:1.3;
}


/* =========================================================
   Heading Divider
========================================================= */

.house-system-heading .section-divider {
    margin:20px auto 0;
}


/* =========================================================
   House Championship Tally
========================================================= */

.house-system-tally {
    width:100%;
    text-align:center;
}

.house-system-tally img {
    display:block;
    width:100%;
    max-width:1000px;
    height:auto;
    margin:0 auto;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width:991px) {

    .house-system-content {
        padding:40px 0 60px;
    }

    .house-system-heading {
        margin-bottom:50px;
    }

    .house-system-heading h1 {
        font-size:1.8rem;
    }

    .house-system-tally img {
        max-width:100%;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width:767px) {

    .house-system-content {
        padding:35px 0 50px;
    }

    .house-system-heading {
        margin-bottom:35px;
    }

    .house-system-heading h1 {
        font-size:1.6rem;
    }

    .house-system-heading .section-divider {
        margin-top:15px;
    }

    .house-system-tally {
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }

    .house-system-tally img {
        width:100%;
        min-width:700px;
        max-width:none;
    }

}


/* =========================================================
   ARTS PAGE
   PODAR ORT INTERNATIONAL SCHOOL - WORLI

   This CSS covers all three Arts sections:
   1. Visual Arts
   2. Performing Arts
   3. Spoken Arts

   It is scoped to the Arts page components and does not
   modify the global header, footer or section-navigation.
========================================================= */


/* =========================================================
   ARTS PAGE - MAIN SECTION
========================================================= */

.arts-section {
    padding: 35px 0 70px;
}

.arts-heading {
    margin-bottom: 55px;
}

.arts-heading h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #242a35;
}

.arts-heading .section-divider {
    margin-top: 22px;
}


/* =========================================================
   ARTS TABS
========================================================= */

.arts-tabs {
    width: 100%;
}

.arts-tab-buttons {
    display: flex;
    width: 100%;
    background: #f4f4f4;
    border-top: 1px solid #eeeeee;
}

.arts-tab-btn {
    flex: 1;
    min-height: 42px;

    padding: 10px 15px;

    background: #f4f4f4;

    border: 0;
    border-left: 1px solid #eeeeee;

    border-top: 2px solid transparent;

    border-bottom: 0 !important;

    outline: none;

    cursor: pointer;

    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 400;

    color: #6a80a9;

    transition: all 0.25s ease;
}

.arts-tab-btn:first-child {
    border-left: 0;
}

.arts-tab-btn:hover {
    color: var(--primary);
}

.arts-tab-btn.is-active {
    color: var(--primary);

    background: #ffffff;

    border-top: 2px solid #6a80a9;

    border-bottom: 0 !important;
}


/* =========================================================
   ARTS TAB PANELS
========================================================= */

.arts-tab-panel {
    display: none;

    padding: 18px 12px 30px;

    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    background: #ffffff;
}

.arts-tab-panel.is-active {
    display: block;
}


/* =========================================================
   ARTS TABLE - COMMON
========================================================= */

.arts-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.arts-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;

    color: #818898;

    font-size: 0.9rem;
    line-height: 1.6;
}

.arts-table th {
    padding: 10px 14px;

    background: #82489d;

    border: 1px solid #ffffff;

    color: #ffffff;

    text-align: left;

    font-size: 0.9rem;
    font-weight: 700;
}

.arts-table td {
    padding: 18px 14px;

    border: 1px solid #e5e5e5;

    vertical-align: middle;

    background: #ffffff;
}

.arts-table td:first-child {
    color: #818898;
    font-weight: 400;
}

.arts-table ul {
    margin: 0;
    padding-left: 20px;
}

.arts-table li {
    margin-bottom: 4px;
}

.arts-table li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VISUAL ARTS TABLE
========================================================= */

#arts-panel-visual-arts .arts-table th:nth-child(1) {
    width: 27%;
}

#arts-panel-visual-arts .arts-table th:nth-child(2) {
    width: 38%;
}

#arts-panel-visual-arts .arts-table th:nth-child(3) {
    width: 35%;
}


/* =========================================================
   VISUAL ARTS GALLERY BUTTON
========================================================= */

.arts-gallery-link {
    margin: 30px 0 32px;
}

.arts-gallery-button {
    display: inline-block;

    padding: 10px 22px;

    background: #82489d;

    border-radius: 25px;

    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 500;

    text-decoration: none;

    transition: background 0.25s ease;
}

.arts-gallery-button:hover {
    color: #ffffff;
    background: #713c8b;
}


/* =========================================================
   VISUAL ARTS IMAGE GALLERY
========================================================= */

.arts-gallery {
    width: 100%;
}

.arts-gallery .row {
    margin-left: 0;
    margin-right: 0;
}

.arts-gallery-image {
    width: 100%;
    overflow: hidden;
}

.arts-gallery-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.arts-gallery-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   PERFORMING ARTS TABLE
========================================================= */

.arts-performing-table th:nth-child(1) {
    width: 17%;
}

.arts-performing-table th:nth-child(2) {
    width: 27%;
}

.arts-performing-table th:nth-child(3) {
    width: 35%;
}

.arts-performing-table th:nth-child(4) {
    width: 21%;
}

.arts-performing-table td {
    vertical-align: middle;
}


/* =========================================================
   PERFORMING ARTS - THREE COLUMN GALLERY
========================================================= */

.arts-performing-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 30px;
}

.arts-performing-gallery-item {
    width: 100%;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   PERFORMING ARTS SWIPER
========================================================= */

.arts-performing-swiper {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eeeeee;
}

.arts-performing-swiper .swiper-wrapper {
    height: 100%;
}

.arts-performing-swiper .swiper-slide {
    height: 100%;
}

.arts-performing-swiper .swiper-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   PERFORMING ARTS - PAGINATION
========================================================= */

.arts-performing-swiper .swiper-pagination {
    bottom: 8px;

    line-height: 1;
}

.arts-performing-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 4px !important;

    background: #000000;

    opacity: 0.65;
}

.arts-performing-swiper .swiper-pagination-bullet-active {
    background: #000000;

    opacity: 1;
}


/* =========================================================
   PERFORMING ARTS - NAVIGATION ARROWS
   Hidden normally.
   Visible when user hovers over the carousel.
========================================================= */

.arts-performing-swiper .swiper-button-prev,
.arts-performing-swiper .swiper-button-next {
    width: 34px;
    height: 34px;

    margin-top: -17px;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.25s ease,
                visibility 0.25s ease;
}

.arts-performing-swiper:hover .swiper-button-prev,
.arts-performing-swiper:hover .swiper-button-next {
    opacity: 1;

    visibility: visible;
}

.arts-performing-swiper .swiper-button-prev {
    left: 8px;
}

.arts-performing-swiper .swiper-button-next {
    right: 8px;
}

.arts-performing-swiper .swiper-button-prev::after,
.arts-performing-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   PERFORMING ARTS - CAPTION
========================================================= */

.arts-performing-caption {
    padding: 9px 12px;

    background: #82489d;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 400;

    line-height: 1.3;
}


/* =========================================================
   SPOKEN ARTS - THREE COLUMN GALLERY
========================================================= */

.arts-spoken-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px 20px;

    width: 100%;
}

.arts-spoken-gallery-item {
    width: 100%;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   SPOKEN ARTS SWIPER
========================================================= */

.arts-spoken-swiper {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #eeeeee;
}

.arts-spoken-swiper .swiper-wrapper {
    height: 100%;
}

.arts-spoken-swiper .swiper-slide {
    height: 100%;
}

.arts-spoken-swiper .swiper-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   SPOKEN ARTS - PAGINATION
========================================================= */

.arts-spoken-swiper .swiper-pagination {
    bottom: 8px;

    line-height: 1;
}

.arts-spoken-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 4px !important;

    background: #000000;

    opacity: 0.65;
}

.arts-spoken-swiper .swiper-pagination-bullet-active {
    background: #000000;

    opacity: 1;
}


/* =========================================================
   SPOKEN ARTS - NAVIGATION ARROWS
   Hidden normally.
   Visible when user hovers over the carousel.
========================================================= */

.arts-spoken-swiper .swiper-button-prev,
.arts-spoken-swiper .swiper-button-next {
    width: 34px;
    height: 34px;

    margin-top: -17px;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.25s ease,
                visibility 0.25s ease;
}

.arts-spoken-swiper:hover .swiper-button-prev,
.arts-spoken-swiper:hover .swiper-button-next {
    opacity: 1;

    visibility: visible;
}

.arts-spoken-swiper .swiper-button-prev {
    left: 8px;
}

.arts-spoken-swiper .swiper-button-next {
    right: 8px;
}

.arts-spoken-swiper .swiper-button-prev::after,
.arts-spoken-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   SPOKEN ARTS - CAPTION
========================================================= */

.arts-spoken-caption {
    padding: 9px 12px;

    background: #82489d;

    color: #ffffff;

    font-size: 1.3rem;
    font-weight: 400;

    line-height: 1.3;
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .arts-section {
        padding: 30px 0 55px;
    }

    .arts-heading {
        margin-bottom: 40px;
    }

    .arts-heading h1 {
        font-size: 1.8rem;
    }

    .arts-table {
        font-size: 0.85rem;
    }

    .arts-table th {
        font-size: 0.85rem;
        padding: 9px 10px;
    }

    .arts-table td {
        padding: 14px 10px;
    }

    .arts-table ul {
        padding-left: 16px;
    }

    .arts-performing-gallery,
    .arts-spoken-gallery {
        gap: 12px;
    }

    .arts-performing-caption,
    .arts-spoken-caption {
        font-size: 0.9rem;
    }

}


/* =========================================================
   MOBILE
   Below 767px
========================================================= */

@media (max-width: 767px) {

    .arts-section {
        padding: 30px 0 45px;
    }

    .arts-heading {
        margin-bottom: 30px;
    }

    .arts-heading h1 {
        font-size: 1.6rem;
    }

    .arts-heading .section-divider {
        margin-top: 16px;
    }


    /* -----------------------------------------------------
       Tabs
    ----------------------------------------------------- */

    .arts-tab-buttons {
        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .arts-tab-btn {
        flex: 0 0 auto;

        min-width: 120px;

        padding: 10px 14px;

        font-size: 0.8rem;

        white-space: nowrap;
    }

    .arts-tab-panel {
        padding: 12px 8px 25px;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       Tables
    ----------------------------------------------------- */

    .arts-table-wrapper {
        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .arts-table {
        min-width: 700px;

        font-size: 0.8rem;
    }

    .arts-table th {
        padding: 8px 9px;

        font-size: 0.8rem;
    }

    .arts-table td {
        padding: 12px 9px;
    }

    .arts-table ul {
        padding-left: 16px;
    }


    /* -----------------------------------------------------
       Visual Arts Gallery
    ----------------------------------------------------- */

    .arts-gallery-link {
        margin: 25px 0;
    }

    .arts-gallery-button {
        padding: 9px 16px;

        font-size: 0.85rem;
    }

    .arts-gallery .row {
        row-gap: 12px !important;
    }


    /* -----------------------------------------------------
       Performing Arts Gallery
    ----------------------------------------------------- */

    .arts-performing-gallery {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 25px;
    }

    .arts-performing-swiper {
        aspect-ratio: 4 / 3;
    }

    .arts-performing-caption {
        padding: 8px 10px;

        font-size: 0.95rem;
    }


    /* -----------------------------------------------------
       Spoken Arts Gallery
    ----------------------------------------------------- */

    .arts-spoken-gallery {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .arts-spoken-swiper {
        aspect-ratio: 4 / 3;
    }

    .arts-spoken-caption {
        padding: 8px 10px;

        font-size: 0.95rem;
    }


    /* -----------------------------------------------------
       Mobile Navigation Arrows
       Keep arrows accessible on touch devices.
    ----------------------------------------------------- */

    .arts-performing-swiper .swiper-button-prev,
    .arts-performing-swiper .swiper-button-next,
    .arts-spoken-swiper .swiper-button-prev,
    .arts-spoken-swiper .swiper-button-next {
        opacity: 0.7;

        visibility: visible;
    }

}
/* =========================================================
   ARTS / SECTION CAROUSEL LIGHTBOX
   Reusable for Arts and future Gallery / Events pages

   Full-screen dark overlay with a fixed-size image panel
   on the left and a heading / write-up panel on the right.
========================================================= */

.section-image-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px 60px;

    overflow-y: auto;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;


    /* -------------------------------------------------
       Firefox
    ------------------------------------------------- */

    scrollbar-width: thin;

    scrollbar-color: rgba(240, 201, 75, 0.55) transparent;
}


/* -----------------------------------------------------
   WebKit / Chromium (Chrome, Edge, Safari)
----------------------------------------------------- */

.section-image-lightbox::-webkit-scrollbar {
    width: 5px;
}

.section-image-lightbox::-webkit-scrollbar-track {
    background: transparent;
}

.section-image-lightbox::-webkit-scrollbar-thumb {
    background-color: rgba(240, 201, 75, 0.55);

    border-radius: 10px;
}

.section-image-lightbox::-webkit-scrollbar-thumb:hover {
    background-color: rgba(240, 201, 75, 0.85);
}


/* =========================================================
   LIGHTBOX OPEN STATE
========================================================= */

.section-image-lightbox.is-open {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   DARK OVERLAY
   #17042A at 80% opacity
========================================================= */

.section-lightbox-overlay {
    position: fixed;
    inset: 0;
    /* background: rgba(23, 4, 42, 0.8); */
    background: rgba(10, 10, 10, 0.96);
}


/* =========================================================
   TOP-RIGHT CLOSE BUTTON (thin, no background)
========================================================= */

.section-lightbox-close {
    position: fixed;

    top: 32px;

    right: 44px;

    z-index: 3;

    width: 34px;

    height: 34px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        opacity 0.25s ease;
}

.section-lightbox-close svg {
    width: 20px;

    height: 20px;
}

.section-lightbox-close:hover {
    transform: rotate(90deg);

    opacity: 0.7;
}


/* =========================================================
   CONTENT CONTAINER
   Two columns: media (left) / info (right)
========================================================= */

.section-lightbox-container {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    opacity: 0;

    transform: translateY(24px) scale(0.98);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.section-image-lightbox.is-open .section-lightbox-container {
    opacity: 1;

    transform: translateY(0) scale(1);
}


/* -----------------------------------------------------
   MEDIA-ONLY VARIANT
   Used when a gallery has no title, write-up, or CTA —
   the info column is hidden and the image + nav are
   centered instead of leaving a blank right side.
----------------------------------------------------- */

.section-lightbox-container.is-media-only {
    justify-content: center;
}

.section-lightbox-container.is-media-only .section-lightbox-info {
    display: none;
}

.section-lightbox-container.is-media-only .section-lightbox-media {
    flex: 0 0 auto;

    width: 100%;

    max-width: 640px;
}

.section-lightbox-container.is-media-only .section-lightbox-nav {
    justify-content: center;
}


/* =========================================================
   MEDIA COLUMN (image + nav)
========================================================= */

.section-lightbox-media {
    flex: 0 0 44%;

    max-width: 540px;
}


/* -----------------------------------------------------
   FIXED-SIZE IMAGE PANEL
   Stays the same size no matter the image's own
   width / height — the image fills it via object-fit.
----------------------------------------------------- */

.section-lightbox-image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3.7;

    max-height: 60vh;

    border-radius: 4px;

    overflow: hidden;

    background: transparent;
}

.section-lightbox-swiper,
.section-lightbox-swiper .swiper-wrapper,
.section-lightbox-swiper .swiper-slide {
    width: 100%;

    height: 100%;
}

.section-lightbox-swiper .swiper-slide {
    display: flex;

    align-items: center;

    justify-content: center;
}

.section-lightbox-swiper .swiper-slide img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* =========================================================
   NAV ROW: prev / next / counter
========================================================= */

.section-lightbox-nav {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 26px;
}

.section-lightbox-prev,
.section-lightbox-next {
    flex: 0 0 auto;

    width: 46px;

    height: 46px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: transparent;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease;
}

.section-lightbox-prev svg,
.section-lightbox-next svg {
    width: 16px;

    height: 16px;
}

.section-lightbox-prev:hover,
.section-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: rgba(255, 255, 255, 0.7);
}

.section-lightbox-prev:active,
.section-lightbox-next:active {
    transform: scale(0.92);
}

.section-lightbox-counter {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 30px;

    padding: 13px 26px;

    color: #ffffff;

    font-size: 0.78rem;

    font-weight: 500;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    white-space: nowrap;

    transition: border-color 0.25s ease;
}


/* =========================================================
   INFO COLUMN (heading + write-up + CTA)
========================================================= */

.section-lightbox-info {
    flex: 1 1 auto;

    padding-left: 70px;

    padding-right: 14px;

    color: #ffffff;

    max-height: 78vh;

    overflow-y: auto;


    /* -------------------------------------------------
       Firefox
    ------------------------------------------------- */

    scrollbar-width: thin;

    scrollbar-color: rgba(240, 201, 75, 0.55) transparent;
}


/* -----------------------------------------------------
   WebKit / Chromium (Chrome, Edge, Safari)
----------------------------------------------------- */

.section-lightbox-info::-webkit-scrollbar {
    width: 5px;
}

.section-lightbox-info::-webkit-scrollbar-track {
    background: transparent;
}

.section-lightbox-info::-webkit-scrollbar-thumb {
    background-color: rgba(240, 201, 75, 0.55);

    border-radius: 10px;
}

.section-lightbox-info::-webkit-scrollbar-thumb:hover {
    background-color: rgba(240, 201, 75, 0.85);
}

.section-lightbox-title {
    margin: 0 0 22px;

    font-size: 1.6rem;

    font-weight: 700;

    letter-spacing: 0.03em;

    text-transform: uppercase;

    color: #ffffff;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.4s ease 0.1s,
        transform 0.4s ease 0.1s;
}

.section-image-lightbox.is-open .section-lightbox-title {
    opacity: 1;

    transform: translateY(0);
}

.section-lightbox-description {
    font-size: 0.98rem;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.4s ease 0.18s,
        transform 0.4s ease 0.18s;
}

.section-image-lightbox.is-open .section-lightbox-description {
    opacity: 1;

    transform: translateY(0);
}

.section-lightbox-description p {
    margin: 0 0 18px;
}

.section-lightbox-description p:last-child {
    margin-bottom: 0;
}

.section-lightbox-description a {
    color: var(--secondary, #f0c94b);

    text-decoration: underline;
}


/* -----------------------------------------------------
   HIDDEN WHEN NO CONTENT IS PROVIDED
   (title-only slides, e.g. the current Arts gallery)
----------------------------------------------------- */

.section-lightbox-description:empty,
.section-lightbox-cta[hidden] {
    display: none;
}


/* =========================================================
   OPTIONAL CTA BUTTON
========================================================= */

.section-lightbox-cta {
    display: inline-block;

    margin-top: 28px;

    padding: 14px 30px;

    border: 1px solid #ffffff;

    border-radius: 2px;

    color: #ffffff;

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.section-lightbox-cta:hover {
    background: #ffffff;

    color: #17042a;
}


/* =========================================================
   MOBILE
   Stack: image → nav → heading → write-up
========================================================= */

@media (max-width: 900px) {

    .section-image-lightbox {
        padding: 64px 20px 30px;
    }

    .section-lightbox-close {
        top: 18px;

        right: 18px;
    }

    .section-lightbox-container {
        flex-direction: column;

        align-items: stretch;

        max-height: calc(100vh - 94px);
    }

    .section-lightbox-media {
        flex: none;

        max-width: none;

        width: 100%;
    }

    .section-lightbox-image-wrap {
        aspect-ratio: 4 / 3.3;

        max-height: 45vh;
    }

    .section-lightbox-nav {
        margin-top: 18px;
    }

    .section-lightbox-prev,
    .section-lightbox-next {
        width: 40px;

        height: 40px;
    }

    .section-lightbox-counter {
        display: none;
        padding: 11px 18px;

        font-size: 0.7rem;
    }

    .section-lightbox-info {
        padding-left: 0;

        margin-top: 28px;

        max-height: none;

        overflow-y: visible;
    }

    .section-lightbox-title {
        font-size: 1.25rem;

        margin-bottom: 14px;
    }

    .section-lightbox-description {
        font-size: 0.92rem;

        line-height: 1.7;
    }

}


/* =========================================================
   PREVENT PAGE SCROLL WHEN LIGHTBOX IS OPEN
========================================================= */

body.section-lightbox-open {
    overflow: hidden;
}

/* =========================================================
   SPORTS AND GAMES PAGE
   PODAR ORT INTERNATIONAL SCHOOL - WORLI

   Scoped styles for:
   - Sports and Games heading
   - Physical Education Programme tab
   - Gallery tab
   - Physical Education Programme table
   - Responsive behaviour

   NOTE:
   Tab functionality uses the generic classes:
   .site-tab-btn
   .site-tab-panel

   Sports-specific layout continues to use:
   .sports-*
========================================================= */


/* =========================================================
   MAIN SPORTS SECTION
========================================================= */

.sports-section {
    padding: 35px 0 70px;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.sports-heading {
    margin-bottom: 55px;
}

.sports-heading h1 {
    margin: 0;

    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;

    color: #242a35;
}

.sports-heading .section-divider {
    margin-top: 22px;
}


/* =========================================================
   SPORTS TABS
========================================================= */

.sports-tabs {
    width: 100%;
}


/* =========================================================
   TAB BUTTON CONTAINER
========================================================= */

.sports-tab-buttons {
    display: flex;

    width: 100%;

    background: #f4f4f4;

    border-top: 1px solid #eeeeee;
}


/* =========================================================
   GENERIC TAB BUTTON
   Used by the common tab JavaScript
========================================================= */

.site-tab-btn {
    flex: 1;

    min-height: 42px;

    padding: 10px 15px;

    background: #f4f4f4;

    border: 0;
    border-left: 1px solid #eeeeee;

    border-top: 2px solid transparent;

    /* No bottom border */
    border-bottom: 0 !important;

    outline: none;

    cursor: pointer;

    font-family: inherit;

    font-size: 0.9rem;
    font-weight: 400;

    color: #6a80a9;

    transition: all 0.25s ease;
}

.site-tab-btn:first-child {
    border-left: 0;
}


/* =========================================================
   TAB BUTTON - HOVER
========================================================= */

.site-tab-btn:hover {
    color: var(--primary);
}


/* =========================================================
   TAB BUTTON - ACTIVE
========================================================= */

.site-tab-btn.is-active {
    color: var(--primary);

    background: #ffffff;

    border-top: 2px solid #6a80a9;

    /*
     * Important:
     * Do NOT show a border below the active tab.
     */
    border-bottom: 0 !important;
}


/* =========================================================
   GENERIC TAB PANEL
   Used by the common tab JavaScript
========================================================= */

.site-tab-panel {
    display: none;

    padding: 18px 12px 30px;

    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    background: #ffffff;
}


/* =========================================================
   ACTIVE TAB PANEL
========================================================= */

.site-tab-panel.is-active {
    display: block;
}


/* =========================================================
   SPORTS TABLE WRAPPER
========================================================= */

.sports-table-wrapper {
    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;
}


/* =========================================================
   SPORTS TABLE
========================================================= */

.sports-table {
    width: 100%;

    border-collapse: collapse;

    table-layout: fixed;

    color: #818898;

    font-size: 0.9rem;

    line-height: 1.45;
}


/* =========================================================
   SPORTS TABLE HEADER
========================================================= */

.sports-table th {
    padding: 10px 10px;

    background: #82489d;

    border: 1px solid #ffffff;

    color: #ffffff;

    text-align: left;

    font-size: 0.82rem;

    font-weight: 700;

    line-height: 1.35;

    vertical-align: middle;
}


/* =========================================================
   SPORTS TABLE CELLS
========================================================= */

.sports-table td {
    padding: 18px 10px;

    border: 1px solid #e5e5e5;

    vertical-align: middle;

    background: #ffffff;

    font-size: 0.86rem;

    line-height: 1.45;
}

.sports-table td:first-child {
    color: #818898;

    font-weight: 400;
}


/* =========================================================
   SPORTS TABLE LISTS
========================================================= */

.sports-table ul {
    margin: 0;

    padding-left: 18px;
}

.sports-table li {
    margin-bottom: 4px;
}

.sports-table li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SPORTS TABLE - COLUMN WIDTHS

   Division                  12%
   Inter House Activities   14%
   Specialization            17%
   Inter School Activities  14%
   Sports & Games Camps      14%
   PE Component              14%
   Time Duration             15%
========================================================= */

.sports-table th:nth-child(1) {
    width: 12%;
}

.sports-table th:nth-child(2) {
    width: 14%;
}

.sports-table th:nth-child(3) {
    width: 17%;
}

.sports-table th:nth-child(4) {
    width: 14%;
}

.sports-table th:nth-child(5) {
    width: 14%;
}

.sports-table th:nth-child(6) {
    width: 14%;
}

.sports-table th:nth-child(7) {
    width: 15%;
}


/* =========================================================
   TIME DURATION COLUMN
========================================================= */

.sports-table td:nth-child(7) {
    font-size: 0.82rem;

    line-height: 1.45;
}


/* =========================================================
   EMPTY CELLS
========================================================= */

.sports-table td:empty::after {
    content: "";

    display: block;

    min-height: 20px;
}


/* =========================================================
   SPORTS GALLERY PANEL
   Currently kept empty.
========================================================= */

#sports-panel-gallery {
    min-height: 250px;
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .sports-section {
        padding: 30px 0 55px;
    }


    /* ---------------------------------------------
       Heading
    --------------------------------------------- */

    .sports-heading {
        margin-bottom: 40px;
    }

    .sports-heading h1 {
        font-size: 1.8rem;
    }


    /* ---------------------------------------------
       Table
    --------------------------------------------- */

    .sports-table {
        min-width: 900px;
    }

    .sports-table th {
        padding: 9px 9px;

        font-size: 0.8rem;
    }

    .sports-table td {
        padding: 16px 9px;

        font-size: 0.84rem;
    }

}


/* =========================================================
   MOBILE
   Below 767px
========================================================= */

@media (max-width: 767px) {

    .sports-section {
        padding: 30px 0 45px;
    }


    /* ---------------------------------------------
       Heading
    --------------------------------------------- */

    .sports-heading {
        margin-bottom: 30px;
    }

    .sports-heading h1 {
        font-size: 1.6rem;
    }

    .sports-heading .section-divider {
        margin-top: 15px;
    }


    /* ---------------------------------------------
       Tab buttons
    --------------------------------------------- */

    .sports-tab-buttons {
        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .site-tab-btn {
        flex: 0 0 auto;

        min-width: 180px;

        padding: 10px 18px;

        white-space: nowrap;

        font-size: 0.88rem;
    }


    /* ---------------------------------------------
       Tab panel
    --------------------------------------------- */

    .site-tab-panel {
        padding: 15px 8px 25px;
    }


    /* ---------------------------------------------
       Sports table

       The table remains wide enough to preserve
       readability. Horizontal scrolling is handled
       by .sports-table-wrapper.
    --------------------------------------------- */

    .sports-table {
        min-width: 1000px;

        font-size: 0.85rem;
    }

    .sports-table th {
        padding: 9px 8px;

        font-size: 0.78rem;

        line-height: 1.3;
    }

    .sports-table td {
        padding: 15px 8px;

        font-size: 0.82rem;

        line-height: 1.4;
    }

    .sports-table td:nth-child(7) {
        font-size: 0.8rem;
    }


    /* ---------------------------------------------
       Gallery
    --------------------------------------------- */

    #sports-panel-gallery {
        min-height: 200px;
    }

}

/* =========================================================
   FLAT THUMBNAIL GALLERY GRID
   Reusable for Sports and Games Gallery and any future
   simple "grid of photos" gallery.
========================================================= */

.section-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.section-gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.section-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.section-gallery-item:hover img {
    transform: scale(1.05);
}


/* -----------------------------------------------------
   TABLET
----------------------------------------------------- */

@media (max-width: 991px) {

    .section-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

}


/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */

@media (max-width: 600px) {

    .section-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

}

/* =========================================================
   SOCIO EMOTIONAL LEARNING PAGE
   PODAR ORT INTERNATIONAL SCHOOL - WORLI

   Scoped styles for:
   - SEL page heading
   - Two-column image grid
   - Image cards
   - Purple image captions
   - Responsive tablet and mobile layouts

   No tabs or JavaScript are required on this page.
========================================================= */


/* =========================================================
   MAIN SEL SECTION
========================================================= */

.sel-section {
    padding: 35px 0 70px;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.sel-heading {
    margin-bottom: 50px;
}

.sel-heading h1 {
    margin: 0;

    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;

    color: #242a35;
}


/* =========================================================
   YELLOW SECTION DIVIDER
========================================================= */

.sel-heading .section-divider {
    margin-top: 20px;
}


/* =========================================================
   SEL IMAGE GRID
========================================================= */

.sel-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px 24px;

    width: 100%;
}


/* =========================================================
   SEL CARD
========================================================= */

.sel-card {
    width: 100%;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   SEL CARD IMAGE
========================================================= */

.sel-card-image {
    width: 100%;

    overflow: hidden;
}

.sel-card-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* =========================================================
   SEL CARD CAPTION
========================================================= */

.sel-card-caption {
    padding: 11px 14px;

    background: #82489d;

    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 400;

    line-height: 1.35;

    min-height: 48px;

    display: flex;
    align-items: center;
}


/* =========================================================
   FIRST CARD
   The first image in the screenshot does not have a
   caption below it.
========================================================= */

.sel-card:first-child .sel-card-image img {
    display: block;
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .sel-section {
        padding: 30px 0 55px;
    }


    /* ---------------------------------------------
       Heading
    --------------------------------------------- */

    .sel-heading {
        margin-bottom: 40px;
    }

    .sel-heading h1 {
        font-size: 1.8rem;
    }


    /* ---------------------------------------------
       Grid
    --------------------------------------------- */

    .sel-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px 18px;
    }


    /* ---------------------------------------------
       Caption
    --------------------------------------------- */

    .sel-card-caption {
        padding: 10px 12px;

        font-size: 0.9rem;

        line-height: 1.35;
    }

}


/* =========================================================
   MOBILE
   Below 767px
========================================================= */

@media (max-width: 767px) {

    .sel-section {
        padding: 30px 0 45px;
    }


    /* ---------------------------------------------
       Heading
    --------------------------------------------- */

    .sel-heading {
        margin-bottom: 30px;
    }

    .sel-heading h1 {
        font-size: 1.6rem;
    }

    .sel-heading .section-divider {
        margin-top: 15px;
    }


    /* ---------------------------------------------
       Single-column layout
    --------------------------------------------- */

    .sel-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    /* ---------------------------------------------
       Image
    --------------------------------------------- */

    .sel-card-image img {
        width: 100%;
        height: auto;
    }


    /* ---------------------------------------------
       Caption
    --------------------------------------------- */

    .sel-card-caption {
        padding: 10px 12px;

        min-height: 0;

        font-size: 0.9rem;

        line-height: 1.4;
    }

}


/* =========================================================
   HOLISTIC LEARNING CONTINUUM PAGE
   Podar ORT International School - Worli

   This CSS controls:
   1. Page heading
   2. Top full-width continuum image
   3. Four programme cards
   4. Purple programme captions
   5. Responsive layout for tablet and mobile
========================================================= */


/* =========================================================
   MAIN SECTION
========================================================= */

.hlc-section {
    padding: 40px 0 70px;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.hlc-heading {
    margin-bottom: 45px;
}

.hlc-heading h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2933;
}


/* =========================================================
   TOP FULL-WIDTH CONTINUUM IMAGE
========================================================= */

.hlc-feature {
    width: 100%;
    margin-bottom: 45px;
}

.hlc-feature img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   PROGRAMME CARDS GRID
========================================================= */

.hlc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
}


/* =========================================================
   INDIVIDUAL PROGRAMME CARD
========================================================= */

.hlc-card {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   PROGRAMME CARD IMAGE
========================================================= */

.hlc-card-image {
    width: 100%;
    overflow: hidden;
}

.hlc-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* =========================================================
   PROGRAMME CARD PURPLE CAPTION
========================================================= */

.hlc-card-caption {
    width: 100%;
    padding: 12px 15px;
    background: #81489f;
    color: #ffffff;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .hlc-section {
        padding: 35px 0 60px;
    }

    .hlc-heading {
        margin-bottom: 35px;
    }

    .hlc-heading h1 {
        font-size: 2rem;
    }

    .hlc-feature {
        margin-bottom: 35px;
    }

    .hlc-grid {
        gap: 30px 20px;
    }

    .hlc-card-caption {
        font-size: 1rem;
        padding: 11px 12px;
    }

}


/* =========================================================
   MOBILE
   Below 768px
========================================================= */

@media (max-width: 767px) {

    .hlc-section {
        padding: 30px 0 45px;
    }

    .hlc-heading {
        margin-bottom: 30px;
    }

    .hlc-heading h1 {
        font-size: 1.8rem;
    }

    .hlc-feature {
        margin-bottom: 30px;
    }

    .hlc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hlc-card-caption {
        font-size: 1rem;
        padding: 11px 12px;
    }

}


/* =========================================================
   SMALL MOBILE DEVICES
   Below 480px
========================================================= */

@media (max-width: 480px) {

    .hlc-heading h1 {
        font-size: 1.6rem;
    }

    .hlc-card-caption {
        font-size: .95rem;
    }

}

/* =========================================================
   SERVICE AND CAS PAGE
   Podar ORT International School - Worli

   This CSS controls:
   1. Service and CAS page heading
   2. Service and CAS tabs
   3. Action in PYP layout
   4. Service As Action image grid
   5. CAS content layout
   6. YouTube video
   7. CAS project sections
   8. Responsive layouts
========================================================= */


/* =========================================================
   MAIN SERVICE & CAS SECTION
========================================================= */

.service-cas-section {
    padding: 40px 0 70px;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.service-cas-heading {
    margin-bottom: 45px;
}

.service-cas-heading h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2933;
}


/* =========================================================
   TABS
========================================================= */

.service-cas-tabs {
    display: flex;
    width: 100%;
    background: #f4f4f4;
    border: 1px solid #eeeeee;
}

.service-cas-tab-btn {
    flex: 1;
    border: none;
    border-top: 2px solid transparent;
    background: #f4f4f4;
    color: #6a80a9;
    padding: 11px 15px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
}

.service-cas-tab-btn:hover {
    color: var(--primary);
}

.service-cas-tab-btn.is-active {
    background: #ffffff;
    color: #6a80a9;
    border-top: 2px solid #6a80a9;
}


/* =========================================================
   TAB PANELS
========================================================= */

.service-cas-tab-panel {
    display: none;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 20px;
}

.service-cas-tab-panel.is-active {
    display: block;
}


/* =========================================================
   ACTION IN PYP
   FEATURED CARD
========================================================= */

.service-cas-pyp-feature {
    border: 2px solid #874ca3;
    margin-bottom: 8px;
    overflow: hidden;
}

.service-cas-pyp-feature-image {
    width: 100%;
    background: #f5f5f5;
}

.service-cas-pyp-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-cas-pyp-feature-content {
    background: #874ca3;
    color: #ffffff;
    padding: 12px 15px;
}

.service-cas-pyp-feature-content p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.55;
}


/* =========================================================
   ACTION IN PYP
   TWO-COLUMN GRID
========================================================= */

.service-cas-pyp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
}


/* =========================================================
   PYP CARDS
========================================================= */

.service-cas-pyp-card {
    border: 2px solid #874ca3;
    overflow: hidden;
    background: #ffffff;
}

.service-cas-pyp-card-image {
    width: 100%;
    background: #f4f4f4;
}

.service-cas-pyp-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-cas-pyp-card-content {
    background: #874ca3;
    color: #ffffff;
    padding: 11px 12px;
}

.service-cas-pyp-card-content p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
}


/* =========================================================
   ADDITIONAL PYP ACTIVITIES
   SMALL PURPLE CAPTION BLOCKS
========================================================= */

.service-cas-pyp-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 12px;
    margin-top: 8px;
}

.service-cas-pyp-small-card {
    background: #874ca3;
    color: #ffffff;
    padding: 10px 12px;
    font-size: .85rem;
    line-height: 1.45;
    min-height: 45px;
}


/* =========================================================
   SERVICE AS ACTION
   TWO-COLUMN IMAGE GRID
========================================================= */

.service-cas-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
}


/* =========================================================
   SERVICE AS ACTION CARDS
========================================================= */

.service-cas-service-card {
    border: 2px solid #874ca3;
    overflow: hidden;
    background: #ffffff;
}

.service-cas-service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-cas-service-card > div {
    background: #874ca3;
    color: #ffffff;
    padding: 10px 12px;
    font-size: 1.1rem;
    line-height: 1.4;
}


/* =========================================================
   CAS TAB
========================================================= */

#cas {
    padding: 20px;
}


/* =========================================================
   CAS YOUTUBE VIDEO
========================================================= */

.service-cas-video {
    width: 100%;
    margin-bottom: 25px;
}

.service-cas-video-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-cas-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* =========================================================
   CAS PROJECT BLOCK
========================================================= */

.service-cas-project {
    margin-bottom: 18px;
}

.service-cas-project-heading {
    width: 100%;
    background: #874ca3;
    color: #ffffff;
    padding: 9px 12px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
}

.service-cas-project-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.service-cas-project-text {
    font-size: 1rem;
    line-height: 1.55;
    color: #818898;
}

.service-cas-project-text p {
    margin: 0 0 10px;
}

.service-cas-project-description {
    margin: 8px 0;
    color: #818898;
    font-size: 1rem;
    line-height: 1.5;
}


/* =========================================================
   CAS PROJECT IMAGES
========================================================= */

.service-cas-project-image {
    width: 100%;
    overflow: hidden;
    border: 1px solid #874ca3;
}

.service-cas-project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-cas-project-image.small {
    max-width: 260px;
}


/* =========================================================
   CAS LIST
========================================================= */

.service-cas-list {
    list-style: none;
    padding: 10px 15px;
    margin: 0;
}

.service-cas-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #818898;
    font-size: 1rem;
}

.service-cas-list li::before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #874ca3;
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .service-cas-section {
        padding: 35px 0 60px;
    }

    .service-cas-heading {
        margin-bottom: 35px;
    }

    .service-cas-heading h1 {
        font-size: 2rem;
    }

    .service-cas-tab-panel {
        padding: 15px;
    }

    .service-cas-pyp-small-grid {
        gap: 60px 10px;
    }

}


/* =========================================================
   MOBILE
   Below 768px
========================================================= */

@media (max-width: 767px) {

    .service-cas-section {
        padding: 30px 0 45px;
    }

    .service-cas-heading {
        margin-bottom: 30px;
    }

    .service-cas-heading h1 {
        font-size: 1.8rem;
    }

    /* -----------------------------------------
       Tabs
    ----------------------------------------- */

    .service-cas-tabs {
        overflow-x: auto;
    }

    .service-cas-tab-btn {
        min-width: 33.333%;
        padding: 12px 10px;
        white-space: nowrap;
        font-size: .85rem;
    }

    .service-cas-tab-panel {
        padding: 12px;
    }


    /* -----------------------------------------
       Action in PYP
    ----------------------------------------- */

    .service-cas-pyp-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-cas-pyp-small-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }


    /* -----------------------------------------
       Service As Action
    ----------------------------------------- */

    .service-cas-service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    /* -----------------------------------------
       CAS
    ----------------------------------------- */

    #cas {
        padding: 12px;
    }

    .service-cas-project-content {
        grid-template-columns: 1fr;
    }

    .service-cas-project-image.small {
        max-width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE DEVICES
   Below 480px
========================================================= */

@media (max-width: 480px) {

    .service-cas-heading h1 {
        font-size: 1.6rem;
    }

    .service-cas-tab-btn {
        font-size: .78rem;
        padding: 11px 8px;
    }

    .service-cas-pyp-feature-content p,
    .service-cas-pyp-card-content p,
    .service-cas-pyp-small-card,
    .service-cas-service-card > div,
    .service-cas-project-text,
    .service-cas-list li {
        font-size: .8rem;
    }

}

/* =========================================================
   IAYP PAGE
   International Award for Young People
   ========================================================= */


/* ---------------------------------------------------------
   IAYP MAIN SECTION
   --------------------------------------------------------- */

.iayp-section {
    padding: 0 0 0;
    background: #ffffff;
}

.iayp-section .container {
    max-width: 100%;
}


/* ---------------------------------------------------------
   IAYP TWO-COLUMN LAYOUT
   Left  - Content
   Right - Full-height Image
   --------------------------------------------------------- */

.iayp-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    width: 100%;
}


/* ---------------------------------------------------------
   LEFT CONTENT
   --------------------------------------------------------- */

.iayp-left {
    padding: 55px 32px 55px 32px;
    background: #ffffff;
}

.iayp-right {
    width: 100%;
    height: 100%;
    min-height: 700px;
}


/* ---------------------------------------------------------
   IAYP LOGO
   --------------------------------------------------------- */

.iayp-logo {
    margin-bottom: 35px;
}

.iayp-logo img {
    display: block;
    width: 128px;
    height: auto;
}


/* ---------------------------------------------------------
   PAGE HEADING
   Consistent with other Holistic Experience pages
   --------------------------------------------------------- */

.iayp-heading {
    margin-bottom: 25px;
}

.iayp-heading h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #222222;
}

.iayp-heading .section-divider {
    width: 39px;
    height: 5px;
    margin-top: 20px;
    background: #ffc629;
}


/* ---------------------------------------------------------
   INTRODUCTORY CONTENT
   --------------------------------------------------------- */

.iayp-intro {
    margin-bottom: 38px;
}

.iayp-intro p {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.65;
    color: #858da3;
}

.iayp-intro p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   IAYP POINTS
   --------------------------------------------------------- */

.iayp-points {
    margin-top: 25px;
}

.iayp-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.iayp-point:last-child {
    margin-bottom: 0;
}

.iayp-point-icon {
    flex: 0 0 18px;
    width: 18px;
    margin-top: 4px;
    color: #87489f;
    font-size: 14px;
}

.iayp-point-icon i {
    color: #87489f;
}

.iayp-point p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #858da3;
}

.iayp-point p strong {
    font-weight: 700;
    color: #687186;
}


/* ---------------------------------------------------------
   GOLD AWARD CONTENT
   --------------------------------------------------------- */

.iayp-gold-award {
    margin: 45px 0 35px;
}

.iayp-gold-award p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #858da3;
}


/* ---------------------------------------------------------
   RIGHT-SIDE IMAGE
   Image occupies the complete right column
   --------------------------------------------------------- */

.iayp-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* ---------------------------------------------------------
   DESKTOP ADJUSTMENT
   --------------------------------------------------------- */

@media (min-width: 1200px) {

    .iayp-left {
        padding: 55px 40px 55px 32px;
    }

    .iayp-right {
        min-height: 830px;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .iayp-layout {
        grid-template-columns: 1fr;
    }

    .iayp-left {
        padding: 45px 30px;
    }

    .iayp-right {
        min-height: auto;
        height: auto;
    }

    .iayp-right img {
        height: auto;
        max-height: 750px;
        object-fit: cover;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .iayp-left {
        padding: 35px 20px 40px;
    }

    .iayp-logo {
        margin-bottom: 28px;
    }

    .iayp-logo img {
        width: 110px;
    }

    .iayp-heading {
        margin-bottom: 22px;
    }

    .iayp-heading h1 {
        font-size: 24px;
    }

    .iayp-heading .section-divider {
        width: 38px;
        height: 4px;
        margin-top: 16px;
    }

    .iayp-intro {
        margin-bottom: 30px;
    }

    .iayp-intro p,
    .iayp-point p,
    .iayp-gold-award p {
        font-size: 14px;
        line-height: 1.6;
    }

    .iayp-point {
        gap: 12px;
        margin-bottom: 25px;
    }

    .iayp-point-icon {
        flex-basis: 16px;
        width: 16px;
        font-size: 12px;
    }

    .iayp-gold-award {
        margin: 35px 0 28px;
    }

    .iayp-right img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

}



/* =========================================================
   EXPERIENTIAL LEARNING PAGE
   ========================================================= */


/* ---------------------------------------------------------
   MAIN SECTION
   --------------------------------------------------------- */

.experiential-learning-section {
    padding: 40px 0 70px;
    background: #ffffff;
}


/* ---------------------------------------------------------
   PAGE HEADING
   --------------------------------------------------------- */

.experiential-learning-heading {
    margin-bottom: 35px;
}

.experiential-learning-heading h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: #292929;
}

.experiential-learning-heading .section-divider {
    width: 40px;
    height: 5px;
    margin-top: 18px;
    background: #ffc629;
}


/* ---------------------------------------------------------
   TWO-COLUMN IMAGE GRID
   --------------------------------------------------------- */

.experiential-learning-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 30px;
    width: 100%;
}


/* ---------------------------------------------------------
   EXPERIENCE CARD
   --------------------------------------------------------- */

.experiential-card {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}


/* ---------------------------------------------------------
   EXPERIENCE IMAGE
   --------------------------------------------------------- */

.experiential-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
}


/* ---------------------------------------------------------
   PURPLE IMAGE CAPTION
   --------------------------------------------------------- */

.experiential-card-caption {
    display: flex;
    align-items: center;

    min-height: 38px;
    padding: 8px 12px;

    background: #87489f;
    color: #ffffff;

    font-size: 14px;
    line-height: 1.35;
    font-weight: 400;
}


/* ---------------------------------------------------------
   LARGE DESKTOP
   --------------------------------------------------------- */

@media (min-width: 1200px) {

    .experiential-learning-section {
        padding-bottom: 80px;
    }

    .experiential-learning-heading {
        margin-bottom: 38px;
    }

    .experiential-learning-heading h1 {
        font-size: 30px;
    }

    .experiential-learning-grid {
        column-gap: 18px;
        row-gap: 32px;
    }

    .experiential-card-caption {
        min-height: 40px;
        padding: 9px 13px;
        font-size: 20px;
    }

}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .experiential-learning-section {
        padding-bottom: 60px;
    }

    .experiential-learning-heading {
        margin-bottom: 30px;
    }

    .experiential-learning-heading h1 {
        font-size: 27px;
    }

    .experiential-learning-grid {
        column-gap: 14px;
        row-gap: 25px;
    }

    .experiential-card-caption {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 13px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .experiential-learning-section {
        padding-bottom: 45px;
    }

    .experiential-learning-heading {
        margin-bottom: 25px;
    }

    .experiential-learning-heading h1 {
        font-size: 24px;
    }

    .experiential-learning-heading .section-divider {
        width: 38px;
        height: 4px;
        margin-top: 15px;
    }

    .experiential-learning-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .experiential-card img {
        aspect-ratio: 1.55 / 1;
    }

    .experiential-card-caption {
        min-height: 36px;
        padding: 8px 10px;
        font-size: 13px;
        line-height: 1.4;
    }

}


/* =========================================================
   CAREER GUIDANCE - PODAR ORT INTERNATIONAL SCHOOL
   Scoped styles for the Career Guidance page content.

   Uses existing global styles for:
   - .container
   - .page-banner
   - .section-navigation
   - .breadcrumb-section
   - .section-divider
   - --primary
   - --secondary
   - --text
========================================================= */


/* =========================================================
   Career Guidance Content
========================================================= */

.career-guidance-content {
    padding: 45px 0 70px;
    background: #ffffff;
}


/* =========================================================
   Page Heading
========================================================= */

.career-guidance-heading {
    margin-bottom: 15px;
}

.career-guidance-heading h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: #2e353e;
    line-height: 1.3;
    text-transform: uppercase;
}


/* =========================================================
   Heading Divider
========================================================= */

.career-guidance-heading .section-divider {
    margin: 20px 0 0;
    width: 80px;
    height: 6px;
}


/* =========================================================
   Content Block
========================================================= */

.career-guidance-block {
    margin-bottom: 35px;
}

.career-guidance-block:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Sub Heading
========================================================= */

.career-guidance-subheading {
    margin: 0 0 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2e353e;
    line-height: 1.35;
}


/* =========================================================
   Section Divider (Horizontal Rule)
========================================================= */

.career-guidance-hr {
    width: 100%;
    height: 3px;
    background: var(--primary);
    margin: 35px 0;
}


/* =========================================================
   Star List (Key Points)
========================================================= */

.career-guidance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-guidance-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
}

.career-guidance-list li:last-child {
    margin-bottom: 0;
}

.career-guidance-list li::before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 0.9rem;
}

.career-guidance-list li a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.career-guidance-list li a:hover {
    color: var(--secondary);
}


/* =========================================================
   Logos (Univariety / College Board)
========================================================= */

.career-guidance-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 25px;
}

.career-guidance-logos img {
    max-width: 300px;
    height: auto;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991px) {

    .career-guidance-content {
        padding: 40px 0 60px;
    }

    .career-guidance-heading h1 {
        font-size: 1.6rem;
    }

    .career-guidance-subheading {
        font-size: 1.3rem;
    }

    .career-guidance-hr {
        margin: 30px 0;
    }

    .career-guidance-logos {
        gap: 30px;
    }

    .career-guidance-logos img {
        max-width: 170px;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .career-guidance-content {
        padding: 35px 0 50px;
    }

    .career-guidance-heading {
        margin-bottom: 10px;
    }

    .career-guidance-heading h1 {
        font-size: 1.4rem;
    }

    .career-guidance-heading .section-divider {
        margin-top: 15px;
        width: 60px;
        height: 5px;
    }

    .career-guidance-subheading {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .career-guidance-block {
        margin-bottom: 28px;
    }

    .career-guidance-hr {
        margin: 25px 0;
    }

    .career-guidance-list li {
        padding-left: 26px;
        margin-bottom: 15px;
        font-size: 0.9375rem;
    }

    .career-guidance-logos {
        gap: 20px;
        margin-bottom: 20px;
    }

    .career-guidance-logos img {
        max-width: 130px;
    }

}


/* =========================================================
   ADMISSIONS - PODAR ORT INTERNATIONAL SCHOOL
   Scoped styles for the Admissions page content.

   Note: This page does NOT use the .section-navigation
   component (Admissions is a single top-level menu item,
   not part of the Holistic Experience sub-navigation).

   Uses existing global styles for:
   - .container
   - .page-banner
   - .breadcrumb-section
   - .section-divider
   - --primary
   - --secondary
   - --text
========================================================= */


/* =========================================================
   Admissions Content
========================================================= */

.admissions-content {
    padding: 45px 0 70px;
    background: #ffffff;
}


/* =========================================================
   Page Heading
========================================================= */

.admissions-heading {
    margin-bottom: 35px;
}

.admissions-heading h1 {
    margin: 0;
    font-size: 3.2rem;
    font-weight: 700;
    color: #804b9a;
    line-height: 1.25;
    letter-spacing: -0.05em;
}

.admissions-heading .section-divider {
    margin: 20px 0 0;
    width: 80px;
    height: 6px;
}


/* =========================================================
   Online Application Form Bar
========================================================= */

.admissions-form-bar {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 18px 30px;
    background: #804b9a;
    box-shadow: -8px 8px 0 #ffc927;
}

.admissions-form-bar h2 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.09rem;
}


/* =========================================================
   Application Form Button (Pill CTA)
========================================================= */

.admissions-form-btn {
    display: inline-block;
    margin: 30px 0 45px;
    padding: 0.5rem 0.875rem;
    background: #804b9a;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease;
}

.admissions-form-btn:hover {
    background: #804b9a;
    color: #ffffff;
}


/* =========================================================
   Content Block
========================================================= */

.admissions-block {
    margin-bottom: 40px;
}


/* =========================================================
   Sub Heading
========================================================= */

.admissions-subheading {
    margin: 0 0 20px;
    font-size: 1.65rem;
    font-weight: 700;
    color: #2e353e;
    line-height: 1.35;
    letter-spacing: -0.05rem;
}


/* =========================================================
   Intro Paragraph
========================================================= */

.admissions-intro {
    margin: 0 0 30px;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}


/* =========================================================
   Star List
========================================================= */

.admissions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admissions-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 22px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.65;
}

.admissions-list li:last-child {
    margin-bottom: 0;
}

.admissions-list li::before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 0.9rem;
}


/* =========================================================
   Admission Enquiry Contact Section
========================================================= */

.admissions-enquiry-title {
    margin: 0 0 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #818898;
}

.admissions-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.admissions-contact-col p {
    margin: 0 0 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

.admissions-contact-col p:last-child {
    margin-bottom: 0;
}

.admissions-contact-col strong {
    color: #818898;
    font-weight: 700;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991px) {

    .admissions-content {
        padding: 40px 0 60px;
    }

    .admissions-heading {
        margin-bottom: 28px;
    }

    .admissions-heading h1 {
        font-size: 2.1rem;
    }

    .admissions-form-bar {
        padding: 16px 24px;
        box-shadow: 6px 6px 0 var(--secondary);
    }

    .admissions-form-bar h2 {
        font-size: 1.3rem;
    }

    .admissions-form-btn {
        margin: 26px 0 40px;
        padding: 13px 28px;
        font-size: 1rem;
    }

    .admissions-subheading {
        font-size: 1.35rem;
    }

    .admissions-contact-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }

    .admissions-contact-col:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .admissions-content {
        padding: 35px 0 50px;
    }

    .admissions-heading {
        margin-bottom: 22px;
    }

    .admissions-heading h1 {
        font-size: 1.6rem;
    }

    .admissions-heading .section-divider {
        margin-top: 15px;
        width: 60px;
        height: 5px;
    }

    .admissions-form-bar {
        padding: 14px 18px;
        box-shadow: 5px 5px 0 var(--secondary);
    }

    .admissions-form-bar h2 {
        font-size: 1.05rem;
    }

    .admissions-form-btn {
        display: block;
        text-align: center;
        margin: 22px 0 35px;
        padding: 13px 20px;
        font-size: 0.9375rem;
    }

    .admissions-block {
        margin-bottom: 30px;
    }

    .admissions-subheading {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .admissions-intro {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .admissions-list li {
        padding-left: 26px;
        margin-bottom: 18px;
        font-size: 0.9375rem;
    }

    .admissions-enquiry-title {
        font-size: 1rem;
    }

    .admissions-contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .admissions-contact-col:last-child {
        grid-column: auto;
    }

}

/* =========================================================
   ACHIEVEMENTS - PODAR ORT INTERNATIONAL SCHOOL
   Scoped styles for the Student Achievements page.

   Note: This page does NOT use the .section-navigation
   component (Achievements is a single top-level menu item).

   Tab system mirrors the existing .arts-tabs pattern
   (see .arts-tab-buttons / .arts-tab-btn / .arts-tab-panel
   in style.css) so behaviour stays consistent site-wide.

   Uses existing global styles for:
   - .container
   - .page-banner
   - .breadcrumb-section
   - .section-divider
   - --primary
   - --secondary
   - --text
========================================================= */


/* =========================================================
   Achievements Section
========================================================= */

.achv-section {
    padding: 45px 0 70px;
    background: #ffffff;
}


/* =========================================================
   Page Heading
========================================================= */

.achv-heading {
    margin-bottom: 30px;
}

.achv-heading h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: #2e353e;
    line-height: 1.3;
}

.achv-heading .section-divider {
    margin: 20px 0 0;
    width: 80px;
    height: 6px;
}


/* =========================================================
   Tabs Wrapper
========================================================= */

.achv-tabs {
    width: 100%;
}


/* =========================================================
   Tab Buttons
========================================================= */

.achv-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e2e2;
}

.achv-tab-btn {
    flex: 1;
    min-width: 140px;
    padding: 18px 20px;
    background: #f5f5f5;
    border: none;
    border-right: 1px solid #e2e2e2;
    color: #8a8a8a;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
}

.achv-tab-btn:last-child {
    border-right: none;
}

.achv-tab-btn:hover {
    background: #eeeeee;
    color: var(--primary);
}

.achv-tab-btn.is-active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: inset 0 -3px 0 var(--primary);
}


/* =========================================================
   Tab Panels
========================================================= */

.achv-tab-panel {
    display: none;
    padding: 35px 0 0;
}

.achv-tab-panel.is-active {
    display: block;
}


/* =========================================================
   Achievements Gallery - Two Column Grid
========================================================= */

.achv-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    width: 100%;
}

.achv-gallery-item {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   Gallery Swiper
========================================================= */

.achv-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
}

.achv-swiper .swiper-wrapper {
    height: 100%;
}

.achv-swiper .swiper-slide {
    height: 100%;
}

.achv-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   Gallery Swiper - Pagination
========================================================= */

.achv-swiper .swiper-pagination {
    bottom: 8px;
    line-height: 1;
}

.achv-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.6;
}

.achv-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}


/* =========================================================
   Gallery Swiper - Navigation Arrows
========================================================= */

.achv-swiper .swiper-button-prev,
.achv-swiper .swiper-button-next {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s ease;
}

.achv-swiper:hover .swiper-button-prev,
.achv-swiper:hover .swiper-button-next {
    opacity: 1;
}

.achv-swiper .swiper-button-prev {
    left: 10px;
}

.achv-swiper .swiper-button-next {
    right: 10px;
}

.achv-swiper .swiper-button-prev::after,
.achv-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}


/* =========================================================
   Description Box (Bulleted Details)
========================================================= */

.achv-description {
    padding: 20px 22px;
    background: #dceedd;
}

.achv-description ul {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: disc;
}

.achv-description li {
    margin-bottom: 10px;
    color: #2e353e;
    font-size: 0.9rem;
    line-height: 1.55;
}

.achv-description ul:last-child li:last-child {
    margin-bottom: 0;
}

.achv-description-subtitle {
    margin: 4px 0 10px;
    color: #2e353e;
    font-size: 0.95rem;
    font-weight: 700;
}


/* =========================================================
   Caption Bar (Name)
========================================================= */

.achv-caption {
    padding: 16px 22px;
    background: #82489d;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991px) {

    .achv-section {
        padding: 40px 0 60px;
    }

    .achv-tab-btn {
        min-width: 120px;
        padding: 15px 16px;
        font-size: 0.9375rem;
    }

    .achv-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }

    .achv-caption {
        font-size: 1.05rem;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .achv-section {
        padding: 35px 0 50px;
    }

    .achv-heading h1 {
        font-size: 1.4rem;
    }

    .achv-heading .section-divider {
        margin-top: 15px;
        width: 60px;
        height: 5px;
    }

    .achv-tab-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .achv-tab-btn {
        flex: 0 0 auto;
        min-width: auto;
        white-space: nowrap;
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .achv-tab-panel {
        padding: 25px 0 0;
    }

    .achv-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .achv-description {
        padding: 16px 18px;
    }

    .achv-description li {
        font-size: 0.875rem;
    }

    .achv-caption {
        padding: 14px 18px;
        font-size: 1rem;
    }

}


/* =========================================================
   ACHIEVEMENTS - PODAR ORT INTERNATIONAL SCHOOL
   Scoped styles for the Student Achievements page.

   Note: This page does NOT use the .section-navigation
   component (Achievements is a single top-level menu item).

   Tab system mirrors the existing .arts-tabs pattern
   (see .arts-tab-buttons / .arts-tab-btn / .arts-tab-panel
   in style.css) so behaviour stays consistent site-wide.

   Uses existing global styles for:
   - .container
   - .page-banner
   - .breadcrumb-section
   - .section-divider
   - --primary
   - --secondary
   - --text
========================================================= */


/* =========================================================
   Achievements Section
========================================================= */

.achv-section {
    padding: 45px 0 70px;
    background: #ffffff;
}


/* =========================================================
   Page Heading
========================================================= */

.achv-heading {
    margin-bottom: 30px;
}

.achv-heading h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: #2e353e;
    line-height: 1.3;
}

.achv-heading .section-divider {
    margin: 20px 0 0;
    width: 80px;
    height: 6px;
}


/* =========================================================
   Tabs Wrapper
========================================================= */

.achv-tabs {
    width: 100%;
}


/* =========================================================
   Tab Buttons
========================================================= */

.achv-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e2e2;
}

.achv-tab-btn {
    flex: 1;
    min-width: 140px;
    padding: 18px 20px;
    background: #f5f5f5;
    border: none;
    border-right: 1px solid #e2e2e2;
    color: #8a8a8a;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
}

.achv-tab-btn:last-child {
    border-right: none;
}

.achv-tab-btn:hover {
    background: #eeeeee;
    color: var(--primary);
}

.achv-tab-btn.is-active {
    background: #ffffff;
    color: var(--primary);
    box-shadow: inset 0 -3px 0 var(--primary);
}


/* =========================================================
   Tab Panels
========================================================= */

.achv-tab-panel {
    display: none;
    padding: 35px 0 0;
}

.achv-tab-panel.is-active {
    display: block;
}


/* =========================================================
   Achievements Gallery - Two Column Grid
========================================================= */

.achv-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    width: 100%;
}

.achv-gallery-item {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   Gallery Swiper
========================================================= */

.achv-swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eeeeee;
}

.achv-swiper .swiper-wrapper {
    height: 100%;
}

.achv-swiper .swiper-slide {
    height: 100%;
}

.achv-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   Gallery Swiper - Pagination
========================================================= */

.achv-swiper .swiper-pagination {
    bottom: 8px;
    line-height: 1;
}

.achv-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.6;
}

.achv-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}


/* =========================================================
   Gallery Swiper - Navigation Arrows
========================================================= */

.achv-swiper .swiper-button-prev,
.achv-swiper .swiper-button-next {
    width: 34px;
    height: 34px;
    margin-top: -17px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s ease;
}

.achv-swiper:hover .swiper-button-prev,
.achv-swiper:hover .swiper-button-next {
    opacity: 1;
}

.achv-swiper .swiper-button-prev {
    left: 10px;
}

.achv-swiper .swiper-button-next {
    right: 10px;
}

.achv-swiper .swiper-button-prev::after,
.achv-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}


/* =========================================================
   Description Box (Bulleted Details)
========================================================= */

.achv-description {
    padding: 20px 22px;
    background: #dceedd;
}

.achv-description ul {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: disc;
}

.achv-description li {
    margin-bottom: 10px;
    color: #2e353e;
    font-size: 0.9rem;
    line-height: 1.55;
}

.achv-description ul:last-child li:last-child {
    margin-bottom: 0;
}

.achv-description-subtitle {
    margin: 4px 0 10px;
    color: #2e353e;
    font-size: 0.95rem;
    font-weight: 700;
}


/* =========================================================
   Caption Bar (Name)
========================================================= */

.achv-caption {
    padding: 16px 22px;
    background: #82489d;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   Profile Grid (full-width image slider + caption)
   Used for entries like Tripura Chamy / Tejas Chakrabarti.
   The images themselves carry any write-up text, so no
   separate text column — same visual pattern as
   .achv-gallery-item, just grouped 2-per-row.
========================================================= */

.achv-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    width: 100%;
    margin-bottom: 45px;
}

.achv-profile-item {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.achv-profile-item .achv-swiper {
    aspect-ratio: 4 / 3;
}


/* =========================================================
   Profile Caption Bar (name only)
========================================================= */

.achv-profile-caption {
    padding: 16px 22px;
    background: #82489d;
}

.achv-profile-name {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   Results Table
========================================================= */

.achv-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.achv-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.achv-table th,
.achv-table td {
    padding: 10px 14px;
    text-align: left;
    font-size: 0.875rem;
    border: 1px solid #e2e2e2;
}

.achv-table-head-main th {
    background: #804b9a;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    border-color: #9066a8;
}

.achv-table-head-sub th {
    background: #ffc927;
    color: #2e353e;
    font-weight: 700;
    text-align: center;
    border-color: #f0bd1f;
}

.achv-table tbody td {
    color: var(--text);
    vertical-align: middle;
}

.achv-table tbody tr:nth-child(even) {
    background: #ffc927;
}


/* =========================================================
   Photo Gallery - Three Column Grid
========================================================= */

.achv-photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 30px;
    width: 100%;
}

.achv-photo-item {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991px) {

    .achv-section {
        padding: 40px 0 60px;
    }

    .achv-tab-btn {
        min-width: 120px;
        padding: 15px 16px;
        font-size: 0.9375rem;
    }

    .achv-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }

    .achv-caption {
        font-size: 1.05rem;
    }

    .achv-profile-grid {
        gap: 25px 30px;
    }

    .achv-photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .achv-section {
        padding: 35px 0 50px;
    }

    .achv-heading h1 {
        font-size: 1.4rem;
    }

    .achv-heading .section-divider {
        margin-top: 15px;
        width: 60px;
        height: 5px;
    }

    .achv-tab-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .achv-tab-btn {
        flex: 0 0 auto;
        min-width: auto;
        white-space: nowrap;
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .achv-tab-panel {
        padding: 25px 0 0;
    }

    .achv-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .achv-description {
        padding: 16px 18px;
    }

    .achv-description li {
        font-size: 0.875rem;
    }

    .achv-caption {
        padding: 14px 18px;
        font-size: 1rem;
    }


    /* =====================================================
       Profile Grid
    ====================================================== */

    .achv-profile-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 35px;
    }

    .achv-profile-caption {
        padding: 14px 18px;
    }

    .achv-profile-name {
        font-size: 1rem;
    }


    /* =====================================================
       Results Table
    ====================================================== */

    .achv-table-wrap {
        margin-bottom: 35px;
    }

    .achv-table th,
    .achv-table td {
        padding: 8px 10px;
        font-size: 0.8125rem;
    }


    /* =====================================================
       Photo Gallery
    ====================================================== */

    .achv-photo-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}


/* =========================================================
   PODAR ORT INTERNATIONAL SCHOOL - WORLI
   BLOG PAGE STYLES
   ---------------------------------------------------------
   File: blog.css
   URL:  https://podarworli.org/blog/

   This stylesheet is scoped to the Blog page and is intended
   to work alongside the existing global style(6).css file.

   Existing global variables used:
   --primary
   --secondary
   --white
   --text
   --transition
   --container

   IMPORTANT:
   Featured Blogs intentionally contain NO thumbnail images,
   as per the approved blog-page design.
========================================================= */


/* =========================================================
   1. BLOG PAGE WRAPPER
========================================================= */

.blog-section {
    padding: 65px 0 80px;
    background: #ffffff;
}


/* =========================================================
   2. BLOG PAGE BANNER
   ---------------------------------------------------------
   The existing .page-banner styles control the basic banner.
   These rules only provide Blog-specific refinements.
========================================================= */

.blog-page-banner {
    position: relative;
}

.blog-page-banner .page-banner-caption {
    bottom: 50%;
}

.blog-page-banner .page-banner-title {
    background: none;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .2px;    
}


/* =========================================================
   3. BLOG LIST
========================================================= */

.blog-list {
    width: 100%;
}


/* =========================================================
   4. INDIVIDUAL BLOG ITEM
========================================================= */

.blog-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 28px;
    width: 100%;
    padding: 0 0 38px;
    margin: 0 0 38px;
    border-bottom: 1px solid #543c72;
}

.blog-item:last-child {
    margin-bottom: 0;
}


/* =========================================================
   5. BLOG DATE BLOCK
   ---------------------------------------------------------
   The date is deliberately kept separate from the article
   content to create the clean editorial layout.
========================================================= */

.blog-date {
    width: 72px;
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* background: #804a9a; */
    color: #ffffff;
    text-align: center;
}

.blog-date i {
    color: #6a80a9;
    margin-bottom: 20px;
    font-size: 1.5rem;
    opacity: .9;
}

.blog-date-day {
    color: #000000;
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 0.5;
}

.blog-date-month {
    color: #000000;
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    letter-spacing: .5px;
}


/* =========================================================
   6. BLOG CONTENT
========================================================= */

.blog-item-content {
    min-width: 0;
}

.blog-item-title {
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #2e353e;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.8px;
}

.blog-item-title a {
    color: #2e353e;
}

.blog-item-title a:hover {
    color: #2e353e;
}


/* =========================================================
   7. BLOG EXCERPT
========================================================= */

.blog-item-excerpt {
    margin: 0 0 18px;
    color: #777777;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   8. BLOG BOTTOM ROW
   ---------------------------------------------------------
   Contains social sharing icons.
========================================================= */

.blog-item-bottom {
    display: flex;
    /* align-items: center; */
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 18px;
}

.blog-item-bottom a {
    width: 15px;
    height: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #dddddd;
    border-radius: 50%; */
    color: #6a80a9;
    background: #ffffff;
    font-size: .75rem;
}

.blog-item-bottom a:hover {
    color: #6a80a9;
    /* background: #804a9a;
    border-color: #804a9a; */
}


/* =========================================================
   9. BLOG DIVIDER
========================================================= */

.blog-item-divider {
    width: 100%;
    height: 1px;
    margin: 0 0 15px;
    background: #eeeeee;
}


/* =========================================================
   10. READ MORE LINK
========================================================= */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
}

a.blog-read-more:hover {
    color: #6a80a9;
}

.blog-read-more i {
    font-size: .7rem;
    transition: transform .3s ease;
}

a.blog-read-more:hover i {
    transform: translateX(4px);
}


/* =========================================================
   11. BLOG SIDEBAR
========================================================= */

.blog-sidebar {
    padding-left: 4%;
}


/* =========================================================
   12. SIDEBAR WIDGET
========================================================= */

.blog-sidebar-widget {
    margin-bottom: 45px;
}

.blog-sidebar-widget:last-child {
    margin-bottom: 0;
}


/* =========================================================
   13. SIDEBAR TITLES
========================================================= */

.blog-sidebar-title {
    margin: 0;
    color: #2e353e;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-sidebar-divider {
    width: 60px;
    height: 5px;
    margin: 15px 0 22px;
    background: #ffc927;
}


/* =========================================================
   14. BLOG SEARCH
========================================================= */

.blog-search-form {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.blog-search-form input {
    width: 100%;
    height: 48px;
    padding: 10px 55px 10px 15px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    color: #555555;
    background: #ffffff;
    font-family: inherit;
    font-size: .95rem;
}

.blog-search-form input::placeholder {
    color: #999999;
    font-size: 0.85rem;
}

.blog-search-form input:focus {
    border-color: #804a9a;
}

.blog-search-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: all .3s ease;
}

.blog-search-form button:hover {
    background: #555555;
}


/* =========================================================
   15. CATEGORY LIST
========================================================= */

.blog-category-list {
    width: 100%;
}

.blog-category-list li {
    border-bottom: 1px solid #eeeeee;
}

.blog-category-list li:first-child {
    border-top: 1px solid #eeeeee;
}

.blog-category-list a {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 4px;
    color: #666666;
    font-size: .80rem;
    font-weight: 400;
}

.blog-category-list a i {
    color: #232323;
    font-size: .7rem;
    transition: transform .3s ease, color .3s ease;
}

.blog-category-list a:hover,
.blog-category-list a.active {
    color: #804a9a;
}

.blog-category-list a:hover i,
.blog-category-list a.active i {
    color: #804a9a;
    transform: translateX(3px);
}


/* =========================================================
   16. FEATURED BLOGS
   ---------------------------------------------------------
   IMPORTANT:
   There is intentionally NO thumbnail/image styling here.
   The approved design uses text-only featured blog entries.
========================================================= */

.featured-blog-list {
    width: 100%;
}

.featured-blog-item {
    padding: 0 0 18px;
    margin: 0 0 18px;
    border-bottom: 1px solid #eeeeee;
}

.featured-blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.featured-blog-item h4 {
    margin: 0 0 8px;
    color: #2e353e;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.5;
}

.featured-blog-item h4 a {
    color: #2e353e;
}

.featured-blog-item h4 a:hover {
    color: #804a9a;
}

.featured-blog-item span {
    display: block;
    color: #999999;
    font-size: .78rem;
    font-weight: 400;
    line-height: 1.4;
}


/* =========================================================
   17. NO RESULTS MESSAGE
========================================================= */

.blog-no-results {
    padding: 45px 35px;
    text-align: left;
}

.blog-no-results h2 {
    margin: 0 0 12px;
    color: #2e353e;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-no-results p {
    margin: 0 0 20px;
    padding: 10px;
    border-radius: 5px;
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    font-size: 1rem;
}

.blog-no-results a {
    display: inline-block;
    padding: 9px 20px;
    border: 1px solid #804a9a;
    border-radius: 20px;
    background: #804a9a;
    color: #ffffff;
    font-size: .9rem;
}

.blog-no-results a:hover {
    background: transparent;
    color: #804a9a;
}


/* =========================================================
   18. PAGINATION
========================================================= */

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 45px;
}

.blog-pagination a {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #dddddd;
    color: #777777;
    background: #ffffff;
    font-size: .9rem;
    font-weight: 500;
}

.blog-pagination a:hover,
.blog-pagination a.active {
    border-color: #804a9a;
    background: #804a9a;
    color: #ffffff;
}


/* =========================================================
   19. LARGE TABLET / SMALL DESKTOP
   ---------------------------------------------------------
   992px - 1199px
========================================================= */

@media (min-width:992px) and (max-width:1199px) {

    .blog-section {
        padding: 60px 0 70px;
    }

    .blog-item {
        grid-template-columns: 72px minmax(0, 1fr);
        column-gap: 22px;
    }

    .blog-date {
        width: 68px;
        min-height: 78px;
    }

    .blog-item-title {
        font-size: 1.5rem;
    }

    .blog-sidebar {
        padding-left: 40px;
    }

}


/* =========================================================
   20. TABLET
   ---------------------------------------------------------
   768px - 991px

   The sidebar remains below the blog listing because the
   Bootstrap grid changes to a single column below lg.
========================================================= */

@media (min-width:768px) and (max-width:991px) {

    .blog-section {
        padding: 55px 0 65px;
    }

    .blog-page-banner .page-banner-title {
        font-size: 2.2rem;
    }

    .blog-sidebar {
        padding-left: 20px;
        margin-top: 20px;
    }

    .blog-sidebar-widget {
        margin-bottom: 40px;
    }

    .blog-item-title {
        font-size: 1.5rem;
    }

    .blog-item-excerpt {
        font-size: .98rem;
    }

}


/* =========================================================
   21. MOBILE
   ---------------------------------------------------------
   Below 768px
========================================================= */

@media (max-width:767px) {

    /* ---------------------------------------------
       Blog Section
    --------------------------------------------- */

    .blog-section {
        padding: 42px 0 55px;
    }


    /* ---------------------------------------------
       Banner
    --------------------------------------------- */

    .blog-page-banner .page-banner-caption {
        bottom: 30px;
    }

    .blog-page-banner .page-banner-title {
        font-size: 1.8rem;
    }


    /* ---------------------------------------------
       Blog Item
    --------------------------------------------- */

    .blog-item {
        grid-template-columns: 58px minmax(0, 1fr);
        column-gap: 15px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }


    /* ---------------------------------------------
       Date
    --------------------------------------------- */

    .blog-date {
        width: 58px;
        min-height: 70px;
    }

    .blog-date i {
        font-size: .7rem;
    }

    .blog-date-day {
        font-size: 1.4rem;
    }

    .blog-date-month {
        font-size: .68rem;
    }


    /* ---------------------------------------------
       Blog Title
    --------------------------------------------- */

    .blog-item-title {
        margin-bottom: 10px;
        font-size: 1.25rem;
        line-height: 1.4;
    }


    /* ---------------------------------------------
       Blog Excerpt
    --------------------------------------------- */

    .blog-item-excerpt {
        margin-bottom: 15px;
        font-size: .92rem;
        line-height: 1.65;
    }


    /* ---------------------------------------------
       Social Icons
    --------------------------------------------- */

    .blog-item-bottom {
        margin-bottom: 15px;
    }


    /* ---------------------------------------------
       Sidebar
    --------------------------------------------- */

    .blog-sidebar {
        padding-left: 0;
        margin-top: 20px;
    }

    .blog-sidebar-widget {
        margin-bottom: 35px;
    }

    .blog-sidebar-title {
        font-size: 1.2rem;
    }


    /* ---------------------------------------------
       Featured Blogs
    --------------------------------------------- */

    .featured-blog-item h4 {
        font-size: .95rem;
    }


    /* ---------------------------------------------
       Pagination
    --------------------------------------------- */

    .blog-pagination {
        margin-top: 35px;
    }

}


/* =========================================================
   22. VERY SMALL MOBILE
   ---------------------------------------------------------
   Below 480px
========================================================= */

@media (max-width:479px) {

    .blog-section {
        padding: 35px 0 45px;
    }

    .blog-item {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .blog-date {
        width: 62px;
        min-height: 68px;
    }

    .blog-item-title {
        font-size: 1.18rem;
    }

    .blog-item-excerpt {
        font-size: .9rem;
    }

    .blog-page-banner .page-banner-title {
        font-size: 1.55rem;
    }

}

/* =========================================================
   BLOG SOCIAL SHARE POPOVER
========================================================= */

.blog-share-popover {
    --bs-popover-bg: #000000;
    --bs-popover-border-color: #000000;
    --bs-popover-body-color: #ffffff;
    --bs-popover-border-radius: 8px;

    background: #000000 !important;
    border: none !important;
    border-radius: 4px !important;

    padding: 0 !important;
    min-width: 0 !important;
    max-width: none !important;

    overflow: visible !important;
}


/* ---------------------------------------------------------
   POPOVER BODY
--------------------------------------------------------- */

.blog-share-popover .popover-body {
    padding: 5px 10px !important;

    background: #000000 !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 8px !important;

    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
}


/* ---------------------------------------------------------
   POPOVER ARROW
--------------------------------------------------------- */

.blog-share-popover .popover-arrow {
    display: block !important;
}


/* ---------------------------------------------------------
   ARROW — POPOVER BELOW ICON
   The arrow points upward toward the social icon.
--------------------------------------------------------- */

.blog-share-popover.bs-popover-bottom > .popover-arrow::before {
    border-bottom-color: #000000 !important;
}

.blog-share-popover.bs-popover-bottom > .popover-arrow::after {
    border-bottom-color: #000000 !important;
}


/* ---------------------------------------------------------
   ARROW — POPOVER ABOVE ICON
--------------------------------------------------------- */

.blog-share-popover.bs-popover-top > .popover-arrow::before {
    border-top-color: #000000 !important;
}

.blog-share-popover.bs-popover-top > .popover-arrow::after {
    border-top-color: #000000 !important;
}


.blog-layout-row {
    --bs-gutter-y: 0;
}


/* =========================================================
   INNER BLOG PAGE
   MAIN CONTENT STRUCTURE
   ---------------------------------------------------------
   Desktop layout:
   Date | Blog Content | Sidebar

   The date occupies a narrow left column.
   The title, article and share section occupy the
   main content column.
   ========================================================= */

.inner-blog-content {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    column-gap: 22px;
}


/* =========================================================
   INNER BLOG - HEADER
   ---------------------------------------------------------
   Allows the date and title to become separate grid items.
   ========================================================= */

.inner-blog-header {
    display: contents;
}


/* =========================================================
   INNER BLOG - DATE COLUMN
   ========================================================= */

.inner-blog-date {
    grid-column: 1;
    grid-row: 1 / span 3;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-right: 18px;
    margin: 0;

    border-right: 1px solid #eeeeee;
}


/* ---------------------------------------------------------
   Calendar Icon
   --------------------------------------------------------- */

.inner-blog-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    color: #6a80a9;
    font-size: 1.35rem;
    line-height: 1;
}


/* ---------------------------------------------------------
   Day
   --------------------------------------------------------- */

.inner-blog-date-day {
    color: #000000;

    font-size: 1.15rem;
    font-weight: 600;

    line-height: 1.1;
}


/* ---------------------------------------------------------
   Month
   --------------------------------------------------------- */

.inner-blog-date-month {
    color: #000000;

    font-size: 0.95rem;
    font-weight: 500;

    line-height: 1.2;
    text-transform: capitalize;
}


/* =========================================================
   INNER BLOG - TITLE
   ========================================================= */

.inner-blog-title-wrapper {
    grid-column: 2;

    width: 100%;
    margin: 0 0 25px;
}


.inner-blog-title {
    margin: 0;
    padding: 0;

    color: #2e353e;

    font-size: 1.65rem;
    font-weight: 700;

    line-height: 1.25;
    letter-spacing: -0.8px;
}


/* =========================================================
   INNER BLOG - ARTICLE
   ========================================================= */

.inner-blog-article {
    grid-column: 2;
}


/* =========================================================
   INNER BLOG - SHARE
   ========================================================= */

.inner-blog-share {
    grid-column: 2;
}


/* =========================================================
   INNER BLOG - MOBILE
   ---------------------------------------------------------
   On smaller screens the date remains on the left and
   the article remains on the right, but the columns become
   narrower.
   ========================================================= */

@media (max-width: 767px) {

    .inner-blog-content {
        grid-template-columns: 55px minmax(0, 1fr);
        column-gap: 15px;
    }


    .inner-blog-date {
        padding-right: 12px;
    }


    .inner-blog-date-icon {
        font-size: 1.15rem;
        margin-bottom: 6px;
    }


    .inner-blog-date-day {
        font-size: 1rem;
    }


    .inner-blog-date-month {
        font-size: 0.85rem;
    }


    .inner-blog-title-wrapper {
        margin-bottom: 20px;
    }


    .inner-blog-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

}

/* =========================================================
   INNER BLOG - ARTICLE TYPOGRAPHY
   ========================================================= */


/* ---------------------------------------------------------
   Article Container
   --------------------------------------------------------- */

.inner-blog-article {
    width: 100%;
    color: #7f899c;
}


/* ---------------------------------------------------------
   Paragraphs
   --------------------------------------------------------- */

.inner-blog-article p {
    margin: 0 0 18px;
    padding: 0;

    color: #7f899c;

    font-size: 0.95rem;
    font-weight: 400;

    line-height: 1.55;
}


/* ---------------------------------------------------------
   Article Section Headings
   --------------------------------------------------------- */

.inner-blog-article h3 {
    margin: 0 0 12px;
    padding: 0;

    color: #7a8496;

    font-size: 1.1rem;
    font-weight: 700;

    line-height: 1.4;
}


/* ---------------------------------------------------------
   Lists
   --------------------------------------------------------- */

.inner-blog-article ol,
.inner-blog-article ul {
    margin: 0 0 20px;
    padding-left: 28px;

    color: #7f899c;

    font-size: 0.95rem;
    line-height: 1.5;
}


.inner-blog-article li {
    margin-bottom: 2px;
    padding-left: 2px;
}


/* ---------------------------------------------------------
   Last Paragraph
   --------------------------------------------------------- */

.inner-blog-article p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   INNER BLOG - ARTICLE
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .inner-blog-article p {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }


    .inner-blog-article h3 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }


    .inner-blog-article ol,
    .inner-blog-article ul {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-left: 22px;
    }

}

/* =========================================================
   INNER BLOG - SHARE THIS POST
   ========================================================= */

.inner-blog-share {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    width: 100%;

    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 12px;
    padding-bottom: 12px;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}


/* ---------------------------------------------------------
   Share Title
   --------------------------------------------------------- */

.inner-blog-share-title {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 7px;

    color: #2e353e;

    font-size: 0.75rem;
    font-weight: 600;

    line-height: 1;
}


/* Share icon */

.inner-blog-share-title i {
    font-size: 0.75rem;
}


/* ---------------------------------------------------------
   Social Icons
   --------------------------------------------------------- */

.inner-blog-share-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 14px;
}


.inner-blog-share-icons a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    color: #6a80a9;

    font-size: 0.75rem;

    text-decoration: none;

    transition: color 0.2s ease;
}


.inner-blog-share-icons a:hover {
    color: #7d479c;
}


/* =========================================================
   SOCIAL SHARE POPOVER
   ---------------------------------------------------------
   Uses the existing data-popover attribute from the PHP.
   ========================================================= */

.inner-blog-share-icons a::after {
    content: attr(data-popover);

    position: absolute;

    bottom: calc(100% + 9px);
    left: 50%;

    transform: translateX(-50%);

    padding: 6px 9px;

    background: #000000;
    color: #ffffff;

    border-radius: 6px;

    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}


/* Popover arrow */

.inner-blog-share-icons a::before {
    content: "";

    position: absolute;

    bottom: calc(100% + 4px);
    left: 50%;

    transform: translateX(-50%);

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000000;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}


/* Show popover */

.inner-blog-share-icons a:hover::after,
.inner-blog-share-icons a:hover::before {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   INNER BLOG - SHARE
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .inner-blog-share {
        margin-top: 25px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .inner-blog-share-title {
        font-size: 0.7rem;
    }

    .inner-blog-share-icons {
        gap: 13px;
    }

}

/* =========================================================
   INNER BLOG - MOBILE RESPONSIVENESS
   ========================================================= */

@media (max-width: 991px) {

    /* -----------------------------------------
       Main inner blog layout
       ----------------------------------------- */

    .inner-blog-content {
        grid-template-columns: 60px minmax(0, 1fr);
        column-gap: 18px;
    }


    /* -----------------------------------------
       Article typography
       ----------------------------------------- */

    .inner-blog-article {
        min-width: 0;
    }


    .inner-blog-title-wrapper {
        min-width: 0;
    }


    .inner-blog-title {
        overflow-wrap: anywhere;
    }


    /* -----------------------------------------
       Sidebar
       ----------------------------------------- */

    .inner-blog-section .blog-sidebar {
        width: 100%;
    }

}


@media (max-width: 767px) {

    /* =====================================================
       MAIN CONTENT
       ===================================================== */

    .inner-blog-section {
        overflow-x: hidden;
    }


    .inner-blog-section .container {
        max-width: 100%;
    }


    .inner-blog-content {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 50px minmax(0, 1fr);
        column-gap: 15px;
    }


    /* =====================================================
       DATE
       ===================================================== */

    .inner-blog-date {
        width: 100%;
        padding-right: 10px;
    }


    .inner-blog-date-icon {
        font-size: 1.15rem;
    }


    .inner-blog-date-day {
        font-size: 1rem;
    }


    .inner-blog-date-month {
        font-size: 0.82rem;
    }


    /* =====================================================
       TITLE
       ===================================================== */

    .inner-blog-title-wrapper {
        width: 100%;
        max-width: 100%;

        margin-bottom: 18px;
    }


    .inner-blog-title {
        font-size: 1.45rem;
        line-height: 1.3;

        overflow-wrap: anywhere;
        word-break: normal;
    }


    /* =====================================================
       ARTICLE
       ===================================================== */

    .inner-blog-article {
        width: 100%;
        max-width: 100%;

        overflow-wrap: break-word;
    }


    .inner-blog-article p {
        font-size: 0.9rem;
        line-height: 1.55;

        overflow-wrap: break-word;
    }


    .inner-blog-article h3 {
        font-size: 0.92rem;
        line-height: 1.4;

        overflow-wrap: break-word;
    }


    .inner-blog-article ol,
    .inner-blog-article ul {
        max-width: 100%;

        padding-left: 20px;

        font-size: 0.9rem;

        overflow-wrap: break-word;
    }


    .inner-blog-article li {
        overflow-wrap: break-word;
    }


    /* =====================================================
       SHARE
       ===================================================== */

    .inner-blog-share {
        width: 100%;
        max-width: 100%;

        margin-top: 22px;
    }


    .inner-blog-share-title {
        font-size: 0.7rem;
    }


    .inner-blog-share-icons {
        gap: 12px;
    }


    /* =====================================================
       SIDEBAR
       ===================================================== */

    .inner-blog-section .blog-sidebar {
        width: 100%;
        max-width: 100%;

        margin-top: 30px;
    }

}

/* =========================================================
   INNER BLOG - TOP SPACING
   ========================================================= */

.inner-blog-section {
    padding-top: 65px;
}

/* =========================================================
   Communication Page
========================================================= */

.communication-page {
    padding: 55px 0 70px;
}


/* =========================================================
   Communication Columns
========================================================= */

.communication-page .col-lg-4 {
    padding-left: 30px;
    padding-right: 30px;
}


/* =========================================================
   Communication Titles
========================================================= */

.communication-page .page-title {
    margin: 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   Yellow Divider
========================================================= */

.communication-page .section-divider {
    width: 31px;
    height: 7px;
    background-color: #ffcc2a;
    margin: 25px auto 28px;
}


/* =========================================================
   Login Buttons
========================================================= */

.communication-login-btn {
    display: inline-block;
    background-color: #8749a2;
    color: #ffffff !important;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    padding: 9px 24px 11px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.communication-login-btn:hover {
    background-color: #743c8c;
    color: #ffffff !important;
    text-decoration: none !important;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991.98px) {

    .communication-page {
        padding: 45px 0 55px;
    }

    .communication-page .col-lg-4 {
        margin-bottom: 45px;
    }

    .communication-page .col-lg-4:last-child {
        margin-bottom: 0;
    }

}


@media (max-width: 575.98px) {

    .communication-page {
        padding: 35px 0 45px;
    }

    .communication-page .page-title {
        font-size: 24px;
    }

    .communication-page .section-divider {
        margin: 18px auto 24px;
    }

    .communication-login-btn {
        font-size: 20px;
        padding: 9px 20px 10px;
    }

}

/* =========================================================
   Post and Newsletters
========================================================= */

.post-newsletters-page {
    padding: 50px 0 70px;
}


/* =========================================================
   Page Title
========================================================= */

.post-newsletters-page .page-title {
    margin: 0;
    padding: 0;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   Section Divider
========================================================= */

.post-newsletters-page .section-divider {
    width: 88px;
    height: 7px;
    background-color: #ffcc2a;
    margin: 25px auto 25px;
}


/* =========================================================
   Brochure
========================================================= */

.post-newsletter-item {
    width: 285px;
    margin-top: 25px;
    margin-left: 0;
}

.post-newsletter-item img {
    width: 285px;
    height: auto;
    display: block;
}

.post-newsletter-item h2 {
    margin: 25px 0 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.post-newsletter-item h2 a {
    color: inherit;
    text-decoration: none;
}

.post-newsletter-item h2 a:hover {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 767.98px) {

    .post-newsletters-page {
        padding: 40px 0 55px;
    }

    .post-newsletters-page .page-title {
        font-size: 24px;
    }

    .post-newsletter-item {
        width: 100%;
        max-width: 285px;
        margin-left: auto;
        margin-right: auto;
    }

    .post-newsletter-item img {
        width: 100%;
    }

}


/* =========================================================
   PORTIS TALK
========================================================= */

.portis-talk-section {
    padding: 20px 0 55px;
}


/* =========================================================
   PORTIS TALK SWIPER
========================================================= */

.portis-talk-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portis-talk-swiper .swiper-wrapper {
    align-items: stretch;
}

.portis-talk-swiper .swiper-slide {
    height: auto;
}


/* =========================================================
   SPEAKER CARD
========================================================= */

.portis-speaker-card {
    height: 100%;
    text-align: center;
    padding: 5px 25px 20px;
    border-right: 1px solid #d9d9d9;
}

.portis-talk-swiper .swiper-slide:last-child .portis-speaker-card {
    border-right: none;
}


/* =========================================================
   SPEAKER IMAGE
========================================================= */

.portis-speaker-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 18px;
}

.portis-speaker-image img {
    width: 180px;
    height: 180px;
    display: block;
    object-fit: cover;
    border: 5px solid #804b9a;
    border-radius: 50%;
}


/* =========================================================
   SPEAKER CONTENT
========================================================= */

.portis-speaker-content {
    min-height: 105px;
}

.portis-speaker-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
}

.portis-speaker-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #444444;
}


/* =========================================================
   SWIPER ARROWS
========================================================= */

.portis-talk-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 25px;
}

.portis-talk-navigation button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    background: transparent;
    color: #555555;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.portis-talk-navigation button:hover {
    color: #8749a2;
}

.portis-talk-navigation button.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}


/* =========================================================
   PORTIS TALK GALLERY
========================================================= */

.portis-talk-gallery-section {
    padding: 30px 0 70px;
}

.portis-talk-gallery-section .row {
    row-gap: 35px;
}

.portis-talk-gallery-card {
    height: 100%;
    overflow: hidden;
}

.portis-talk-gallery-card img {
    width: 100%;
    height: auto;
    display: block;
}

.portis-talk-gallery-caption {
    background: #8749a2;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .portis-speaker-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .portis-speaker-image,
    .portis-speaker-image img {
        width: 100px;
        height: 100px;
    }

    .portis-speaker-content h3 {
        font-size: 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .portis-talk-section {
        padding: 15px 0 45px;
    }

    .portis-speaker-card {
        border-right: none;
        padding-left: 30px;
        padding-right: 30px;
    }

    .portis-speaker-image,
    .portis-speaker-image img {
        width: 110px;
        height: 110px;
    }

    .portis-speaker-content {
        min-height: auto;
    }

    .portis-talk-gallery-section {
        padding-top: 15px;
        padding-bottom: 50px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .portis-speaker-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .portis-speaker-content h3 {
        font-size: 16px;
    }

    .portis-speaker-content p {
        font-size: 13px;
    }

    .portis-talk-gallery-caption {
        font-size: 13px;
        padding: 10px 12px;
    }

}


/* =========================================================
   SOCIAL MEDIA PAGE
========================================================= */


/* =========================================================
   Page Title
========================================================= */

.page-title {
    text-align: center;
    margin-bottom: 18px;
}


/* =========================================================
   Section Divider
========================================================= */

.page-title + .section-divider {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   Social Media Section
========================================================= */

.social-media-section {
    padding: 20px 0 80px;
}


/* =========================================================
   Social Media Links
========================================================= */

.social-media-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}


/* =========================================================
   Social Media Icon Circle
========================================================= */

.social-media-item {
    width: 125px;
    height: 125px;
    border-radius: 50%;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   Font Awesome Icons
========================================================= */

.social-media-item i {
    font-size: 62px;
    line-height: 1;
}


/* =========================================================
   Facebook
========================================================= */

.social-facebook i {
    color: #1877F2;
}


/* =========================================================
   Instagram
========================================================= */

.social-instagram i {
    color: #E4405F;
}


/* =========================================================
   X / Twitter
========================================================= */

.social-twitter i {
    color: #000000;
}


/* =========================================================
   YouTube
========================================================= */

.social-youtube i {
    color: #FF0000;
}


/* =========================================================
   LinkedIn
========================================================= */

.social-linkedin i {
    color: #0A66C2;
}


/* =========================================================
   Hover Effect
========================================================= */

.social-media-item:hover {
    transform: translateY(-6px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   Remove Underline on Hover
========================================================= */

.social-media-item:hover i {
    text-decoration: none;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991px) {

    .social-media-links {
        gap: 25px;
    }

    .social-media-item {
        width: 110px;
        height: 110px;
    }

    .social-media-item i {
        font-size: 54px;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 575px) {

    .social-media-section {
        padding: 10px 0 50px;
    }

    .social-media-links {
        gap: 20px;
    }

    .social-media-item {
        width: 90px;
        height: 90px;
    }

    .social-media-item i {
        font-size: 44px;
    }

}


/* =========================================================
   VOICES FROM THE COMMUNITY
   PODAR ORT INTERNATIONAL SCHOOL - WORLI
========================================================= */


/* =========================================================
   PAGE TITLE
========================================================= */

.page-title {
    text-align: center;
    margin: 35px 0 12px;
    font-weight: 700;
    color: #29323d;
}

.container > .section-divider {
    width: 74px;
    height: 6px;
    background: #ffca28;
    margin: 0 auto 45px;
}


/* =========================================================
   COMMUNITY VIDEO SECTION
========================================================= */

.voices-community-video-section {
    width: 100%;
    padding: 0 0 50px;
}

.voices-community-video-section .row {
    align-items: flex-start;
}


/* =========================================================
   COMMUNITY VIDEO CARD
========================================================= */

.community-video-card {
    width: 100%;
}

.community-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000000;
}

.community-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.voices-testimonial-section {
    position: relative;
    width: 100%;
    padding: 25px 0 90px;
}


/* =========================================================
   TESTIMONIAL HEADING
========================================================= */

.voices-testimonial-heading {
    text-align: center;

    margin: 20px 0 12px;

    color: #29323d;

    font-size: 30px;
    line-height: 1.25;

    font-weight: 700;
}

.voices-testimonial-section > .container > .section-divider {
    width: 74px;
    height: 6px;

    background: #ffca28;

    margin: 0 auto 50px;
}


/* =========================================================
   TESTIMONIAL SWIPER
========================================================= */

.voices-testimonial-swiper {
    position: relative;

    width: 100%;

    padding: 0 70px 65px;

    overflow: hidden;
}

.voices-testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.voices-testimonial-swiper .swiper-slide {
    height: auto;

    display: flex;
    justify-content: center;

    overflow: hidden;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    position: relative;

    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    text-align: center;

    padding: 0 25px 25px;

    overflow: hidden;
}


/* =========================================================
   PROFILE
========================================================= */

.testimonial-profile {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-bottom: 12px;
}

.testimonial-profile-image {
    width: 76px;
    height: 76px;

    border-radius: 50%;

    overflow: hidden;

    background: #eeeeee;

    border: 1px solid #e5e5e5;
}

.testimonial-profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   NAME AND RELATION
========================================================= */

.testimonial-name {
    margin: 0;

    color: #29323d;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 700;
}

.testimonial-relation {
    margin: 3px 0 0;

    color: #29323d;

    font-size: 15px;
    line-height: 1.45;

    font-weight: 600;
}


/* =========================================================
   TESTIMONIAL CONTENT
   CONSTANT HEIGHT
========================================================= */

.testimonial-content {
    position: relative;

    width: 100%;
    max-width: 1000px;

    height: 380px;

    margin: 35px auto 0;

    padding: 0 55px;

    overflow: hidden;

    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.testimonial-content p {
    width: 100%;

    margin: 0;

    color: #7c8491;

    font-size: 17px;

    line-height: 1.7;

    font-weight: 400;

    text-align: center;

    overflow: hidden;
}


/* =========================================================
   QUOTATION MARKS
========================================================= */

.testimonial-quote {
    position: absolute;

    color: #29323d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 65px;

    line-height: 1;

    font-weight: 700;

    pointer-events: none;

    z-index: 2;
}

.testimonial-quote-open {
    left: 5px;
    top: -8px;
}

.testimonial-quote-close {
    right: 5px;
    bottom: -2px;
}


/* =========================================================
   TESTIMONIAL NAVIGATION
========================================================= */

.voices-testimonial-navigation {
    position: absolute;

    left: 0;
    right: 0;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    pointer-events: none;
}

.voices-testimonial-prev,
.voices-testimonial-next {
    position: absolute;

    top: 50%;

    width: 42px;
    height: 42px;

    padding: 0;

    border: none;

    background: transparent;

    color: #9ca3aa;

    font-size: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    pointer-events: auto;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.voices-testimonial-prev {
    left: 5px;
}

.voices-testimonial-next {
    right: 5px;
}

.voices-testimonial-prev:hover,
.voices-testimonial-next:hover {
    color: #7e479e;

    transform: scale(1.15);
}


/* =========================================================
   TESTIMONIAL PAGINATION
========================================================= */

/* =========================================================
   TESTIMONIAL PAGINATION
========================================================= */

.voices-testimonial-pagination {
    position: absolute;

    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;

    z-index: 20;

    pointer-events: auto;
    margin-bottom: 10px;
}

.voices-testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    margin: 0 !important;

    background: #d7d7d7;

    opacity: 1;

    cursor: pointer;

    pointer-events: auto;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.voices-testimonial-pagination
.swiper-pagination-bullet-active {
    background: #7e479e;

    transform: scale(1.2);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .page-title {
        font-size: 30px;
    }

    .voices-testimonial-swiper {
        padding-left: 55px;
        padding-right: 55px;
    }

    .testimonial-content {
        height: 400px;

        padding-left: 40px;
        padding-right: 40px;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .testimonial-quote {
        font-size: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .page-title {
        font-size: 25px;

        line-height: 1.3;

        margin-top: 25px;
    }

    .container > .section-divider {
        width: 65px;
        height: 5px;

        margin-bottom: 30px;
    }


    /* ---------------------------------------------
       Video section
    --------------------------------------------- */

    .voices-community-video-section {
        padding-bottom: 25px;
    }


    /* ---------------------------------------------
       Testimonial section
    --------------------------------------------- */

    .voices-testimonial-section {
        padding-top: 20px;
        padding-bottom: 65px;
    }

    .voices-testimonial-heading {
        font-size: 25px;
    }

    .voices-testimonial-section
    > .container
    > .section-divider {
        margin-bottom: 35px;
    }


    /* ---------------------------------------------
       Swiper
    --------------------------------------------- */

    .voices-testimonial-swiper {
        padding-left: 35px;
        padding-right: 35px;
        padding-bottom: 55px;
    }


    /* ---------------------------------------------
       Profile
    --------------------------------------------- */

    .testimonial-profile-image {
        width: 68px;
        height: 68px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-relation {
        font-size: 14px;
    }


    /* ---------------------------------------------
       Fixed testimonial area
    --------------------------------------------- */

    .testimonial-content {
        height: 420px;

        margin-top: 25px;

        padding-left: 30px;
        padding-right: 30px;
    }

    .testimonial-content p {
        font-size: 15px;
        line-height: 1.65;
    }


    /* ---------------------------------------------
       Quotes
    --------------------------------------------- */

    .testimonial-quote {
        font-size: 45px;
    }

    .testimonial-quote-open {
        left: 0;
        top: -8px;
    }

    .testimonial-quote-close {
        right: 0;
        bottom: -2px;
    }


    /* ---------------------------------------------
       Navigation
    --------------------------------------------- */

    .voices-testimonial-prev,
    .voices-testimonial-next {
        width: 32px;
        height: 32px;

        font-size: 17px;
    }

    .voices-testimonial-prev {
        left: -3px;
    }

    .voices-testimonial-next {
        right: -3px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .page-title {
        font-size: 22px;
    }

    .voices-testimonial-heading {
        font-size: 22px;
    }

    .voices-testimonial-swiper {
        padding-left: 25px;
        padding-right: 25px;
    }

    .testimonial-card {
        padding-left: 10px;
        padding-right: 10px;
    }

    .testimonial-content {
        height: 450px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonial-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-quote {
        font-size: 38px;
    }

    .testimonial-quote-open {
        left: 0;
    }

    .testimonial-quote-close {
        right: 0;
    }

}


/* =========================================================
   IB-CAIE
========================================================= */

.ib-caie-section {
    padding: 20px 0 70px;
}


/* =========================================================
   THREE COLUMNS
========================================================= */

.ib-caie-item {
    padding: 0 25px;
}


/* =========================================================
   ITEM TITLE
========================================================= */

.ib-caie-title {
    margin: 0;

    font-size: 27px;
    line-height: 1.3;

    font-weight: 700;

    color: #29323d;
}


/* =========================================================
   YELLOW DIVIDER
========================================================= */

.ib-caie-item .section-divider {
    width: 31px;
    height: 7px;

    background: #ffca28;

    margin: 25px auto 28px;
}


/* =========================================================
   VISIT WEBSITE BUTTON
========================================================= */

.ib-caie-button {
    display: inline-block;

    padding: 9px 25px 10px;

    background: #8749a2;

    color: #ffffff !important;

    font-size: 22px;
    line-height: 1.2;

    border-radius: 30px;

    text-decoration: none !important;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.ib-caie-button:hover {
    background: #743c8c;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .ib-caie-item {
        padding: 0 15px;
    }

    .ib-caie-title {
        font-size: 24px;
    }

    .ib-caie-button {
        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .ib-caie-section {
        padding: 20px 0 55px;
    }

    .ib-caie-item {
        margin-bottom: 45px;
    }

    .ib-caie-item:last-child {
        margin-bottom: 0;
    }

}


/* =========================================================
   CONTACT US
========================================================= */


/* =========================================================
   GOOGLE MAP
========================================================= */

.contact-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-map-wrapper {
    width: 100%;
    height: 460px;
    overflow: hidden;
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.contact-information-section + .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    text-align: center;
}


/* =========================================================
   CONTACT INFORMATION SECTION
========================================================= */

.contact-information-section {
    padding: 20px 0 70px;
}


/* =========================================================
   CONTACT INFORMATION CARD
========================================================= */

.contact-information-card {
    min-height: 315px;

    padding: 30px 25px;

    background: #ffffff;

    text-align: center;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

    margin-bottom: 30px;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-card-icon {
    margin-bottom: 22px;

    color: #8749a2;

    font-size: 34px;

    line-height: 1;
}

.contact-card-icon i {
    color: #8749a2;
}


/* =========================================================
   CARD TITLE
========================================================= */

.contact-information-card h2 {
    margin: 0 0 20px;

    color: #263238;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 500;
}


/* =========================================================
   CARD TEXT
========================================================= */

.contact-information-card p {
    margin: 0;

    color: #8991a0;

    font-size: 16px;

    line-height: 1.55;
}


/* =========================================================
   CONTACT LINKS
========================================================= */

.contact-information-card a {
    color: #8991a0;

    text-decoration: none;
}

.contact-information-card a:hover {
    color: #8749a2;

    text-decoration: none;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
    margin-bottom: 18px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail strong {
    display: block;

    margin-bottom: 4px;

    color: #7d8490;

    font-size: 16px;

    font-weight: 700;
}

.contact-detail p {
    margin: 0;

    color: #8991a0;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .contact-map-wrapper,
    .contact-map-wrapper iframe {
        height: 420px;
    }

    .contact-information-card {
        min-height: 300px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .contact-map-wrapper,
    .contact-map-wrapper iframe {
        height: 350px;
    }

    .contact-information-section {
        padding: 15px 0 50px;
    }

    .contact-information-card {
        min-height: auto;

        padding: 30px 20px;
    }

    .contact-information-card h2 {
        font-size: 19px;
    }

    .contact-information-card p {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .contact-map-wrapper,
    .contact-map-wrapper iframe {
        height: 300px;
    }

    .contact-information-card {
        padding: 25px 18px;
    }

    .contact-card-icon {
        font-size: 30px;
    }

}


/* =========================================================
   POLICIES
========================================================= */


/* =========================================================
   PAGE TITLE
========================================================= */

.policies-page-title {
    margin-bottom: 15px;
}


/* =========================================================
   POLICIES SECTION
========================================================= */

.policies-section {
    padding: 25px 0 60px;
}


/* =========================================================
   TAB NAVIGATION
========================================================= */

.policies-tabs {
    display: flex;

    width: 100%;

    border: 1px solid #e5e5e5;
    border-bottom: none;

    background: #f7f7f7;
}

.policies-tabs .nav-link {
    flex: 1;

    min-height: 48px;

    padding: 12px 15px;

    border: none;
    border-right: 1px solid #e5e5e5;

    border-radius: 0;

    background: #f5f5f5;

    color: #8090ab;

    font-size: 15px;

    font-weight: 500;

    text-align: center;
}

.policies-tabs .nav-link:last-child {
    border-right: none;
}


/* Active tab */

.policies-tabs .nav-link.active {
    background: #ffffff;

    color: #8090ab;

    border-top: 3px solid #7188b5;

    padding-top: 9px;
}


/* Hover */

.policies-tabs .nav-link:hover {
    color: #6e82a8;
    background: #ffffff;
}


/* =========================================================
   TAB CONTENT
========================================================= */

.policies-tab-content {
    padding: 15px 12px 20px;

    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;

    background: #ffffff;
}


/* =========================================================
   POLICY CARD
========================================================= */

.policy-card {
    min-height: 130px;

    padding: 35px 50px;

    background: #f7f7f7;

    border-radius: 9px;
}


/* =========================================================
   POLICY TITLE
========================================================= */

.policy-card h2 {
    margin: 0 0 15px;

    color: #7085aa;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 400;
}


/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.policy-view-btn {
    display: inline-block;

    padding: 8px 15px;

    border: 1px solid #dddddd;

    border-radius: 4px;

    background: transparent;

    color: #6f6f6f;

    font-size: 13px;

    line-height: 1.3;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.policy-view-btn:hover {
    background: #dcdcdc;

    /* border-color: #6f6f6f; */

    color: #6f6f6f;

    text-decoration: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .policies-tabs .nav-link {
        font-size: 14px;
    }

    .policy-card h2 {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .policies-section {
        padding-top: 15px;
    }

    .policies-tabs {
        flex-wrap: wrap;
    }

    .policies-tabs .nav-link {
        flex: 0 0 50%;

        border-bottom: 1px solid #e5e5e5;
    }

    .policies-tabs .nav-link:nth-child(2) {
        border-right: none;
    }

    .policies-tab-content {
        padding: 12px;
    }

    .policy-card {
        min-height: auto;

        padding: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .policies-tabs .nav-link {
        flex: 0 0 100%;
        border-right: none;
    }

}


/* =========================================================
   PRIVACY POLICY
========================================================= */


/* =========================================================
   PAGE BANNER
========================================================= */

.privacy-policy-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.privacy-policy-banner img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   PRIVACY POLICY CONTENT
========================================================= */

.privacy-policy-section {
    padding: 30px 0 55px;
}

.privacy-policy-content {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.privacy-policy-title {
    margin: 0;
    padding: 0;

    font-size: 32px;
    line-height: 1.3;

    font-weight: 700;

    color: #29323d;
}


/* =========================================================
   YELLOW DIVIDER
========================================================= */

.privacy-policy-section .section-divider {
    width: 85px;
    height: 6px;

    background: #ffca28;

    margin: 12px 0 28px;
}


/* =========================================================
   PRIVACY POLICY TEXT
========================================================= */

.privacy-policy-content h2 {
    margin: 0 0 3px;

    color: #7b8492;

    font-size: 17px;
    line-height: 1.4;

    font-weight: 700;
}

.privacy-policy-content p {
    margin: 0 0 20px;

    color: #87909f;

    font-size: 16px;
    line-height: 1.55;

    font-weight: 400;
}


/* =========================================================
   EMAIL LINK
========================================================= */

.privacy-policy-content a {
    color: #7187ad;

    text-decoration: none;
}

.privacy-policy-content a:hover {
    color: #8749a2;

    text-decoration: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .privacy-policy-section {
        padding-top: 25px;
    }

    .privacy-policy-title {
        font-size: 29px;
    }

    .privacy-policy-content h2 {
        font-size: 16px;
    }

    .privacy-policy-content p {
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .privacy-policy-section {
        padding: 25px 0 45px;
    }

    .privacy-policy-title {
        font-size: 25px;
    }

    .privacy-policy-section .section-divider {
        width: 70px;
        height: 5px;

        margin-bottom: 25px;
    }

    .privacy-policy-content h2 {
        font-size: 16px;
    }

    .privacy-policy-content p {
        font-size: 15px;
        line-height: 1.6;

        margin-bottom: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .privacy-policy-title {
        font-size: 23px;
    }

    .privacy-policy-content p {
        font-size: 14px;
    }

}