
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat/montserrat-variable.woff2') format('woff2-variations');
}

:root {
    --primary-color: #0693e3;
    --secondary-color: #fcb900;
    --accent-red: #e31e24;
    --reference-red: #e31e24;
    --text-dark: #2c2c2c;
    --text-grey: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --container-max: 1200px;
    --header-height: 100px;
}

.text-blue {
    color: var(--primary-color) !important;
}

.text-blue {
    color: var(--primary-color) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: -0.2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR (Exact Layout from original Header ID 50) */
.top-bar {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 8px 0;
    font-size: 16px;
    font-weight: 700;
}

.top-bar a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

/* HEADER & NAVIGATION (Match Elementor ID 50) */
header {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: none;
    color: #333;
    padding: 0px 15px 0px 15px;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: normal;
}

.nav-link:hover,
.active-link {
    color: var(--accent-red);
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* DROPDOWN */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-slow);
    border-top: 4px solid var(--secondary-color);
    padding: 10px 0;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-item a {
    padding: 12px 20px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: normal;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item a:hover {
    background: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px;
}

/* HERO SECTION (Ken Burns Animation) */
.hero {
    height: calc(100vh - var(--header-height));
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenBurnsFade 20s infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
    background-image: url('../images/school_front_photo.jpeg');
}

.hero-slide:nth-child(2) {
    animation-delay: 5s;
    background-image: url('../images/syc-img-11.jpeg');
}

.hero-slide:nth-child(3) {
    animation-delay: 10s;
    background-image: url('../images/slider_2.jpeg');
}

.hero-slide:nth-child(4) {
    animation-delay: 15s;
    background-image: url('../images/slider_1.jpg');
}

@keyframes kenBurnsFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
        transform: scale(1.15);
    }

    30% {
        opacity: 0;
        transform: scale(1.15);
    }

    100% {
        opacity: 0;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    height: 100%;
}

/* SUB-HERO SECTION */
.sub-hero {
    height: 450px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.sub-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.sub-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenBurnsFade 15s infinite;
}

.sub-hero-slide:nth-child(1) {
    animation-delay: 0s;
    background-image: url('../images/slider_1.jpg');
}

.sub-hero-slide:nth-child(2) {
    animation-delay: 5s;
    background-image: url('../images/computer-lab.jpg');
}

.sub-hero-slide:nth-child(3) {
    animation-delay: 10s;
    background-image: url('../images/av-room.jpg');
}

/* SUB-HERO MESSAGE */
.sub-hero-message {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.sub-hero-message h1 {
    font-size: 50px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sub-hero-message .divider-line {
    margin-left: auto;
    margin-right: auto;
}

/* LEADERSHIP SECTION */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.leadership-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    transition: var(--transition-slow);
}

.leadership-card img {
    width: 100%;
    border-radius: 0;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.leadership-card h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leadership-card b {
    color: var(text-dark);
    font-size: 15px;
    text-transform: uppercase;
}

.leadership-card:hover {
    transform: translateY(-10px);
}

/* SECTIONS (Match exact padding and reordering) */
section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 36px;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 800;
}

.section-heading-lg {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.2;
    padding: 0px 0px 40px 0px;
    text-align: center;
    color: var(--accent-red);
    font-weight: 800;
}

.section-heading-default {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: left;
    color: var(--text-dark);
    font-weight: 700;
}

.text-blue {
    color: var(--primary-color);
}

.text-yellow {
    color: var(--secondary-color);
}

/* CAROUSEL */
.swiper-container {
    width: 100%;
    padding: 40px 0;
}

.carousel-slide {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 10px;
}

.carousel-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.carousel-caption {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

/* FOOTER (Match Elementor ID 56) */
footer {
    background-color: #111;
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col h3,
.footer-col h6 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 20px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-map {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.social-list {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-item {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
}


/* GALLERY PAGE STYLES */
.gallery-section {
    padding: 60px 0;
}

.gallery-section h2 {
    font-size: 28px;
    color: var(--accent-red);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
    cursor: pointer;
    background-color: #f0f0f0; /* Placeholder color */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: "\ea68"; /* plus icon in LineIcons */
    font-family: 'LineIcons';
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 147, 227, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::after,
.gallery-item:hover::before {
    opacity: 1;
}

/* FOOTER UPDATES */
.footer-info-list i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.boxed-links a:hover {
    background: #f9f9f9;
    color: var(--accent-red);
}

.social-box:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        justify-content: center;
        position: relative;
    }

    header nav {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
        padding: 10px; /* Increased tap area */
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: var(--transition-fast);
        background-color: var(--accent-red);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 0; /* Changed from var(--header-height) to cover full height */
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        height: 100vh;
        overflow-y: auto;
        padding: 100px 0 40px;
        gap: 0;
        z-index: 1000;
        visibility: hidden;
    }

    .nav-links.active {
        left: 0;
        visibility: visible;
    }

    .nav-link {
        padding: 15px;
        width: 100%;
        justify-content: center;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }

    /* Hamburger Animation */
    .menu-toggle.active {
        position: fixed;
        right: 15px;
        top: 25px;
        z-index: 1002;
    }
    
    header .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Dropdown */
    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        position: static;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        width: 100%;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-item a {
        padding: 10px 20px;
        font-size: 15px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .social-list {
        justify-content: center;
    }

    /* Layout Adjustments */
    .flex-row-center {
        flex-direction: column;
        gap: 30px;
    }

    .col-flex-1, .col-flex-1-5, .col-flex-2 {
        width: 100%;
        min-width: 100%;
    }

    .section-heading-lg, .section-heading-default {
        font-size: 26px;
        text-align: center;
    }
    
    .hero {
        height: 60vh;
    }
    
    .sub-hero {
        height: 250px;
    }

    .sub-hero-message {
        height: 250px;
    }

    .sub-hero-message h1 {
        font-size: 24px !important;
        line-height: 1.2;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
    .top-bar .container {
        justify-content: center;
    }

    .top-bar a {
        font-size: 13px;
    }

    .footer-col {
        margin-bottom: 20px;
    }

    .footer-col-title {
        text-align: center;
    }

    .footer-title-line {
        margin: 10px auto;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-map-box {
        height: 200px;
    }

    /* Lightbox */
    .lightbox-content {
        width: 90%;
        max-height: 80vh;
    }

    .lightbox-nav {
        font-size: 40px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .heading-giant {
        font-size: 50px;
    }
    
    .meeting-gallery {
        grid-template-columns: 1fr;
    }
    
    .meeting-gallery-item img {
        height: 250px;
    }

    .carousel-slide img {
        height: 200px;
    }

    .section-heading-lg, .section-heading-default {
        font-size: 22px;
    }

    .sub-hero-message h1 {
        font-size: 20px !important;
        line-height: 1.2;
        font-weight: 700;
    }

    .txt-large {
        font-size: 15px;
    }
}

/* Form Styles for Contact Page */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 147, 227, 0.1);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c41217;
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* MEETING PAGE SPECIFIC */
.meeting-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-red);
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    margin: 40px 0 20px;
    font-size: 36px;
}

.meeting-content {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.meeting-content p {
    color: var(text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.meeting-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.meeting-gallery-item {
    border: 1px solid var(--reference-red);
    padding: 5px;
    background: #fff;
    transition: var(--transition-fast);
}

.meeting-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.meeting-gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* UTILITIES */
.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-end-center {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex-center-gap-8 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flex-center-gap-15 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.py-15 {
    padding: 15px 0;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.flex-row-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.gap-40 { gap: 40px; }
.gap-60 { gap: 60px; }

.col-flex-1 { flex: 1; min-width: 300px; }
.col-flex-1-5 { flex: 1.5; min-width: 350px; }
.col-flex-2 { flex: 2; min-width: 350px; }

.bg-light-gray {
    background-color: var(--bg-light);
}

.img-styled {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.txt-large {
    /*font-size: 17px;*/
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

.heading-giant {
    font-size: 100px;
    color: var(--accent-red);
    line-height: 1;
    font-weight: 900;
    margin-top: 10px;
}

.text-red {
    color: var(--accent-red) !important;
}

.mb-5 { margin-bottom: 5px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-50 { margin-bottom: 50px; }

.list-unstyled {
    list-style: none;
    padding: 0;
}

.quote-styled {
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

.divider-line {
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 30px;
}

.divider-line.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.divider-sm {
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin-bottom: 25px;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.card-icon-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.icon-circle-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* FORM & ALERTS */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #444;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-color);
}

.btn-submit {
    align-self: flex-start;
    padding: 12px 40px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.pb-80 { padding-bottom: 80px; }
.border-none { border: none !important; }
.border-bottom-eee { border-bottom: 1px solid #eee; }

/* MESSAGE PAGES (ABOUT SUBPAGES) */
.sub-hero-message {
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.sub-hero-message h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

.sub-hero-message .divider-line {
    margin-left: auto;
    margin-right: auto;
    height: 4px;
}

.section-padding-100 {
    padding: 100px 0;
}

.profile-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 120px;
}

.profile-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.profile-img-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

.profile-info {
    text-align: center;
}

.profile-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.profile-info p {
    color: var(--text-dark);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.message-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.message-text p {
    margin-bottom: 30px;
}

.message-text p.greeting {
    font-weight: 400;
    margin-bottom: 25px;
}

.quote-box {
    background: var(--bg-light);
    padding: 40px;
    border-left: 6px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

.quote-box p {
    font-style: italic;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

/* FOOTER REFACTOR */
.main-footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 80px 0 40px;
    border-top: 1px solid #eee;
}

.footer-info-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 15px;
}

.footer-info-item:last-child {
    border-bottom: none;
}

.footer-info-icon {
    color: #333;
    margin-top: 5px;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.footer-title-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--accent-red);
}

.footer-map-box {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-icon-box {
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.social-icon-box.fb { background: #3b5998; }
.social-icon-box.ig { background: #3f729b; }

.footer-links-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.footer-link-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-link-row:last-child {
    border-bottom: none;
}

.footer-link-row:hover {
    background: #f9f9f9;
    padding-left: 25px;
}

.footer-link-row i {
    color: #666;
    width: 20px;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    color: #999;
    font-size: 13px;
}
/* AOS Animation Overrides to ensure visibility */
[data-aos='zoom-in'] {
    opacity: 0;
    transform: scale(0.6);
    transition-property: transform, opacity;
}
[data-aos='zoom-in'].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos='fade-right'] {
    opacity: 0;
    transform: translateX(-50px);
    transition-property: transform, opacity;
}
[data-aos='fade-right'].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* LIGHTBOX / MODAL STYLES */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 40px;
    backdrop-filter: blur(5px);
    transition: var(--transition-slow);
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    color: var(--secondary-color);
}

.gallery-item:hover::after,
.gallery-item:hover::before {
    opacity: 1;
}

.meeting-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.meeting-gallery-item::after {
    content: '\ea68';
    font-family: 'LineIcons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.meeting-gallery-item::before {
    content: '';
    position: absolute;
    inset: 5px;
    background: rgba(227, 30, 36, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.meeting-gallery-item:hover::after,
.meeting-gallery-item:hover::before {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 80px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
    padding: 20px;
    z-index: 10002;
}

.lightbox-nav:hover {
    color: var(--secondary-color);
    scale: 1.2;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.image-wrapper {
    text-align: center;
}
.overlay-style {
    position: relative;
}

.overlay-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 50px;
        padding: 10px;
    }
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 600px) {
    .container {
        padding: 0 12px;
    }

    section {
        padding: 30px 0;
    }

    .hero {
        height: 40vh;
    }

    .sub-hero {
        height: 200px;
    }

    .sub-hero-message {
        height: 200px;
        padding: 60px 15px;
    }

    .sub-hero-message h1 {
        font-size: 18px !important;
    }

    .section-heading-lg,
    .section-heading-default {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .logo-img {
        height: 50px;
    }

    .heading-giant {
        font-size: 60px;
    }

    .leadership-card h2 {
        font-size: 18px;
    }

    .carousel-slide img {
        height: 180px;
    }

    .carousel-caption {
        font-size: 12px;
        padding: 12px;
    }

    .swiper-container {
        padding: 20px 0;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .meeting-title {
        font-size: 22px;
    }

    .meeting-content p {
        font-size: 14px;
    }

    .meeting-gallery {
        grid-template-columns: 1fr;
    }

    .meeting-gallery-item img {
        height: 220px;
    }

    .profile-card {
        padding: 15px;
    }

    .profile-info h3 {
        font-size: 1.2rem;
    }

    .quote-box {
        padding: 20px;
    }

    .quote-box p {
        font-size: 16px;
    }

    .quote-styled {
        font-size: 14px;
        padding-left: 12px;
    }

    .card-icon-flex {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .icon-circle-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-grid {
        gap: 30px !important;
    }

    .footer-col-title {
        font-size: 16px;
    }

    .footer-map-box {
        height: 180px;
    }

    .top-bar a {
        font-size: 12px;
        gap: 6px;
    }

    .gallery-section h2 {
        font-size: 18px;
    }

    .gallery-item {
        border-radius: 4px;
    }

    .lightbox-content {
        width: 95%;
        max-height: 70vh;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 35vh;
    }

    .sub-hero {
        height: 160px;
    }

    .sub-hero-message {
        height: 160px;
        padding: 40px 12px;
    }

    .sub-hero-message h1 {
        font-size: 16px !important;
    }

    .section-heading-lg,
    .section-heading-default {
        font-size: 16px;
    }

    .logo-img {
        height: 40px;
    }

    .heading-giant {
        font-size: 40px;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 25px 0;
    }

    .leadership-grid {
        gap: 20px;
    }

    .leadership-card {
        padding: 15px;
    }

    .leadership-card h2 {
        font-size: 16px;
    }

    .gallery-grid {
        gap: 8px;
    }

    .meeting-gallery {
        gap: 15px;
    }

    .meeting-gallery-item img {
        height: 180px;
    }

    .flex-row-center {
        gap: 20px !important;
    }

    .col-flex-1,
    .col-flex-1-5,
    .col-flex-2 {
        min-width: 100% !important;
    }

    .nav-link {
        font-size: 15px;
        padding: 12px;
    }

    .top-bar {
        font-size: 11px;
        padding: 4px 0;
    }

    .top-bar a {
        font-size: 11px;
    }

    .footer-grid {
        gap: 20px !important;
    }

    .divider-line {
        width: 60px;
        height: 2px;
        margin-bottom: 15px;
    }

    .divider-sm {
        width: 50px;
        height: 2px;
        margin-bottom: 15px;
    }

    .txt-large {
        font-size: 14px;
    }

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

    .lightbox-nav {
        font-size: 36px;
        padding: 8px;
    }

    .lightbox-close {
        font-size: 30px;
        top: 15px;
        right: 15px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 12px;
    }

    .whatsapp-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
        bottom: 12px;
        right: 12px;
    }

    .social-item {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .footer-info-item {
        font-size: 13px;
        padding: 10px 0;
    }

    .footer-link-row {
        font-size: 12px;
        padding: 10px 15px;
    }

    .quote-box {
        padding: 15px;
        margin: 20px 0;
    }

    .gallery-section {
        padding: 30px 0;
    }
}

.img-responsive-550 {
    width: 550px;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .img-responsive-550 {
        width: 100%;
        height: auto;
    }
}

/* FIX INLINE STYLES RESPONSIVENESS */
@media (max-width: 768px) {
    [style*="max-width: 800px"],
    [style*="max-width: 900px"],
    [style*="max-width: 1100px"] {
        max-width: 100% !important;
    }

    [style*="gap: 80px"] {
        gap: 40px !important;
    }

    [style*="height: 300px"]:not(.swiper-slide *) {
        height: auto !important;
        width: 100% !important;
    }

    [style*="width: 550px"] {
        width: 100% !important;
        height: auto !important;
    }

    [style*="font-size: 18px"] {
        font-size: 15px !important;
    }

    [style*="min-width: 350px"],
    [style*="min-width: 320px"] {
        min-width: 100% !important;
    }

    [style*="font-size: 20px"] {
        font-size: 16px !important;
    }

    .profile-img-wrapper img[style*="height: 400px"] {
        height: 250px !important;
    }
}

@media (max-width: 480px) {
    [style*="gap: 80px"] {
        gap: 25px !important;
    }
    
    [style*="gap: 60px"] {
        gap: 25px !important;
    }

    [style*="font-size: 18px"] {
        font-size: 14px !important;
    }
}

/* FIX MEETING PAGE & ABOUT PAGE LEAKED divs */
.footer-copyright p {
    margin-bottom: 0;
}

/* FIX SECTION PADDING ON ABOUT SUBPAGES */
@media (max-width: 768px) {
    .section-padding-100 {
        padding: 50px 0;
    }

    .profile-card {
        position: static;
        top: auto;
    }

    .message-text p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .section-padding-100 {
        padding: 30px 0;
    }

    .message-text p {
        font-size: 14px;
    }
}

/* FIX SWIPER BUTTONS ON MOBILE */
@media (max-width: 600px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* FIX CARD ICON FLEX ON SMALL SCREENS */
@media (max-width: 400px) {
    .card-icon-flex {
        flex-direction: column;
        text-align: center;
    }

    .icon-circle-box {
        margin-bottom: 10px;
    }
}
