@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0c1a3d;
    --secondary-color: #bfa15c;
    --accent-color: #e0f2fe;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --bg-dark: #020617;
    --bg-card: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;

    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* --- Consolidated Header Styles --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

header.header-inner {
    background: rgba(2, 6, 23, 0.98) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

header.scrolled {
    padding: 5px 0;
    background: rgba(2, 6, 23, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-text h1 {
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.off-canvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffffd6;
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    visibility: hidden;
}

.off-canvas-menu.active {
    right: 0;
    visibility: visible;
}

.off-canvas-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    padding: 0;
}

.close-menu span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0c1a3d;
    border-radius: 2px;
}

.close-menu span:nth-child(1) {
    transform: rotate(45deg);
}

.close-menu span:nth-child(2) {
    transform: rotate(-45deg);
}

.off-canvas-nav {
    padding: 20px 0;
}

.off-canvas-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.off-canvas-nav li:last-child {
    border-bottom: none;
}

.off-canvas-nav .nav-link {
    display: block;
    padding: 10px 25px;
    color: #0c1a3d;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.off-canvas-nav .nav-link:hover,
.off-canvas-nav .nav-link.active {
    background: rgba(191, 161, 92, 0.1);
    color: #bfa15c;
    padding-left: 35px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
    background: rgba(191, 161, 92, 0.2);
    border: 1px solid rgba(191, 161, 92, 0.3);
}

.mobile-menu:hover {
    background: rgba(191, 161, 92, 0.3);
    transform: scale(1.05);
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Ensure hamburger is visible on all mobile devices */
@media (max-width: 767px) {
    .mobile-menu {
        display: flex !important;
        position: relative;
    }

    .mobile-menu span {
        background: #ffffff !important;
    }
}

/* Also show on tablet sizes */
@media (max-width: 991px) {
    .mobile-menu {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }
}

/* --- Consolidated Hero & Section Styles --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .hero {
        height: 35vh !important;
    }
}

.slider,
.slide {
    height: 100%;
    width: 100%;
    position: absolute;
}

.slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

/* Mobile Hero Styles */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .slide {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    /* Adjust for better mobile image display */
    .slide:nth-child(1) {
        background-position: center 40%;
    }

    .slide:nth-child(2) {
        background-position: center 45%;
    }

    .slide:nth-child(3) {
        background-position: center 50%;
    }

    .slide:nth-child(4) {
        background-position: center 35%;
    }

    .slide:nth-child(5) {
        background-position: center 40%;
    }

    .slide:nth-child(6) {
        background-position: center 45%;
    }
}

@media (max-width: 480px) {
    .glass .d-flex {
        display: flex !important;
        flex-direction: column;
        gap: 0 !important;
    }
}




/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.slider-nav:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.hero-content {
    text-align: center;
}

.hero-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

section {
    padding: 0 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: capitalize;
}

/* --- New Refined Styles (White Theme for Welcome) --- */
.welcome-section {
    background-color: #ffffff;
    color: #333333;
    text-align: center;
    padding: 20px 0;
}

.welcome-section .section-title h2 {
    color: #0c1a3d;
    font-size: 2rem;
    font-weight: 800;
}

.welcome-section .bar {
    width: 120px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 30px;
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}

.welcome-content p {
    margin-bottom: 20px;
}

.quote-box {
    margin: 30px 0;
    font-weight: 700;
    font-size: 15px;
    color: #0c1a3d;
}

/* --- Vision & Mission Cards (Two Columns) --- */
.dual-section {
    display: flex;
    min-height: 250px;
    background: #f8fafc;
}

.dual-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    height: 250px;
}


.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

.card-front {
    z-index: 2;
}

.card-back {
    transform: rotateY(180deg);
}

.dual-card:hover .card-front {
    transform: rotateY(180deg);
}

.dual-card:hover .card-back {
    transform: rotateY(0deg);
}

.vision-card-new .card-front {
    background-color: #f7f7f7;
}

.vision-card-new .card-front h2 {
    position: relative;
    z-index: 2;

    padding: 20px 40px;
    border-radius: 10px;
}

.vision-card-new .card-back {
    background-color: #be9944;
    color: white;
}

.mission-card-new .card-front {
    background-color: #f7f7f7;
}

.mission-card-new .card-front h2 {
    position: relative;
    z-index: 2;

    padding: 20px 40px;
    border-radius: 10px;
}

.mission-card-new .card-back {
    background-color: #356bf8;
    color: white;
}

.dual-card h2 {
    font-size: 2rem;
    color: #0c1a3d;
    margin: 0;
    position: relative;
    z-index: 1;
}

.dual-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: inherit;
}

.dual-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .dual-section {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .dual-section {
        display: flex;
        min-height: 400px;
        background: #f8fafc;
    }


    .dual-card {
        height: 350px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .card-front,
    .card-back {
        padding: 20px;
    }

    .dual-card h2 {
        font-size: 22px;
    }

    .dual-card h3 {
        font-size: 22px;
    }

    .dual-card p {
        font-size: 15px;
    }

    @media (max-width: 768px) {
        .dual-card p {
            font-size: 13px;
        }
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* --- Principal's Desk Section --- */
.principal-section {
    background-color: #f8fafc;
    padding: 20px 0;
}

.section-title-new {
    text-align: center;
    font-size: 2rem;
    color: #0c1a3d;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.section-title-new::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #bfa15c;
    margin: 15px auto 0;
}

.principal-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.principal-image {
    text-align: center;
    margin-bottom: 30px;
}

.principal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.principal-text {
    color: #333;
}

.principal-text blockquote {
    font-size: 15px;
    font-style: italic;
    color: #0c1a3d;
    margin-bottom: 25px;
    line-height: 1.6;
    border-left: 4px solid #bfa15c;
    padding-left: 20px;
}

.principal-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.principal-hidden-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.principal-hidden-content.show {
    display: block;
}

.read-more {
    display: inline-block;
    color: #bfa15c;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    margin-top: 10px;
}

.read-more:hover {
    color: #0c1a3d;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .principal-section {
        padding: 40px 0;
    }

    .section-title-new {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .principal-image {
        margin-bottom: 20px;
    }

    .principal-text blockquote {
        font-size: 15px;
    }

    .principal-text p {
        font-size: 15px;
    }
}

/* --- Life at HPS Section --- */
.life-at-hps {
    padding: 20px 0;
}

.sports-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.sports-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sports-slider .slide.active {
    opacity: 1;
}

/* Sports Slider Navigation Arrows */
.sports-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.sports-slider .slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.sports-slider .slider-nav.prev {
    left: 15px;
}

.sports-slider .slider-nav.next {
    right: 15px;
}

.sports-slider .slider-nav svg {
    width: 20px;
    height: 20px;
}

.sports-slider .slider-nav:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .life-at-hps {
        padding: 40px 0;
    }

    .sports-slider {
        height: 300px;
        margin-bottom: 30px;
    }

    .sports-slider .slider-nav {
        width: 35px;
        height: 35px;
    }

    .sports-slider .slider-nav.prev {
        left: 10px;
    }

    .sports-slider .slider-nav.next {
        right: 10px;
    }

    .sports-slider .slider-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* --- Tab Gallery Section --- */
.tab-gallery {
    padding: 60px 0;
    background-color: #ffffff;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    background: transparent;
    color: #0c1a3d;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #0c1a3d;
    color: white;
    transform: translateY(-2px);
}

.tab-button.active {
    background: #0c1a3d;
    color: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

.gallery-img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .tab-gallery {
        padding: 40px 0;
    }

    .tab-buttons {
        gap: 10px;
        margin-bottom: 30px;
    }

    .tab-button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .gallery-img {
        height: 150px;
    }
}

/* --- Lightbox Styles --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10;
}

.lightbox-close:hover {
    color: #bbb;
    text-decoration: none;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.lightbox-next {
    right: 20px;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        height: 85vh;
    }

    .lightbox-image {
        max-height: 70vh;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 12px;
        font-size: 20px;
        margin-top: -40px;
    }

    .lightbox-caption {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* --- Get In Touch Section --- */
.get-in-touch {
    padding: 60px 0;
    background-color: #f8fafc;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #0c1a3d;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.form-control {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0c1a3d;
    box-shadow: 0 0 0 0.2rem rgba(12, 26, 61, 0.25);
}

.send-message-btn {
    background-color: #0c1a3d;
    border-color: #0c1a3d;
    color: white;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.send-message-btn:hover {
    background-color: #1a2a4a;
    border-color: #1a2a4a;
    transform: translateY(-2px);
}

.detail-item {
    padding: 15px 0 0 0;
    border-radius: 10px;
    height: 100%;
    text-align: left;
}



.detail-item h3 {
    color: #0c1a3d;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.detail-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .get-in-touch {
        padding: 40px 0;
    }

    .contact-map iframe {
        height: 300px;
    }

    .contact-form h3 {
        font-size: 22px;
    }

    .detail-item {
        padding: 20px;
    }
}

footer {
    padding: 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 15px;
}

/* --- Mandatory Public Disclosure Page Styles --- */
.mandatory-disclosure-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef6ff 50%, #f8fafc 100%);
    padding: 130px 0 60px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.mandatory-disclosure-section::before {
    content: '';
    position: absolute;

    background: radial-gradient(circle, rgba(191, 161, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.mandatory-disclosure-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(53, 107, 248, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.disclosure-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

.disclosure-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.disclosure-header .bar {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #d4b56d);
    margin: 0 auto;
    border-radius: 2px;
}

.disclosure-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclosure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Info Table Styles */
.info-table {
    width: 100%;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 18px 15px;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
    align-items: start;
    gap: 20px;
}

.info-row:hover {
    background-color: #f8fafc;
    padding-left: 20px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    padding-right: 10px;
    line-height: 1.6;
}

.info-value {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-value a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Disclosure Table Styles */
.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
}

.disclosure-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.disclosure-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b52 100%);
    color: #ffffff;
}

.disclosure-table thead th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.disclosure-table thead th:last-child {
    border-right: none;
}

.disclosure-table thead th:first-child {
    width: 80px;
    text-align: center;
}

.disclosure-table thead th:nth-child(2) {
    text-align: left;
}

.disclosure-table thead th:last-child {
    width: 180px;
    text-align: center;
}

.disclosure-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.disclosure-table tbody tr:hover {
    background-color: #f8fafc;
}

.disclosure-table tbody tr:last-child {
    border-bottom: none;
}

.disclosure-table tbody td {
    padding: 15px;
    color: #555;
    font-size: 0.9rem;
    vertical-align: middle;
    border-right: 1px solid #e2e8f0;
}

.disclosure-table tbody td:last-child {
    border-right: none;
}

.disclosure-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 80px;
    text-align: center;
}

.disclosure-table tbody td:nth-child(2) {
    text-align: left;
}

.disclosure-table tbody td:last-child {
    text-align: center;
    width: 180px;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #dbeafe 100%);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.doc-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b52 100%);
    color: #ffffff;
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(12, 26, 61, 0.3);
}

.doc-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.doc-link:hover::after {
    transform: translateX(3px);
}

/* Additional Documents Section */
.additional-docs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.doc-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(191, 161, 92, 0.2);
}

.doc-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.doc-item:hover svg {
    transform: scale(1.1);
}

.doc-item .doc-link {
    background: none;
    padding: 0;
    border: none;
    font-size: 0.95rem;
}

.doc-item .doc-link:hover {
    background: none;
    transform: none;
    box-shadow: none;
    color: black !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mandatory-disclosure-section {
        padding: 120px 0 30px;
    }

    .disclosure-header {
        margin-bottom: 30px;
        margin-top: 10px;
    }

    .disclosure-header h1 {
        font-size: 1.8rem;
        margin-top: 0;
    }

    .disclosure-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 15px 10px;
    }

    .info-row:hover {
        padding-left: 10px;
    }

    .info-label {
        font-weight: 700;
        color: var(--primary-color);
        padding-bottom: 5px;
    }

    .info-value {
        padding-left: 0;
    }

    .disclosure-table {
        font-size: 0.85rem;
    }

    .disclosure-table thead th {
        padding: 12px 8px;
        font-size: 0.8rem;
    }

    .disclosure-table tbody td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .disclosure-table thead th:first-child,
    .disclosure-table tbody td:first-child {
        width: 50px;
    }

    .disclosure-table thead th:last-child,
    .disclosure-table tbody td:last-child {
        width: 120px;
    }

    .additional-docs {
        grid-template-columns: 1fr;
    }

    .doc-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .disclosure-header h1 {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .disclosure-table {
        font-size: 0.75rem;
    }

    .disclosure-table thead th {
        padding: 10px 6px;
        font-size: 0.7rem;
    }

    .disclosure-table tbody td {
        padding: 10px 6px;
        font-size: 0.75rem;
    }

    .disclosure-table thead th:first-child,
    .disclosure-table tbody td:first-child {
        width: 40px;
    }

    .disclosure-table thead th:last-child,
    .disclosure-table tbody td:last-child {
        width: 100px;
    }

    .doc-link {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Off-canvas active state */
.off-canvas-nav .nav-link:hover,
.off-canvas-nav .nav-link.active {
    color: var(--secondary-color) !important;
}